Skip to content

Delete notify

DeleteNotify

Description: Deletes a notification by its ID.

Request Parameters

Name Type Required Description
id int Yes Notification ID to delete

Request Example

{
  "id": 101
}

Response Parameters

Name Type Description
data string Returns "OK" if successful

Response Example

{
  "data": "OK"
}

⚠️ If the notification does not exist or cannot be deleted, an error is returned:

{
  "error": "INVALID_DELETE_NOTIFY",
  "message": "Notify not found or already deleted"
}