PUT
/
v1
/
templates
/
{id}
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": "ea994732-8b84-4553-8082-e7e28f256967",
    "type": "status_page_templates",
    "attributes": {
      "status_page_id": "bd673165-0948-4d96-a27f-c3f8627c90f5",
      "title": "Update template title",
      "body": "Update template body",
      "update_status": null,
      "should_notify_subscribers": false,
      "position": 1,
      "enabled": true,
      "created_at": "2025-03-19T07:55:44.687-07:00",
      "updated_at": "2025-03-19T07:55:46.730-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
status_page_id
string
required
title
string
required

Title of the template

body
string
required

Description of the event the template will populate

created_at
string
required

Date of creation

updated_at
string
required

Date of last update

update_status
string | null

Status of the event the template will populate

kind
enum<string>

The kind of the status page template

Available options:
normal,
scheduled
should_notify_subscribers
boolean | null

Controls if incident subscribers should be notified

enabled
boolean | null

Enable / Disable the status page template

position
integer

Position of the workflow task

Response

200
application/vnd.api+json
incident_event updated
data
object
required