# Удаление привязанной карты

## Удаление привязанной карты пользователя

<mark style="color:red;">`DELETE`</mark> `https://prapi.tarlanpayments.kz/card/api/v1/system/client/card`

#### Headers

| Name                                            | Type   | Description                                                                                                                    |
| ----------------------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------ |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer  Авторотационный хэш (см [Формирование подписи](https://docs.tarlanpayments.kz/platezhnyi-shlyuz/formirovanie-podpisi)) |

#### Request Body

| Name                                           | Type    | Description                     |
| ---------------------------------------------- | ------- | ------------------------------- |
| project\_id<mark style="color:red;">\*</mark>  | Integer | Идентификатор проекта           |
| card\_token<mark style="color:red;">\*</mark>  | String  | Токен карты в платежной системе |
| merchant\_id<mark style="color:red;">\*</mark> | Integer | Идентификатор мерчанта          |

{% tabs %}
{% tab title="200: OK Пример успешного ответа" %}

```json
{
    "status": true,
    "message": "Success",
    "result": "success"
}
```

{% endtab %}

{% tab title="500: Internal Server Error Пример ответа с ошибкой" %}

```json
{
    "status": false,
    "status_code": 5406,
    "message": "invalid project secret",
    "result": {}
}
```

{% endtab %}
{% endtabs %}

{% code fullWidth="true" %}

```bash
curl --location --request DELETE 'https://prapi.tarlanpayments.kz/card/api/v1/system/client/card/pay-in' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer auth_tokem' \
--data '{
    "project_id": 3,
    "encrypted_card_id": "Qwerty12345",
    "merchant_id": 1
}'
```

{% endcode %}
