Skip to main content
GET
/
v3
/
tasks
List all tasks
curl --request GET \
  --url https://api.reply.io/v3/tasks \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "taskType": "toDo",
      "status": "new",
      "linkedInTaskType": "message",
      "assignedUserId": 123,
      "contact": {
        "id": 123,
        "fullName": "<string>"
      },
      "startAt": "2023-11-07T05:31:56Z",
      "dueTo": "2023-11-07T05:31:56Z",
      "finishedAt": "2023-11-07T05:31:56Z",
      "isScheduled": true,
      "sequenceId": 123,
      "sequenceStepId": 123
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000).

skip
integer

Number of items to skip.

Response

Tasks retrieved successfully.

items
TaskListItemResponse · object[]
hasMore
boolean

Whether more items are available beyond the current page.