Retrieve a dispute delays in days report, how much time between a. transaction and a dispute.
aggregationField required | string Report will be aggregated by this 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.
Unauthorized access, invalid credentials were used.
Access forbidden.
const params = { aggregationField: 'website', periodStart: '2017-09-22T00:00:00Z', periodEnd: '2017-09-29T23:59:59Z', limit: 20, offset: 0, tz: 0 }; const report = await api.reports.getTransactionsTimeDispute(params);
{- "data": [
- {
- "aggregationFieldValue": "string",
- "25th": 0,
- "50th": 0,
- "75th": 0
}
]
}