menu
Delete a contact
Permanently deletes a contact by id - typically for GDPR erasure requests or list hygiene. Resolve the id first via the contact list’s exact email filter.
Endpoint
DELETE https://api.sendstreak.com/v2/accounts/{accountId}/contacts/{contactId}
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
contactId | string |
Response
Deleted.
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request DELETE 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/contacts/YOUR_CONTACT_ID' \
--header 'Authorization: Bearer YOUR_API_TOKEN'