GET
/
tasks
List all tasks
curl --request GET \
  --url https://api.reply.io/v3/tasks \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "ownerId": "<string>",
      "taskType": "email_manual",
      "status": "pending",
      "description": "<string>",
      "contactId": "<string>",
      "accountId": "<string>",
      "sequenceId": "<string>",
      "dueDate": "2023-12-25",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "lastInteraction": {
        "date": "2023-11-07T05:31:56Z",
        "type": "email",
        "result": "<string>"
      },
      "data": {
        "id": 123,
        "type": "Email",
        "number": "1",
        "delayInMinutes": 0,
        "emailTemplate": {
          "executionMode": "Automatic",
          "templates": [
            {
              "variantId": 1,
              "subject": "Introduction Email",
              "body": "Hi {{firstName}},\n\nI wanted to reach out regarding...",
              "templateId": 456
            }
          ]
        }
      }
    }
  ],
  "total": 123
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

status
enum<string>

Filter tasks by status

Available options:
pending,
completed,
skipped
taskType
enum<string>

Filter tasks by type

Available options:
email_manual,
email_auto,
call,
linkedin,
custom
dueDate
string<date>

Filter tasks by due date (YYYY-MM-DD)

Response

200 - application/json

List of tasks retrieved successfully

data
Task · object[]
total
integer

Total number of tasks