> ## Documentation Index
> Fetch the complete documentation index at: https://docs.journeybee.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Contact

> Delete a partner contact

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://app.journeybee.io/api/v1/contacts/{contactId}" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json"
  ```
</CodeGroup>

## Path Parameters

<ParamField path="contactId" type="number" required>
  The unique identifier of the contact to delete
</ParamField>

## Response Schema

The API returns a `204 No Content` status code on successful deletion.

## Notes

* Requires API key with `write_access` permission
