Skip to content

List notifications

GET
/notifications
curl --request GET \
--url 'https://shoehorn.example.com/api/v1/notifications?limit=20'

Returns notifications for the current user.

limit
integer
default: 20 <= 100
cursor
string
unread
boolean

Filter to unread only

User notifications

Media type application/json
object
notifications
Array<object>
object
id
string format: uuid
type
string
Allowed values: info warning error success
title
string
message
string
url

Deep link to related resource

string
entity_id
string
read
boolean
created_at
string format: date-time
unread_count
integer
pagination
object
nextCursor
string
Example
{
"notifications": [
{
"type": "info"
}
]
}