Skip to main content
POST
/
reporting
/
tasks
List task activity
curl --request POST \
  --url https://api.reply.io/v3/reporting/tasks \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "filters": {
    "from": "2026-01-01T00:00:00Z",
    "to": "2026-03-01T00:00:00Z",
    "dateRangePreset": "LastWeek",
    "teamIds": [
      123
    ],
    "userIds": [
      123
    ],
    "contactListIds": [
      123
    ],
    "emailValidationStatuses": [
      "RequiresValidation"
    ],
    "companies": [
      "<string>"
    ],
    "companySizes": [
      "Empty"
    ],
    "industries": [
      "<string>"
    ],
    "cities": [
      "<string>"
    ],
    "states": [
      "<string>"
    ],
    "countries": [
      "<string>"
    ],
    "titles": [
      "<string>"
    ],
    "sequenceIds": [
      123
    ],
    "includeOutOfSequence": false,
    "emailProviders": [
      "None"
    ],
    "taskStatuses": [
      "Created"
    ],
    "taskTypes": [
      "ToDo"
    ]
  }
}
'
{
  "data": [
    {
      "id": "<string>",
      "userId": 123,
      "taskType": "ToDo",
      "linkedInTaskType": "Message",
      "description": "<string>",
      "contactFullName": "<string>",
      "taskStatus": "Created",
      "dueDate": "2023-11-07T05:31:56Z"
    }
  ],
  "iterationInfo": {
    "hasMore": true
  }
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

top
integer

Number of records to return (page size)

Required range: x >= 1
skip
integer

Number of records to skip

Required range: x >= 0

Body

application/json
filters
Tasks Reporting Filters · object
required

Filters specific to task reporting endpoints

Response

Tasks list retrieved successfully

data
Task List Item · object[]
iterationInfo
Iteration Info · object

Metadata about iterated resource