Skip to main content
DELETE
/
contact
/
{identifier}
Delete contact
curl --request DELETE \
  --url https://api.sendx.io/api/v1/rest/contact/{identifier} \
  --header 'X-Team-ApiKey: <api-key>'
{
"status": "success",
"message": "contact (jane.smith@company.com) has been deleted successfully"
}

Authorizations

X-Team-ApiKey
string
header
required

Team API key for authentication. Find your API key in SendX Settings → Team API Key.

Example:

X-Team-ApiKey: your_team_api_key_here

Path Parameters

identifier
string
required

Resource identifier with prefix (e.g., contact_BnKjkbBBS500CoBCP0oChQ)

Format: <prefix>_<22-character-id>

Example:

"contact_BnKjkbBBS500CoBCP0oChQ"

Response

✅ Contact deleted successfully

status
enum<string>
required
Available options:
success
Example:

"success"

message
string
required
Example:

"Resource deleted successfully"

I