> For the complete documentation index, see [llms.txt](https://docs.w3lcome.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.w3lcome.com/blockedlist/delete-a-person-from-the-blacklist.md).

# Delete a Person from the Blocked List

## Delete a person

<mark style="color:red;">`DELETE`</mark> `https://api.w3lcome.com/v1/blockedlist/:id`

This endpoint allows you to delete a person from the blocked list

#### Path Parameters

| Name | Type   | Description      |
| ---- | ------ | ---------------- |
| id   | string | ID of the person |

#### Headers

| Name           | Type   | Description      |
| -------------- | ------ | ---------------- |
| Content-Type   | string | application/JSON |
| Authentication | string | Basic `token`    |

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

```javascript
{
    "id": "dc08c9dc-7aaa-4356-8268-f265b91a1624",
    "name": "Alisson Enz Rossi",
    "type": "blacklist",
    "email": "alisson@w3lcome.com",
    "phone": "43999820420",
    "cpf": "99999999999",
    "rg": "11111111"
}
```

{% endtab %}

{% tab title="404 Error" %}

```javascript
{
    "type": "NOT_FOUND"
}
```

{% endtab %}
{% endtabs %}
