POST
/
v1
/
status-pages
/
{status_page_id}
/
templates
curl --request POST \
  --url https://api.rootly.com/v1/status-pages/{status_page_id}/templates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "status_page_id": "<string>",
  "title": "<string>",
  "body": "<string>",
  "update_status": "<string>",
  "kind": "normal",
  "should_notify_subscribers": true,
  "enabled": true,
  "position": 123,
  "created_at": "<string>",
  "updated_at": "<string>"
}'
{
  "data": {
    "id": "af48ae7a-f3f4-4ea2-bd36-36c1f88e70f3",
    "type": "status_page_templates",
    "attributes": {
      "status_page_id": "bf454915-b29c-4e37-b8c6-074ec6770bc7",
      "title": "Created from API",
      "body": "This was created from API.",
      "update_status": null,
      "should_notify_subscribers": false,
      "position": 4,
      "enabled": true,
      "created_at": "2025-05-08T00:25:17.301-07:00",
      "updated_at": "2025-05-08T00:25:17.301-07:00",
      "kind": "normal"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

status_page_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json
incident_event created

The response is of type object.