Data - Dashboard widget data
Use this endpoint to obtain details on Adaptix's dashboard statistical data.
Get list of available widget types
HTTP Request
GET /data
Expected Response Code: 200
Get an individual widget data by type.
HTTP Request
GET /data/{type}?dateFrom={YYYY-mm-dd}&dateTo={YYYY-mm-dd}&timeUnit={m}
Returns response which can be directly visualized by the chartJS library.
Response
Expected Response Code: 200
HTTP Request
GET /data/{type}?dateFrom={YYYY-mm-dd}&dateTo={YYYY-mm-dd}&timeUnit={m}&dataFormat={raw}
Returns raw format which can be more easily processed.
Response
Expected Response Code: 200
"Emails in time" widget
Filter parameters
filter[companyId] (int) Filter only emails from contacts assigned to provided company.
filter[automationId (int) Filter only emails from contacts that were sent as part of provided automation.
filter[segmentId] (int) Filter only emails from contacts assigned to provided segment.
Dataset parameter
dataset (array) - sent - opened - unsubscribed - clicked - bounced - failed Provide more datasets in response based on request.
HTTP Request:
GET /api/data/emails.in.time?dateFrom={YYYY-mm-dd}&dateTo={YYYY-mm-dd}&timeUnit={m}&filter[automationId]={int}&filter[companyId]={int}&filter[segmentId]={int}&withCounts&dataset[]=sent&dataset[]=opened&dataset[]=unsubscribed&dataset[]=clicked
"Sent email to contacts" widget
Filter parameters
filter[companyId] (int) Filter only emails from contacts assigned to provided company.
filter[automationId (int) Filter only emails from contacts that were sent as part of provided automation.
filter[segmentId] (int) Filter only emails from contacts assigned to provided segment.
HTTP Request:
GET /api/data/sent.email.to.contacts?dateFrom={YYYY-mm-dd}&dateTo={YYYY-mm-dd}&timeUnit={m}&filter[automationId]={int}&filter[companyId]={int}&filter[segmentId]={int}&limit=10&offset=0
"Most hit email redirects" widgets
Filter parameters
filter[companyId] (int) Filter only emails from contacts assigned to provided company.
filter[automationId (int) Filter only emails from contacts that were sent as part of provided automation.
filter[segmentId] (int) Filter only emails from contacts assigned to provided segment.
HTTP Request:
GET /api/data/most.hit.email.redirects?dateFrom={YYYY-mm-dd}&dateTo={YYYY-mm-dd}&timeUnit={m}&filter[automationId]={int}&filter[companyId]={int}&filter[segmentId]={int}&limit=10&offset=0
Available data URL query params
Name | Type | Example | Description |
---|---|---|---|
timezone | string | America/New_York | PHP timezone |
dateFrom | string | 2016-28-03 | Date from in the YYYY-mm-dd HH:ii:ss format |
dateTo | string | 2016-28-04 | Date to in the YYYY-mm-dd HH:ii:ss format |
timeUnit | string | m | Date/Time unit. Available options: Y , m , W , d , H |
limit | int | 10 | Limit of the table widget items |
filter | array | [lead_id => 23] | Filters which should be applied to the SQL query |