List playbooks
curl --request GET \
--url https://api.rootly.com/v1/playbooks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "playbooks",
"attributes": {
"title": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"summary": "<string>",
"external_url": "<string>",
"severity_ids": [
"<string>"
],
"environment_ids": [
"<string>"
],
"functionality_ids": [
"<string>"
],
"service_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
comma separated if needed. eg: severities,environments,services
severities, environments, services, functionalities, groups, causes, incident_types success
Show child attributes
Unique ID of the playbook
playbooks Show child attributes
The title of the playbook
Date of creation
Date of last update
The summary of the playbook
The external url of the playbook
The Severity ID's to attach to the incident
The Environment ID's to attach to the incident
The Functionality ID's to attach to the incident
The Service ID's to attach to the incident
The Team ID's to attach to the incident
The Incident Type ID's to attach to the incident
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/playbooks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "playbooks",
"attributes": {
"title": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"summary": "<string>",
"external_url": "<string>",
"severity_ids": [
"<string>"
],
"environment_ids": [
"<string>"
],
"functionality_ids": [
"<string>"
],
"service_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}