This API is used to mark a notification as read by providing the ID of the notification.
Endpoint #
The Voomerr Notification Read endpoint is POST https://admin.voomerr.com/api/notification-read.php
Request Parameters #
| Parameter | Type | Required | Description |
|---|---|---|---|
| notification_id | integer | Yes | The ID of the notification to be marked as read. |
Response Parameters #
| Parameter | Type | Description |
|---|---|---|
| success | boolean | Indicates whether the operation was successful or not. |
| message | string | A message describing the result of the operation. |
Request Example #
json
{
"notification_id": 123
}
Response Example #
json
{
"success": true,
"message": "Notification marked as read successfully."
}
