Skip to main content

Get Media Review Notifications

GET /notifications/media-review

Description

Returns only notifications classified as media-review notifications.

Request Parameters

Requires Authentication: true

QUERY PARAMS

NameTypeRequiredDescription
pagenumberNoPage number. Defaults to 1.
maxPageSizenumberNoPage size. The API caps it at the shared max page size.
readbooleanNoOptional filter for read or unread notifications.

Usage Example

await axios.get(
"https://api.daykeeper.app/notifications/media-review?page=1",
{
headers: {
Authorization: `Bearer ${accessToken}`,
},
}
)

Success Response

{
"message": "notifications fetched successfully",
"data": [],
"page": 1,
"totalPages": 0,
"unreadCount": 4,
"hasUnread": true
}

Error Response

CodeDescription
401Missing or invalid access token
500Server error