Skip to content

List milestone work items

GET/api/v1/workspaces/{slug}/projects/{project_id}/milestones/{milestone_id}/work-items/

List all work items for a milestone.

Path Parameters

milestone_id:requiredstring

Milestone id.

project_id:requiredstring

Project id.

slug:requiredstring

Slug.

Scopes

API key authentication or an OAuth token with equivalent access.

List milestone work items
bash
curl -X GET \
  "https://api.plane.so/api/v1/workspaces/my-workspace/projects/550e8400-e29b-41d4-a716-446655440000/milestones/550e8400-e29b-41d4-a716-446655440001/work-items/" \
  -H "X-API-Key: $PLANE_API_KEY"
Response200
json
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "issue": "550e8400-e29b-41d4-a716-446655440000",
    "milestone": "550e8400-e29b-41d4-a716-446655440000"
  }
]