> For the complete documentation index, see [llms.txt](https://docs.payments.thalescloud.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payments.thalescloud.io/nfc-wallet-sdk-ios/es/additional-features/reset-the-nfc-wallet-sdk.md).

# Restablecer el NFC Wallet SDK

## Resumen

Restablecer el SDK de Wallet NFC elimina todos los datos almacenados por el SDK en el dispositivo.

Esto incluye elementos gestionados por el SDK, como tarjetas digitales y credenciales de pago.

{% hint style="warning" %}
El restablecimiento es solo local. No llama a ninguna API del servidor. Cualquier token que ya exista en el lado del servidor no se elimina.

Después de volver a inicializar el SDK, el ID de la wallet cambia. Los tokens creados antes del restablecimiento pueden convertirse en tokens huérfanos en el lado del servidor. Pueden eliminarse cuando ejecute la tokenización para una nueva tarjeta (en un proceso llamado **limpieza de tokens**).
{% endhint %}

Después de un restablecimiento, el SDK asigna un nuevo ID de wallet en la siguiente inicialización. Vea [Recuperar el ID de la wallet](/nfc-wallet-sdk-ios/es/get-started/configuration/3.-initialization.md#retrieving-the-wallet-id).

{% hint style="info" %}
Después de restablecer el SDK de Wallet NFC, ejecute [Inscribir billetera](/nfc-wallet-sdk-ios/es/implement-nfc-wallet/enroll-wallet.md) antes de cualquier nueva tokenización.
{% endhint %}

## Integración del SDK

Llame a `TSHPay.shared.reset()` para eliminar todos los datos almacenados por el SDK de Wallet NFC.

```swift
func resetSDK() async {
    do {
        try await TSHPay.shared.reset()
    } catch {
        // Manejar el error.
    }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.payments.thalescloud.io/nfc-wallet-sdk-ios/es/additional-features/reset-the-nfc-wallet-sdk.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
