{ "opencollection": "1.0.0", "info": { "name": "Plane Cycle Work Items API", "version": "v1" }, "request": { "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Work Items", "type": "folder" }, "items": [ { "info": { "name": "List all work items in a project.", "type": "http" }, "http": { "method": "GET", "url": "https://api.plane.so/api/v1/workspaces/:workspace_slug/projects/:project_id/work-items/", "params": [ { "name": "workspace_slug", "value": "", "type": "path", "description": "The unique slug of the workspace." }, { "name": "project_id", "value": "", "type": "path", "description": "The UUID of the project." }, { "name": "cursor", "value": "", "type": "query", "description": "Cursor for cursor-based pagination, in the form value:offset:page." }, { "name": "per_page", "value": "", "type": "query", "description": "Number of results to return per page (default 20, max 100)." } ] }, "docs": "List all work items in a project." }, { "info": { "name": "Create a work item in a project.", "type": "http" }, "http": { "method": "POST", "url": "https://api.plane.so/api/v1/workspaces/:workspace_slug/projects/:project_id/work-items/", "params": [ { "name": "workspace_slug", "value": "", "type": "path", "description": "The unique slug of the workspace." }, { "name": "project_id", "value": "", "type": "path", "description": "The UUID of the project." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a work item in a project." }, { "info": { "name": "Retrieve a work item.", "type": "http" }, "http": { "method": "GET", "url": "https://api.plane.so/api/v1/workspaces/:workspace_slug/projects/:project_id/work-items/:work_item_id/", "params": [ { "name": "workspace_slug", "value": "", "type": "path", "description": "The unique slug of the workspace." }, { "name": "project_id", "value": "", "type": "path", "description": "The UUID of the project." }, { "name": "work_item_id", "value": "", "type": "path", "description": "The UUID of the work item (issue)." } ] }, "docs": "Retrieve a work item." }, { "info": { "name": "Update a work item.", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.plane.so/api/v1/workspaces/:workspace_slug/projects/:project_id/work-items/:work_item_id/", "params": [ { "name": "workspace_slug", "value": "", "type": "path", "description": "The unique slug of the workspace." }, { "name": "project_id", "value": "", "type": "path", "description": "The UUID of the project." }, { "name": "work_item_id", "value": "", "type": "path", "description": "The UUID of the work item (issue)." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a work item." }, { "info": { "name": "Delete a work item.", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.plane.so/api/v1/workspaces/:workspace_slug/projects/:project_id/work-items/:work_item_id/", "params": [ { "name": "workspace_slug", "value": "", "type": "path", "description": "The unique slug of the workspace." }, { "name": "project_id", "value": "", "type": "path", "description": "The UUID of the project." }, { "name": "work_item_id", "value": "", "type": "path", "description": "The UUID of the work item (issue)." } ] }, "docs": "Delete a work item." } ] } ], "bundled": true }