Skip to content

List work item relations

GET/api/v1/workspaces/{workspace_slug}/projects/{project_id}/work-items/{work_item_id}/relations/

Retrieve all relationships for a work item including blocking, blocked_by, duplicate, relates_to, start_before, start_after, finish_before, and finish_after relations.

Path Parameters

work_item_id:requiredstring

The unique identifier of the work item.

project_id:requiredstring

The unique identifier of the project.

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.

Query Parameters

cursor:optionalstring

Pagination cursor for getting next set of results

expand:optionalstring

Comma-separated list of related fields to expand in response

fields:optionalstring

Comma-separated list of fields to include in response

order_by:optionalstring

Field to order results by. Prefix with '-' for descending order

per_page:optionalinteger

Number of results per page (default: 20, max: 100)

Scopes

projects.work_items:read

List work item relations
bash
curl -X GET \
  "https://api.plane.so/api/v1/workspaces/my-workspace/projects/project-uuid/work-items/work-item-uuid/relations/?cursor=20:1:0&expand=assignees" \
  -H "X-API-Key: $PLANE_API_KEY" \
  # Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN"
Response200
json
{
  "blocking": ["550e8400-e29b-41d4-a716-446655440000", "550e8400-e29b-41d4-a716-446655440000"],
  "blocked_by": ["550e8400-e29b-41d4-a716-446655440000"],
  "duplicate": [],
  "relates_to": ["550e8400-e29b-41d4-a716-446655440000"],
  "start_after": [],
  "start_before": ["550e8400-e29b-41d4-a716-446655440000"],
  "finish_after": [],
  "finish_before": []
}