> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thanx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Card

> This endpoint archives a registered card. The card is unenrolled from Visa/Mastercard/Amex.

<Note>
  Please review proper request headers [here](/consumer/usage/headers).
</Note>

### Parameters

<ParamField path="id" type="string" required>
  The card id
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl https://api.thanxsandbox.com/cards/92b7b0dac4 \
    -X DELETE \
    -H "Content-Type: application/json"  \
    -H "Accept-Version: v4.0" \
    -H "Accept: application/json" \
    -H "Authorization: Bearer ${token}" \
    -H "X-ClientId: ${client_id}" 
  ```
</RequestExample>

<ResponseExample>
  ```bash Response Example theme={null}
  {}
  ```
</ResponseExample>
