GET
/
tasks
/
analytics
Get task analytics
curl --request GET \
  --url https://api.reply.io/v3/tasks/analytics \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "date": "2023-12-25",
      "taskType": "<string>",
      "total": 123,
      "completed": 123,
      "pending": 123,
      "skipped": 123
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

timeBucket
enum<string>
required

Time bucket for analytics (day, week, month)

Available options:
day,
week,
month
startDate
string<date>
required

Start date for analytics (YYYY-MM-DD)

endDate
string<date>
required

End date for analytics (YYYY-MM-DD)

Response

200 - application/json

Task analytics retrieved successfully

data
object[]