# Delete contact (/api-reference/contacts/deleteContact)

`DELETE /contacts/{id}`

Base URL: `https://next-api.useplunk.com`

Permanently delete a contact

## Path parameters

- `id`: string (required)

## Responses

### `204` — Contact deleted successfully (no content returned)

### `404` — Contact not found

## Example request

```bash
curl -X DELETE 'https://next-api.useplunk.com/contacts/{id}' \
  -H 'Authorization: Bearer YOUR_API_KEY'
```
