Skip to content

get_notifications

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/get_notifications
HandlerOperatelyWeb.Api.Queries.GetNotifications

Authentication#

  • Requires a valid API token.
  • Read-only and full-access tokens can execute this query.

Inputs#

FieldTypeRequiredNullableDefault
pageintegerNoYes-
per_pageintegerNoYes-

Outputs#

FieldTypeRequiredNullable
notificationsarray of notification objectNoYes

cURL Example#

Copied
curl --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"
    }
  ]
}