NNotifyy CRM

Objects

Delete an appointment

Soft delete an appointment by appointment ID.

Overview

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

DELETE/api/crm/objects/appointments/{appointmentId}

cURL

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

Authorization

Public API OAuth access token

crm.appointments.delete

Sample Request Body

This endpoint does not require a request body.

Sample Response

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

Status Codes

CodeDescription
200Appointment was deleted.

Headers

AuthorizationstringRequired

Public API OAuth bearer token.

Example: Bearer nfy_public_api_access_token

Path parameters

appointmentIdintegerRequired

Appointment ID.

Example: 55

Response fields

datanull

No response payload is returned for a successful delete.