Playbooks
Endpoints for listing and retrieving playbooks for the current organization.
Retrieve all playbooks
Lists all playbooks for the current organization.
path Parameters
organization_idOrganization id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Retrieve all playbooks › Responses
A list of playbooks for the organization
Create a playbook
Creates a new playbook for the current organization. name is required; description is optional.
path Parameters
organization_idOrganization id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Create a playbook › Request Body
nameName for the new playbook.
descriptionOptional description for the new playbook.
Create a playbook › Responses
Playbook created; returns the new playbook resource
Retrieve a playbook
Shows one playbook for the current organization (by id).
path Parameters
organization_idOrganization id
playbook_idPlaybook id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Retrieve a playbook › Responses
A single playbook
Archive a playbook
Archives one playbook for the current organization (by id).
path Parameters
organization_idOrganization id
playbook_idPlaybook id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Archive a playbook › Responses
Playbook archived; no content returned
Update a playbook
Updates the name and/or description of a single playbook. Send only the fields you want to change.
path Parameters
organization_idOrganization id
playbook_idPlaybook id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Update a playbook › Request Body
nameNew name for the playbook.
descriptionNew description for the playbook.
Update a playbook › Responses
Updated playbook