PUT
/
v1
/
templates
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/templates/%7Bid%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/vnd.api+json'
{
  "data": {
    "id": "c453b1ba-3602-48bb-bbcc-657ffe85c9aa",
    "type": "status_page_templates",
    "attributes": {
      "status_page_id": "019d83d2-486e-400a-a43d-fb63eab47807",
      "title": "Update template title",
      "body": "Update template body",
      "update_status": null,
      "should_notify_subscribers": false,
      "position": 1,
      "enabled": true,
      "created_at": "2025-03-07T00:09:24.107-08:00",
      "updated_at": "2025-03-07T00:09:26.757-08: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