Skip to main content
GET
/
notifications
/
topics
List Available Topics
curl --request GET \
  --url https://api.altostrat.io/notifications/topics \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "top_9cffb446-18a5-445a-948c-e6f1d98930af",
    "name": "WAN Failover",
    "slug": "wan-failover"
  }
]

Authorizations

Authorization
string
header
required

Altostrat uses OAuth2 for authentication. Tokens can be obtained from the Altostrat Authentication API.

Response

200 - application/json

A list of available notification topics.

id
string<uuid>

The unique identifier for the topic.

Example:

"top_9cffb446-18a5-445a-948c-e6f1d98930af"

name
string

The human-readable name of the topic.

Example:

"WAN Failover"

slug
string

A machine-readable slug for the topic, used for routing events.

Example:

"wan-failover"