# List connected account tasks

### List connected account tasks

`GET /api/v1/connected-accounts/{connectedAccountId}/tasks`

Operation ID: `listConnectedAccountTasks`

The queue for one account. Because quotas and pacing are per account, this is the order and rate its work will actually go out at.

**Path parameters**

- `connectedAccountId` (string · uuid, required): Connected account 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
