Reporting
Reporting APIs
Our Reporting APIs allow you to fetch various different reports. The Report APIs are available as a GraphQL API, which can be accessed as follows:
Endpoint: /v1/reporting/graphql
Method: POST
Headers:
| Header | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer access token |
Request Body
| Name | Type | Description |
|---|---|---|
| query | String | GraphQL queries formed for the report |
| operationName | String | (Optional) Name of the operation to be executed. Only required if the query contains multiple operations. |
| variables | String | (Optional) Variable values. Only required if variables are defined in the query. |
Common Query Parameters
| Name | Type | Description |
|---|---|---|
| startDate | String | (Optional) Resource Creation Time, ISO 8601 Date Time format. |
| endDate | String | (Optional) Resource Creation Time, ISO 8601 Date Time format. |
| limit | Number | Total records per page. Default: 500. Max: 10000. |
| offset | Number | Number of records to skip. |