APITasks
List tasks
List all onboarding and setup tasks for a project, including their current completion status and a description of what is required to complete each task.
Query Parameters
projectId?string
Project to list tasks for. Auto-filled from CLI and SDK context when omitted.
Format
uuidResponse Body
application/json
curl -X GET "https://example.com/tasks"{ "tasks": [ { "id": "string", "label": "string", "description": "string", "instructions": "string", "completed": true, "completedAt": "2019-08-24T14:15:22Z", "category": "onboarding" } ]}