Endpoint#
| Property | Value |
|---|
| Type | query |
| Method | GET |
| Path | /api/external/v1/get_notifications |
| Handler | OperatelyWeb.Api.Queries.GetNotifications |
Authentication#
- Requires a valid API token.
- Read-only and full-access tokens can execute this query.
| Field | Type | Required | Nullable | Default |
|---|
page | integer | No | Yes | - |
per_page | integer | No | Yes | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
notifications | array of notification object | No | Yes |
cURL Example#
Copiedcurl --request GET \
--url "https://app.operately.com/api/external/v1/get_notifications?page=123&per_page=123" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}"
Response Example#
{
"notifications": [
{
"activity": "<activity>",
"id": "value",
"read": true,
"read_at": "2026-01-01T09:30:00Z"
}
]
}