---
title: "Get tasks reporting overview"
method: POST
path: "/v3/reporting/tasks/overview"
tags: ["Reports"]
---

# Get tasks reporting overview

`POST /v3/reporting/tasks/overview`

<small>_Requires the `reporting:read` scope (or a broader one that includes it)._</small>

Returns aggregated task statistics broken down by type (call, email, LinkedIn, meetings, SMS, to-do, WhatsApp), with per-member breakdown.

## Request body

- object
  - `filters` object, required — Filters specific to task reporting endpoints
    - `from` string, date-time — Start date of the reporting period
    - `to` string, date-time — End date of the reporting period
    - `dateRangePreset` 'lastWeek' | 'lastMonth' | 'lastYear' | 'allTime' — Predefined date range shortcut. Defaults to lastWeek when neither dateRangePreset nor from/to are provided. Use allTime to retrieve the full historical report. Cannot be combined with from/to.
    - `teamIds` integer[] — Filter by team IDs
    - `userIds` integer[] — Filter by user IDs
    - `contactListIds` integer[] — Filter by contact list IDs
    - `emailValidationStatuses` string[] — Filter by email validation status
    - `companies` string[] — Filter by company names
    - `companySizes` string[] — Filter by company size ranges
    - `industries` string[] — Filter by industry names
    - `cities` string[] — Filter by city names
    - `states` string[] — Filter by state/region names
    - `countries` string[] — Filter by country names
    - `titles` string[] — Filter by job titles
    - `sequenceIds` integer[] — Filter by sequence IDs
    - `includeOutOfSequence` boolean — Include activity outside of sequences
    - `emailProviders` string[] — Filter by email provider type
    - `taskStatuses` string[] — Filter by task status
    - `taskTypes` string[] — Filter by task type

## Response `200`

Tasks overview retrieved successfully

- object — Aggregated task statistics broken down by type, with per-member breakdown
  - `totalTasks` integer — Total number of tasks
  - `callTasks` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `emailTasks` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `linkedInTasks` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `meetingsBooked` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `smsTasks` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `toDoTasks` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `whatsAppTasks` object — Count and percentage for a specific task type
    - `count` integer — Number of tasks of this type
    - `percentage` number, double — Percentage this type represents of total tasks
  - `memberStatistics` object[] — Per-member task statistics breakdown
    - `userId` integer
    - `totalTasks` integer
    - `callTasks` integer
    - `emailTasks` integer
    - `linkedInTasks` integer
    - `meetingsBooked` integer
    - `smsTasks` integer
    - `toDoTasks` integer
    - `whatsAppTasks` integer

## Other responses

- `400` — Request-body validation failure (FluentValidator).
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks required feature scope to view reports.
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/revisions/1c3d32eaf95e/schema)
