Skip to main content
Get Enterprise Playbook
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/playbooks/{playbook_id} \
  --header 'Authorization: Bearer <token>'
{
  "playbook_id": "playbook-ba3108faab9e4d58ac7ba993dfd74aae",
  "title": "My Title",
  "body": "My Body",
  "status": "published",
  "access": "team",
  "account_id": "account-9a90315aa6334c66bc98bfd76f68455e",
  "macro": "!deploy",
  "created_at": "2025-10-10T12:34:56Z",
  "updated_at": "2025-10-12T08:15:30Z"
}
Retrieve a playbook by its unique identifier. The playbook must belong to your enterprise and be accessible to you.

Path Parameters

playbook_id
string
required
The unique identifier of the playbook

Response

{
  "playbook_id": "playbook-ba3108faab9e4d58ac7ba993dfd74aae",
  "title": "My Title",
  "body": "My Body",
  "status": "published",
  "access": "team",
  "account_id": "account-9a90315aa6334c66bc98bfd76f68455e",
  "macro": "!deploy",
  "created_at": "2025-10-10T12:34:56Z",
  "updated_at": "2025-10-12T08:15:30Z"
}
I