PUT
/
v1
/
templates
/
{id}
Update status page template
curl --request PUT \
  --url https://api.rootly.com/v1/templates/{id} \
  --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": "5fe97c3c-60a2-4928-8e72-1b99dc399a25",
    "type": "status_page_templates",
    "attributes": {
      "status_page_id": "e076ba20-85b3-498c-9bdd-408618a86aa3",
      "title": "Update template title",
      "body": "Update template body",
      "update_status": null,
      "should_notify_subscribers": false,
      "position": 1,
      "enabled": true,
      "created_at": "2025-09-01T03:43:30.429-07:00",
      "updated_at": "2025-09-01T03:43:31.750-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

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

incident_event updated

The response is of type object.