POST
/api/public/v1/notifications/{notificationId}/handle

Mark notification as handled

Mark a notification as handled by the calling employee.

Path Parameters

NameTypeRequiredDescription
notificationIdstring
Required
Notification ID.
POSTExample request
curl
curl -X POST "https://www.pxb.app/api/public/v1/notifications/{notificationId}/handle" \
  -H "X-Organization-Id: your_org_id" \
  -H "X-API-Key: your_api_key"
200Example response
json
{
  "message": "Notification marked as handled successfully!",
  "content": {
    "notification": {
      "id": "ntf_1",
      "handledAt": "2026-06-01T00:00:00Z"
    }
  }
}