Projects

List the plans you can see in a project

GET
/v1/projects/{projectSlug}/plans

Authorization

bearerAuth
AuthorizationBearer <token>

A personal API key (psk_…) or an OAuth access token (plan_at_…). Scopes: read, write.

In: header

Path Parameters

projectSlug*string

Project slug, e.g. recipe-box.

Query Parameters

status?string

Exact match on the lifecycle status.

roots?string

Pass true for top-level plans only.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/projects/string/plans"
{  "plans": [    {      "id": "string",      "shortId": "string",      "archivedAt": "2019-08-24T14:15:22Z",      "name": "string",      "status": "PLANNING",      "statusLabel": "string",      "projectId": "string",      "parentPlanId": "string",      "rootPlanId": "string",      "visibility": "PRIVATE",      "ownerUserId": "string",      "capability": "NONE",      "specCount": 0    }  ]}