Update a specific playbook by id
curl --request PUT \
--url https://api.rootly.com/v1/playbooks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "playbooks",
"attributes": {
"title": "<string>",
"summary": "<string>",
"external_url": "<string>",
"severity_ids": [
"<string>"
],
"environment_ids": [
"<string>"
],
"service_ids": [
"<string>"
],
"functionality_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
]
}
}
}'
{
"data": {
"id": "f026ee54-ff55-436c-a3a8-c5843652249e",
"type": "playbooks",
"attributes": {
"title": "How to handle security incident?",
"summary": "This is a summary",
"external_url": null,
"severity_ids": [],
"environment_ids": [],
"service_ids": [],
"functionality_ids": [],
"group_ids": [],
"incident_type_ids": [],
"cause_ids": [],
"created_at": "2025-08-01T01:59:21.653-07:00",
"updated_at": "2025-08-01T01:59:25.111-07:00"
},
"relationships": {
"severities": {
"data": []
},
"environments": {
"data": []
},
"services": {
"data": []
},
"functionalities": {
"data": []
},
"groups": {
"data": []
},
"causes": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
playbook updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/playbooks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "playbooks",
"attributes": {
"title": "<string>",
"summary": "<string>",
"external_url": "<string>",
"severity_ids": [
"<string>"
],
"environment_ids": [
"<string>"
],
"service_ids": [
"<string>"
],
"functionality_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
]
}
}
}'
{
"data": {
"id": "f026ee54-ff55-436c-a3a8-c5843652249e",
"type": "playbooks",
"attributes": {
"title": "How to handle security incident?",
"summary": "This is a summary",
"external_url": null,
"severity_ids": [],
"environment_ids": [],
"service_ids": [],
"functionality_ids": [],
"group_ids": [],
"incident_type_ids": [],
"cause_ids": [],
"created_at": "2025-08-01T01:59:21.653-07:00",
"updated_at": "2025-08-01T01:59:25.111-07:00"
},
"relationships": {
"severities": {
"data": []
},
"environments": {
"data": []
},
"services": {
"data": []
},
"functionalities": {
"data": []
},
"groups": {
"data": []
},
"causes": {
"data": []
},
"incident_types": {
"data": []
}
}
}
}