# Delete

## Delete

<mark style="color:red;">`DELETE`</mark> `https://{{account_id}}.acquire.io/api/v1/crm/block-visitor?id={{id}}`

Unblock a visitor (remove a visitor from the block list). The id must be passed in to the endpoint as a path parameter. To find the id, send a Get request to the Block Visitor List endpoint.&#x20;

#### Query Parameters

| Name | Type    | Description         |
| ---- | ------- | ------------------- |
| id   | integer | Visitor's block ID. |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{API\_KEY}} |

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

```
{
  "data": {
    "deleted": {
      "raw": {
        "fieldCount": 0,
        "affectedRows": 0,
        "insertId": 0,
        "serverStatus": 2,
        "warningCount": 0,
        "message": "",
        "protocol41": true,
        "changedRows": 0,
        "parse": {},
        "write": {}
      },
      "affected": 0
    }
  }
}
```

{% endtab %}
{% endtabs %}
