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-pi-ch-intro.md)  
Filter  
FILTER BY TAG

Deleting a Card Hash {#um-processing-token-delete-pi-ch-intro}
==============================================================

This section describes how to send a `DELETE` request to delete a card hash.

Endpoint
--------

**Test:** `DELETE ``https://apitest.cybersource.com``/tms/v1/paymentinstruments/{id}`  
**Production:** `DELETE ``https://api.cybersource.com``/tms/v1/paymentinstruments/{id}`  
The `id` is the card.hash value that was returned in the retrieve a payment instrument response.

```
"card": {
    "expirationMonth": "12",
    "expirationYear": "2030",
    "type": "visa",
    "hash": "7400A4154369E584BA36CA19B50AAA3F9AE97FE93CF8FBC97777"
 }
```

{#um-processing-token-delete-pi-ch-intro_codeblock_nbz_cy5_31c}

REST Example: Deleting a Card Hash {#um-processing-token-delete-pi-ch-ex-rest}
==============================================================================

Request

```
{
}
```

{#um-processing-token-delete-pi-ch-ex-rest_codeblock_abg_nyg_lcc}  
Response 204: Deleting a Card Hash

```
No response body
```

Response 410: Deleting a Card Hash

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

RELATED TO THIS PAGE

