Skip to main content
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",
      "data": {
        "type": "Email",
        "delayInMinutes": 1,
        "executionMode": "Automatic",
        "templates": [
          {
            "subject": "<string>",
            "body": "<string>",
            "id": 123,
            "templateId": 123
          }
        ],
        "id": 123,
        "scheduledTime": "2023-11-07T05:31:56Z"
      },
      "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>"
      }
    }
  ],
  "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