# List campaign tasks

### List campaign tasks

`GET /api/v1/campaigns/{campaignId}/tasks`

Operation ID: `listCampaignTasks`

The work this campaign owes its leads, and when each step is due.

**Path parameters**

- `campaignId` (string · uuid, required): Campaign id

**Query parameters**

- `cursor` (string, optional)
- `limit` (integer, optional)
- `status` ("pending" | "pending_approval", optional)

**200**: A page of tasks in queue order — the earliest scheduled first, which is the order the worker will run them in. Pass nextCursor as cursor for the next page.

- `tasks` (object[], required)
- `nextCursor` (string | null, required)

**Errors**

- `400`: Bad request
- `401`: Unauthorized: missing or invalid API key
- `403`: Forbidden
- `404`: Not found
- `422`: Invalid request payload
