---
title: "List all tasks"
method: GET
path: "/v3/tasks"
tags: ["Tasks"]
---

# List all tasks

`GET /v3/tasks`

<small>_Requires the `tasks:read` scope (or a broader one that includes it)._</small>

Returns a paginated list of all tasks visible to the current user.
For filtered search, use POST /tasks/filter.

## Query parameters

- `top` integer
- `skip` integer

## Response `200`

Tasks retrieved successfully.

- object
  - `items` object[]
    - `id` integer — Task ID.
    - `taskType` 'toDo' | 'call' | 'meeting' | 'linkedIn' | 'manualEmail' | 'sms' | 'whatsApp' — Task type. Possible values: `toDo`, `call`, `meeting`, `linkedIn`, `manualEmail`, `sms`, `whatsApp`.
    - `status` 'new' | 'finished' | 'cancelled' | 'archived' | 'sequenceDetached' — Task status. Possible values: `new`, `finished`, `cancelled`, `archived`, `sequenceDetached`.
    - `linkedInTaskType` 'message' | 'connect' | 'inMail' | 'viewProfile', nullable — LinkedIn action subtype. Possible values: `message`, `connect`, `inMail`, `viewProfile`.
    - `assignedUserId` integer — ID of the user this task is assigned to.
    - `contact` object, nullable — Minimal contact information embedded in task list responses.
      - `id` integer, required — Contact (prospect) ID.
      - `fullName` string, nullable — Contact's full name.
    - `startAt` string, date-time — Task start time.
    - `dueTo` string, date-time — Task due time.
    - `finishedAt` string, date-time, nullable — When the task was completed. Null for active tasks.
    - `isScheduled` boolean — Whether the task is scheduled for automatic execution.
    - `sequenceId` integer, nullable — Sequence ID if this task was created by a sequence.
    - `sequenceStepId` integer, nullable — Sequence step ID.
  - `hasMore` boolean — Whether more items are available beyond the current page.

## Other responses

- `400` — Invalid pagination parameters (e.g. `top` out of range, `skip` negative).
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks required feature scope to view tasks
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/revisions/1c3d32eaf95e/schema)
