AviatoAviato
DeveloperAPI ReferenceNotifications

/api/notifications

GET
/api/notifications

Query Parameters

limit?integer

Max items to return

Range0 < value
offset?|

Number of items to skip

Range0 <= value
unread?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
}