Skip to main content
POST
/
api
/
v1
/
status-pages
/
{statusPageId}
/
maintenance
/
{maintenanceId}
/
updates
Add an update to a maintenance window
curl --request POST \
  --url https://api.example.com/api/v1/status-pages/{statusPageId}/maintenance/{maintenanceId}/updates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

statusPageId
string
required
maintenanceId
string
required

Body

application/json
content
string
required
status
enum<string>
required
Available options:
scheduled,
in_progress,
completed,
cancelled

Response

201 - undefined