NNotifyy CRM

Objects

Delete a deal

Soft delete a deal by deal ID.

Overview

Use this endpoint to soft delete a deal in the token-bound tenant and project. It requires public api oauth access token authentication and the crm.deals.delete scope.

DELETE/api/crm/objects/deals/{dealId}

cURL

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

Authorization

Public API OAuth access token

crm.deals.delete

Sample Request Body

This endpoint does not require a request body.

Sample Response

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

Status Codes

CodeDescription
200Deal was deleted.

Headers

AuthorizationstringRequired

Public API OAuth bearer token.

Example: Bearer nfy_public_api_access_token

Path parameters

dealIdintegerRequired

Deal ID.

Example: 55

Response fields

datanull

No response payload is returned for a successful delete.