Skip to main content
GET
/
reports
/
groups
Get team performance report
curl --request GET \
  --url https://{your-subdomain}.neetodesk.com/api/v1/public/reports/groups \
  --header 'X-Api-Key: <x-api-key>'
{
  "teams": [
    {
      "id": "aaaabbbb-cccc-dddd-eeee-ffff00001111",
      "name": "Sales",
      "first_response_time": {
        "present": 123,
        "previous": 123,
        "change_percentage": 123
      },
      "resolution_time": {
        "present": 123,
        "previous": 123,
        "change_percentage": 123
      },
      "assigned": {
        "present": 123,
        "previous": 123,
        "change_percentage": 123
      },
      "closed": {
        "present": 123,
        "previous": 123,
        "change_percentage": 123
      }
    }
  ],
  "summary": {},
  "total_count": 3
}
Deprecated: This is a v1 endpoint. It will continue to work, but we recommend migrating to the v2 equivalent for improved REST compliance (correct HTTP status codes, consistent response envelopes, and hyphenated URLs).
Replace {your-subdomain} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying subdomain.

Headers

X-Api-Key
string
default:your-api-key
required

X-Api-Key is used to authenticate requests using an API key. Provide your API key in this header to access protected endpoints. Refer to Authentication for more information.

Query Parameters

page_number
integer

Retrieve paginated results by specifying the desired page number. If this parameter is absent, all results will be returned.

range_type
enum<string>
default:last_30_days

Time range for the report. Use custom with start_date and end_date for custom date ranges.

Available options:
last_7_days,
last_30_days,
last_24_hours,
this_week,
last_week,
this_month,
last_month,
this_quarter,
last_quarter,
this_year,
last_year,
all_time,
custom
start_date
string<date>

Start date for custom date range (YYYY-MM-DD format). Required when range_type is custom.

Example:

"2025-10-01"

end_date
string<date>

End date for custom date range (YYYY-MM-DD format). Required when range_type is custom.

Example:

"2025-10-31"

Response

200 - application/json

OK - Request succeeded

teams
object[]
summary
object

Aggregated summary metrics for all teams, containing first_response_time, resolution_time, assigned, and closed objects, each with present, previous, and change_percentage values.

total_count
integer
Example:

3