DELETE
/
contacts
/
{identifier}
curl --request DELETE \
  --url https://api.getbrew.ai/v1/contacts/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact deleted"
}

Authorizations

Authorization
string
header
required

Include your Brew API key as a Bearer token in the Authorization header.

Example: Authorization: Bearer bw_api_your_key_here

Path Parameters

identifier
string
required

Either the contact's email address or their userId. When using an email address, you must URI-encode it (replace @ with %40). Examples:

Response

200
application/json

Contact deleted successfully

The response is of type object.