Skip to main content
POST
/
api
/
v1
/
status-pages
/
{id}
/
subscriptions
Subscribe to status page notifications
curl --request POST \
  --url https://api.example.com/api/v1/status-pages/{id}/subscriptions \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "slackWebhookUrl": "<string>",
  "monitorIds": [
    "<string>"
  ]
}
'

Path Parameters

id
string
required

Body

application/json
subscriptionType
enum<string>
required
Available options:
all,
specific
email
string

Email address for notifications

slackWebhookUrl
string

Slack webhook URL

monitorIds
string[]

Monitor IDs for specific subscriptions

Response

201 - undefined