Sazabi
APITasks

List tasks

GET
/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.

Formatuuid

Response 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"    }  ]}