DeveloperAPI ReferenceNotifications
/api/notifications
Query Parameters
limit?integer
Max items to return
Range
0 < valueoffset?|
Number of items to skip
Range
0 <= valueunread?string
Filter to unread only (true/false)
Response Body
application/json
curl -X GET "https://example.com/api/notifications"{
"notifications": [
{
"id": "string",
"userId": "string",
"type": "string",
"title": "string",
"message": "string",
"data": {
"property1": null,
"property2": null
},
"read": true,
"createdAt": "string"
}
],
"total": 0,
"unreadCount": 0
}