> 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/merchant-tokenization/ja/mastercard-taf/implement-taf/debaisubaindinguwo.md).

# デバイスバインディングを削除

Thales SDK を使用して、加盟店アプリケーションからデバイスバインディングを削除します。

## フロー

<figure><img src="/files/2f8f871321f725c531598431be2db9c5e49ddf90" alt=""><figcaption><p>アプリ起点のデバイスバインディング削除フロー。</p></figcaption></figure>

<table><thead><tr><th width="100">手順</th><th>説明</th></tr></thead><tbody><tr><td>1</td><td>加盟店アプリケーションは、Thales SDK を呼び出してトークンのデバイスバインディングを削除します。</td></tr><tr><td>2-4</td><td>Thales バックエンドは、削除リクエストを決済ネットワークに送信し、決済ネットワークがイシュアのバックエンドと連携して削除を調整します。</td></tr><tr><td>5-6</td><td>Thales SDK は結果を加盟店アプリケーションに返します。</td></tr><tr><td>7</td><td>Thales バックエンドは、加盟店または PSP バックエンドに通知を送信します。</td></tr></tbody></table>

## SDK 統合

呼び出し `removeBinding` を実行し、結果を `onSuccess` または `onError`.

{% tabs %}
{% tab title="Android" %}

```java
mastercardTAFHelper.removeBinding(tokenID, correlationID, new RemoveBindingListener() {
    @Override
    public void onError(TMGClientException tmgClientException) {
        // エラーを処理します
    }

    @Override
    public void onSuccess() {
        // 必要に応じてローカルのバインディング状態を更新します
    }
});
```

{% endtab %}

{% tab title="iOS" %}

```swift
mastercardTAFHelper.removeBinding(forTokenID: tokenID,
                                  correlationID: correlationID) { error in
    if error == nil {
        // 必要に応じてローカルのバインディング状態を更新します
    } else {
        // エラーを処理します
    }
}
```

{% endtab %}
{% endtabs %}

## バックエンド統合

デバイスバインディングが削除されると、Thales バックエンドは加盟店または PSP バックエンドに通知します。

* API リファレンス: [バインディング更新の通知](broken://spaces/CNahtqpNaMbeCgpJwQ4u/pages/ec5bb603a1684cbd0319521104f0a590b99cdf9f#post-notify-binding-update)


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.payments.thalescloud.io/merchant-tokenization/ja/mastercard-taf/implement-taf/debaisubaindinguwo.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
