List in-app notifications
Notifications
List in-app notifications
List in-app notifications for the authenticated user, newest first. Supports filtering by read status via unread_only. Pagination metadata includes unread_count so clients can render an inbox badge without a second request.
GET
List in-app notifications
Authorizations
Query Parameters
If true, return only notifications where read=false.
Page number (1-indexed).
Required range:
x >= 1Number of items per page (max 100).
Required range:
1 <= x <= 100Response
200 - application/json
OK
Pagination metadata extended with an unread-count summary.
Identical to :class:apps.core.api.pagination.PaginationMeta plus
unread_count so clients can render an inbox badge without a second
request.
Example:
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}