On This Page

{#jumplink-list}  
[Markdown](/content/cybsdeveloper2021/amer/en/docs/cybs/en-us/urban-mobility/developer/ctv/rest/mass-transit/um-processing-token-intro/um-processing-token-delete-ii-intro.md)  
Filter  
FILTER BY TAG

Deleting an Instrument Identifier {#um-processing-token-delete-ii-intro}
========================================================================

This section describes how to send a `DELETE` request to delete an instrument identifier.

Endpoint
--------

**Test:** `DELETE ``https://apitest.cybersource.com``/tms/v1/instrumentidentifiers/{id}`  
**Production:** `DELETE ``https://api.cybersource.com``/tms/v1/instrumentidentifiers/{id}`  
The `id` is the instrument identifier ID that was returned in a token management service response.

```
    },
        "tokenInformation": {
            "instrumentIdentifier": {
                "id": "CD616772D8355EA6E053AF598E0AE794"
            },
```

REST Example: Deleting an Instrument Identifier Using the REST API {#um-processing-token-delete-ii-ex-rest}
===========================================================================================================

Request

```
{
}
```

{#um-processing-token-delete-ii-ex-rest_codeblock_c5m_pyg_lcc}  
Response 204

```
No response body
```

Response 409

```
{
    "_links": {
        "paymentInstruments": {
            "href": "https://apitest.cybersource.com/tms/v1/instrumentidentifiers/CD776F4472D6AC69E053AF598E0A30F3/paymentinstruments"
        }
    },
    "errors": [
        {
            "type": "instrumentIdentifierDeletionError",
            "message": "Action cannot be performed as the InstrumentIdentifier is associated with one or more PaymentInstruments"
        }
    ]
}
```

Response 410: Deleting an Instrument Identifier

```
{
    "errors": [
        {
            "type": "notAvailable",
            "message": "Token not available"
        }
    ]
}
```

RELATED TO THIS PAGE

