NNotifyy CRM

Objects

Delete a contact

Soft delete a contact by contact ID.

Overview

Use this endpoint to soft delete a contact in the token-bound tenant and project. The public contacts layer does not define a separate conflict path for delete operations. It requires public api oauth access token authentication and the crm.contacts.delete scope.

DELETE/api/crm/objects/contacts/{contactId}

cURL

DELETE
bash
curl --request DELETE \  --url 'https://crm.notifyy.io/api/crm/objects/contacts/55' \  --header 'Authorization: Bearer nfy_public_api_access_token'

Authorization

Public API OAuth access token

crm.contacts.delete

Sample Request Body

This endpoint does not require a request body.

Sample Response

json
{  "success": true,  "message": "Contact deleted successfully",  "data": null}

Status Codes

CodeDescription
200Contact was deleted.

Headers

AuthorizationstringRequired

Public API OAuth bearer token.

Example: Bearer nfy_public_api_access_token

Path parameters

contactIdintegerRequired

Contact ID.

Example: 55

Response fields

successboolean

Whether the request succeeded.

Example: true

messagestring

Human-readable result message.

Example: Contact deleted successfully

datanull

No response payload is returned for a successful delete.