# Delete card

{% hint style="info" %}
These endpoints are in beta testing. Some features may not work as documented or may behave unexpectedly.&#x20;
{% endhint %}

## Delete card

<mark style="color:red;">`DELETE`</mark> `https://{{account_id}}.acquire.io/api/v1/crm/ui-component/{{cardId}}`

Delete a Custom Card. The cardId must be passed in to the endpoint as a path parameter. Warning: This action cannot be undone.&#x20;

#### Path Parameters

| Name   | Type    | Description    |
| ------ | ------- | -------------- |
| cardId | integer | Id of the card |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{api\_key}} |

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

```
{
    "data": {
        "success": true,
        "message": "UI component has been deleted successfully."
    }
}
```

{% endtab %}
{% endtabs %}
