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

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

Array of email addresses to remove
emails
string[]
required
Array of email addresses to remove (minimum 1, automatically normalized)Minimum length: 1Example: ["email1@gmail.com"]

Response

Contacts removed successfully
success
boolean
Example: true