NotificationFeedResponse
A page of notifications from the feed.
items object[]nullable
The notifications on this page, ordered newest first.
Array [
idstring<uuid>
Id of the notification.
categoryNotificationCategory (string)
Allowed value for category.
Possible values: [Billing, Projects, Vms, Network, Security]
titlestringnullable
Short, human-readable title.
bodystringnullable
The notification body text.
createdAtstring<date-time>
The date and time (UTC) at which the notification was created.
readAtstring<date-time>nullable
The date and time (UTC) at which the notification was marked read, or null if unread.
]
nextCursorstringnullable
Cursor to pass as cursor to fetch the next page, or null when there are no more
notifications. Treat this value as opaque.
NotificationFeedResponse
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"category": "Billing",
"title": "string",
"body": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"readAt": "2024-07-29T15:51:28.071Z"
}
],
"nextCursor": "string"
}