Skip to main content
DELETE
/
contacts
/
email
/
userId
/
{userId}
Delete Contact by User ID
curl --request DELETE \
  --url https:/api.autosend.com/v1/contacts/email/userId/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userId
string
required

Your application's user identifier

Response

200 - application/json

Contact deleted successfully

success
boolean
Example:

true