{ "opencollection": "1.0.0", "info": { "name": "Devin External Attachments Playbooks API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Playbooks", "type": "folder" }, "items": [ { "info": { "name": "List playbooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.devin.ai/v1/playbooks" }, "docs": "Retrieve all team playbooks accessible to your organization. Only team playbooks are returned via the API.\n" }, { "info": { "name": "Create playbook", "type": "http" }, "http": { "method": "POST", "url": "https://api.devin.ai/v1/playbooks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new team playbook. Requires ManageOrgPlaybooks permission.\n" }, { "info": { "name": "Get playbook", "type": "http" }, "http": { "method": "GET", "url": "https://api.devin.ai/v1/playbooks/:playbook_id", "params": [ { "name": "playbook_id", "value": "", "type": "path", "description": "The ID of the playbook to retrieve" } ] }, "docs": "Retrieve details of a specific playbook by its ID.\n" }, { "info": { "name": "Update playbook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.devin.ai/v1/playbooks/:playbook_id", "params": [ { "name": "playbook_id", "value": "", "type": "path", "description": "The ID of the playbook to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing team playbook. Requires ManageOrgPlaybooks permission.\nOnly team playbooks can be updated.\n" }, { "info": { "name": "Delete playbook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.devin.ai/v1/playbooks/:playbook_id", "params": [ { "name": "playbook_id", "value": "", "type": "path", "description": "The ID of the playbook to delete" } ] }, "docs": "Delete a team playbook. Requires ManageOrgPlaybooks permission.\nThis marks the playbook as deleted and removes any associated macro.\n" } ] } ], "bundled": true }