Zum Hauptinhalt springen
GET
/
v3beta1
/
enterprise
/
playbooks
List all playbooks.
curl --request GET \
  --url https://api.devin.ai/v3beta1/enterprise/playbooks \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "access_type": "enterprise",
      "body": "<string>",
      "created_at": 123,
      "created_by": "<string>",
      "macro": "<string>",
      "org_id": "<string>",
      "playbook_id": "<string>",
      "title": "<string>",
      "updated_at": 123,
      "updated_by": "<string>"
    }
  ],
  "end_cursor": "<string>",
  "has_next_page": false,
  "total": 123
}

Berechtigungen

Erfordert einen Servicebenutzer auf Enterprise-Ebene mit der Berechtigung ManageAccountPlaybooks.

Authorizations

Authorization
string
header
required

Service User credential (prefix: cog_)

Query Parameters

after
string | null
first
integer
default:100
Erforderlicher Bereich: 1 <= x <= 200

Response

Successful Response

items
PlaybookResponse · object[]
required
end_cursor
string | null

Cursor to fetch the next page, or None if this is the last page.

has_next_page
boolean
default:false

Whether there are more items available after this page.

total
integer | null

Optional total count (can be omitted for performance).