{ "opencollection": "1.0.0", "info": { "name": "Sb0 Agent APIKeys Projects API", "version": "0.1.0" }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List Projects", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/projects", "params": [ { "name": "namespace_id", "value": "", "type": "query", "description": "Filter by namespace ID" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results" }, { "name": "page_number", "value": "", "type": "query", "description": "Page number" } ] }, "docs": "List all projects the user has access to." }, { "info": { "name": "Create Project", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new project within a namespace." }, { "info": { "name": "Get Project", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path" } ] }, "docs": "Get a project by ID." }, { "info": { "name": "Update Project", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a project's properties." }, { "info": { "name": "Delete Project", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path" } ] }, "docs": "Delete a project (must be empty)." }, { "info": { "name": "List Project Collaborators", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/projects/:project_id/collaborators", "params": [ { "name": "project_id", "value": "", "type": "path" } ] }, "docs": "List explicit collaborator roles on a project." }, { "info": { "name": "Set Project Collaborator Role", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/projects/:project_id/collaborators/:member_id", "params": [ { "name": "project_id", "value": "", "type": "path" }, { "name": "member_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create or update an explicit collaborator role on a project." }, { "info": { "name": "Remove Project Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/projects/:project_id/collaborators/:member_id", "params": [ { "name": "project_id", "value": "", "type": "path" }, { "name": "member_id", "value": "", "type": "path" } ] }, "docs": "Remove explicit collaborator role tuples from a project." } ] } ], "bundled": true }