Skip to main content
DELETE
/
api
/
contacts
/
{uuid}
Delete Contact
curl --request DELETE \
  --url https://app.sentsays.com/api/contacts/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "id": "fd3f92b5-340c-4259-a189-896a38b885d7",
  "message": "Request processed successfully"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY

Path Parameters

uuid
string<uuid>
required

UUID of the contact to delete

Example:

"fd3f92b5-340c-4259-a189-896a38b885d7"

Response

Contact deleted successfully

statusCode
integer
Example:

200

id
string<uuid>
Example:

"fd3f92b5-340c-4259-a189-896a38b885d7"

message
string
Example:

"Request processed successfully"

I