GET
/playbooks/{playbook_id}/versions
curl \
--request GET 'http://api.example.com/playbooks/{playbook_id}/versions' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"versions": [
{
"id": "string",
"playbook_pk": "string",
"version": 42,
"snapshot": {},
"created_at": "2026-05-04T09:42:00Z",
"created_by": "string"
}
]
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"ctx": {}
}
]
}