Skip to content

List all notifications

GET
/notifications
curl --request GET \
--url 'http://localhost:8000/api/v1/notifications?limit=20' \
--header 'Authorization: Bearer <token>'
limit
integer
default: 20

Number of items to return per page

synced_since
string format: date-time

Get recent changes after this date

no_client_id
boolean

Get results with no client id

unread_only
boolean

Successful operation

Media type application/json
object
last_sync
string format: date-time
data
Array<object>
object
id
integer
type
string
Allowed values: reminder alert achievement system
title
string
body
string
nullable
data
object
read_at
string format: date-time
nullable
created_at
string format: date-time
unread_count
integer
Example
{
"data": [
{
"type": "reminder"
}
]
}