Skip to main content
GET
/
workspace
/
{ws_id}
/
playbooks
/
{id}
/
versions
List all versions metadata of a playbook
curl --request GET \
  --url https://app.blinkops.com/api/v1/workspace/{ws_id}/playbooks/{id}/versions \
  --header 'BLINK-API-KEY: <api-key>'
[
  {
    "branch": "<string>",
    "branched_from": 123,
    "created_at": 123,
    "created_by": "<string>",
    "description": "<string>",
    "id": "<string>",
    "name": "<string>",
    "source": "<string>",
    "version_id": 123
  }
]

Authorizations

Use your API key to access BlinkOps API. To generate an API key, please log in to your BlinkOps account and navigate to the API Keys section in the user settings page. Add the generated key to your request headers as BLINK-API-KEY.

Path Parameters

ws_id
string
required

The ID of the workspace containing the playbook

id
string
required

The ID of the playbook to retrieve the versions of

Response

Ordered list of playbook versions

branch
string
branched_from
integer
created_at
integer
created_by
string
description
string
id
string
name
string
source
string
version_id
integer