POST
/api/public/v1/notifications/{notificationId}/handleMark notification as handled
Mark a notification as handled by the calling employee.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
notificationId | string | 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"
}
}
}