Retrieve a DCC markup report.
aggregationField required | string Report aggregation field. |
periodStart required | string Report start date. |
periodEnd required | string Report end date. |
limit | integer [ 0 .. 1000 ] The collection items limit. |
offset | integer >= 0 The collection items offset. |
filter | string The collection items filter requires a special format. Use "," for multiple allowed values. Use ";" for multiple fields. See the filter guide for more options and examples about this format. |
Report was retrieved successfully.
Pagination-Total | integer Total items count. Example: 332 |
Pagination-Limit | integer Items per page limit. Example: 100 |
Pagination-Offset | integer Pagination offset. Example: 2 |
Unauthorized access, invalid credentials were used.
Access forbidden.
const params = { aggregationField: 'day', periodStart: '2017-09-21T00:00:00Z', periodEnd: '2017-09-28T23:59:59Z', limit: 20, offset: 0, filter: `gatewayAccounts:f9b4fa10-df1d-48a3-85b3-ff6bd7ce0ed2; \ transactionResult:approved,canceled,declined,unknown`, tz: 0 }; const report = await api.reports.getDccMarkup(params);
{- "data": [
- {
- "aggregationValue": "string",
- "selectedCount": 0,
- "selectedSum": 0,
- "rejectedCount": 0,
- "rejectedSum": 0,
- "unknownCount": 0,
- "unknownSum": 0
}
]
}