Reports
Use this endpoint to obtain details on Adaptix's reports.
Get Report
Get an individual report by ID.
HTTP Request
GET /reports/ID
Or define query params like this:
GET /reports/3?dateFrom=2017-01-01&dateTo=2018-01-01&limit=5&page=3
Response
Expected Response Code: 200
See JSON code example.
Report Properties
Name | Type | Description |
---|---|---|
totalResults | int | Amount of results in the defined date range. Default date range is from 30 days ago to now |
data | array | Holds rows of the report specific to each report data type and selected columns |
dataColumns | array | Array of supported column names for the report data type |
limit | int | Currently applied limit |
page | int | Currently applied page |
dateFrom | datetime | Currently applied date from filter |
dateTo | datetime | Currently applied date to filter |
List Reports
Returns a list of contact reports available to the user. This list is not filterable.
HTTP Request
GET /reports
Response
Expected Response Code: 200
See JSON code example.
Report Properties
Name | Type | Description |
---|---|---|
id | int | ID of the report |
name | string | The report name |
description | string | The report description |
system | boolean | If true then the report is visible to all users. If false then only creator can see this report |
isScheduled | boolean | Scheduled reports send report emails as the user defines |
source | string | Report data source type |
columns | array | List of selected columns for this particular report |
filters | array | Filters applied on this report |
tableOrder | array | Ordering applied on this report |
graphs | array | Graphs defined for this report. API won't return graphs |
groupBy | array | Group by rules applied for this report |
settings | array | Additional settings for the UI layout |
aggregators | array | Aggregation rules applied on this report |
scheduleUnit | string or null | Unit for the scheduler |
toAddress | string or null | Email address for the scheduler |
scheduleDay | string or null | Day for the scheduler |
scheduleMonthFrequency | string or null | Frequency for the scheduler |