Skip to main content
POST
/
contacts
/
remove
Remove Contacts by Emails
curl --request POST \
  --url https:/api.autosend.com/v1/contacts/remove \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emails": [
    "[email protected]"
  ]
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Array of email addresses to remove

emails
string<email>[]
required

Array of email addresses to remove (minimum 1, automatically normalized)

Minimum length: 1
Example:

Response

200 - application/json

Contacts removed successfully

success
boolean
Example:

true