Skip to content

List all work items in a release

GET/api/v1/workspaces/{workspace_slug}/releases/{release_id}/work-items/

Returns a list of all work items linked to a release.

Path Parameters

workspace_slug:requiredstring

The workspace_slug represents the unique workspace identifier for a workspace in Plane. It can be found in the URL. For example, in the URL https://app.plane.so/my-team/projects/, the workspace slug is my-team.

release_id:requiredstring

The unique identifier for the release.

Query Parameters

per_page:optionalinteger

Number of results per page. Defaults to 20.

cursor:optionalstring

Cursor string for pagination in the format value:offset:is_prev.

Scopes

releases.work_items:read

List all work items in a release
bash
curl -X GET \
  "https://api.plane.so/api/v1/workspaces/my-workspace/releases/a1b2c3d4-e5f6-7890-abcd-ef1234567890/work-items/" \
  -H "X-API-Key: $PLANE_API_KEY" \
  # Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN" \
Response200
json
{
  "next_cursor": "20:1:0",
  "prev_cursor": "",
  "next_page_results": false,
  "prev_page_results": false,
  "count": 2,
  "total_pages": 1,
  "total_results": 2,
  "extra_stats": null,
  "results": [
    {
      "id": "d4e5f6a7-b8c9-0123-defa-456789012345",
      "project_id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
      "name": "Fix login redirect"
    },
    {
      "id": "e5f6a7b8-c9d0-1234-efab-567890123456",
      "project_id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
      "name": "Add SSO support for enterprise plan"
    }
  ]
}