Retrieves all report groups accessible to the current user.
Use this endpoint to list report groups for organizing and categorizing reports.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
ReportGroupResponse
| Property | Description | Type | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| reportGroupCode | Short code identifying the report group (e.g., “SAVED”, “SYSTEM”) | string | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| reportGroupId | Unique numeric identifier of the report group | integer (int32) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| reportGroupInfo | Display name of the report group | string | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| reports | List of reports belonging to this group | ReportChild[] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
ReportChild properties
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example Response
[
{ "reportGroupCode": "string", "reportGroupId": 1, "reportGroupInfo": "string", "reports": [
{ "description": "string", "exportFormats": [], "isLandscape": false, "lastUpdated": "2026-06-29", "reportCode": "string", "reportId": 1, "reportInfo": "string", "reportSource": "string", "reportType": {}, "tags": [], "version": "string"
}
]
}
]