List event notifications
Allows you to retrieve a paginated list of event notifications for the user.
GET
/api/notifications
curl \
--request GET 'http://localhost:4000/api/notifications' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"id": "f260f115-f2e6-4dde-bcab-98b10fdb8cf6",
"user_id": "002d3656-34c1-446c-a987-65ec766f76a4",
"created_at": "2025-07-30 13:00:00Z",
"period_end": "2025-07-30 13:00:00",
"updated_at": "2025-07-30 13:00:00Z",
"booth_count": 5,
"event_count": 3,
"seen_in_app": true,
"period_start": "2025-07-29 13:00:00",
"email_sent_at": "2025-07-30 13:00:00Z"
}
],
"page": 1,
"limit": 1,
"pages": 20,
"total": 20
}
Response examples (200)
{
"data": [
{
"id": "f260f115-f2e6-4dde-bcab-98b10fdb8cf6",
"user_id": "002d3656-34c1-446c-a987-65ec766f76a4",
"created_at": "2025-07-30 13:00:00Z",
"period_end": "2025-07-30 13:00:00",
"updated_at": "2025-07-30 13:00:00Z",
"booth_count": 5,
"event_count": 3,
"seen_in_app": true,
"period_start": "2025-07-29 13:00:00",
"email_sent_at": "2025-07-30 13:00:00Z"
}
],
"page": 1,
"limit": 1,
"pages": 20,
"total": 20
}
Response examples (401)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}