Parameters
Bearer <api_key>The contact ID.
Request
Response
- 200 OK
- 403 Forbidden
- 404 Not Found
DELETE /v1/contacts/ — permanently remove a contact and all associated data.
DELETE /v1/contacts/{id}
status: "BLOCKED" via PATCH /v1/contacts/{id} if you want to block future sends without losing the audit trail.Bearer <api_key>curl -sS -X DELETE "https://api.arowana.app/v1/contacts/c_a1b2c3d4" \
-H "Authorization: Bearer $API_KEY"
{ "success": true }
{ "error": "forbidden", "message": "Manager role required to delete contacts." }
{ "error": "not_found", "message": "Contact not found." }