Playbook API Docs

The Playbook API allows developers to obtain information about their Incident Response Playbooks within their organization.

Use Cases

  • List all Playbooks within your organization.
  • List all Tasks within your organization.
  • Create or edit Playbooks and Tasks.

How to use the API Docs

Use the interactive documentation to explore the Playbook API endpoints. Each request will have a complete description of all the required parameters and it also allows you to instantly try it out in the online console. Code templates are also provided for you to quickly build scripts.

In the interactive explorer, the Client ID and Client Secret has been pre-filled and will allow you to make read-only API requests. These credentials will allow you to get an Access Token with a few simple button clicks, which will be stored for subsequent API requests until the token expires.

Note: The interactive documentation uses read-only credentials and the try it out feature will only work with GET and selected POSTrequests.

To try other Playbook API requests, go to https://playbook.us.security.cisco.com/api-docs/index.html

Generate an Access Token

In the interactive API explorer, the Access Token is automatically generated using the pre-filled Client ID and Client Secret so you do not need to generate it yourself.

If you want to understand how the Access Token is generated from the Client ID and Client Secret credentials, take a look at the Authentication page.

For detailed instructions on how to use the interactive API documentation (or your own Python script), see the Getting Started page.

Download the Playbook OpenAPI Specification

Download the Playbook OpenAPI specification (OAS) file here.

Sample Code

Below is an example of how to use the Playbook v1 API.

import json
import requests

# create headers for API request (See the OAuth2 overview page for sample code to generate an access token)
access_token = 'eyJhbGciO....bPito5n5Q' # truncated example, generate JWT token separately
bearer_token = 'Bearer ' + access_token

# get all playbooks for your org
url = 'https://playbook.us.security.cisco.com/v1/playbook'

headers = {
            'Authorization': bearer_token,
            'Content-Type':'application/json',
            'Accept':'application/json'
}

response = requests.get(url, headers=headers)
print(response.text)

if response.status_code == 200:
    # convert the response to a dict object
    response_json = json.loads(response.text)

    # loop through Playbooks
    for playbook in response_json:

        playbook_title = response_json['title']
        playbook_description = response_json['description']
        playbook_ID = response_json['id']
        print(f"Found a Playbook with title: {playbook_title} and ID: {playbook_ID}")