Skip to main content
DELETE
/
api
/
nucleus
/
contacts
Delete a Nucleus contact
curl --request DELETE \
  --url https://app.auditynow.com/api/nucleus/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "550e8400-e29b-41d4-a716-446655440000"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.auditynow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Personal Access Token issued from https://app.auditynow.com/dashboard/settings/api-tokens. Format: aky_<32 random chars>.

Body

application/json

DELETE payload. The contact ID is passed in the JSON body, not the URL path.

contactId
string<uuid>
required

Response

Contact deleted

success
boolean
required