# Delete a Contact

Delete an existing contact from your address book. Once deleted, the contact can no longer be used for alias-based messaging or campaigns.

### <mark style="color:red;">`DELETE`</mark> `/addressbook/contacts/{contact_id}`&#x20;

Replace `{contact_id}` with the associated contact ID of the record you want to delete.

#### Required Permission

```
delete:Contacts
```

Your API key must have this permission enabled in order to use this endpoint.

### Example Request

```bash
curl --request DELETE 'https://<hostname>/addressbook/contacts/3392287d-7a79-4789-9ef8-7dc174836688' \
  --header 'Authorization: Bearer YOUR_API_KEY'
```

Replace `YOUR_API_KEY` with your API key.

{% hint style="info" %}
All endpoints shown in this documentation use a **sample base URL**. The production API endpoint is provided by our team upon request.
{% endhint %}

#### Responses

#### Success (HTTP 200)

Returned when the contact has been successfully deleted.

```json
{
  "success": true
}
```

#### Not Found (HTTP 404)

Returned when the specified contact does not exist.

```json
{
  "success": false,
  "error": {
    "name": "NotFoundError",
    "statusCode": 404,
    "message": "Contact not found"
  }
}
```

{% hint style="danger" %}
Please remember that deleting a contact is **permanent** and cannot be undone. If you plan to re-add the contact later, you must create it again.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.mobivatebulksms.com/contact-management/delete-a-contact.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
