Skip to main content
POST
/
api
/
v1
/
manage
/
status-pages
Create a new status page
curl --request POST \
  --url https://api.example.com/api/v1/manage/status-pages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "description": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
visibility
enum<string>
required
Available options:
public,
private
domain
string
required

Subdomain slug (lowercase letters, numbers, hyphens)

description
string

Response

201 - undefined