The retention value report shows the count of new customers. per aggregation bucket and the corresponding per customer value over time.
aggregationField required | string Report aggregation field. |
aggregationPeriod required | string Report aggregation period. |
periodStart required | string <date> Report start date. |
periodEnd required | string <date> Report end date. |
includeRefunds | string If to include refunds. |
includeDisputes | string If to include disputes. |
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. |
sort | Array of strings The collection items sort field and order (prefix with "-" for descending sort). |
criteria | string Criteria parameter for requesting a collection. |
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: 'month', aggregationPeriod: 'month', periodStart: '2016-09-01T00:00:00Z', periodEnd: '2017-09-01T00:00:00Z', includeRefunds: true, includeDisputes: false, limit: 20, offset: 0, tz: 0 }; const report = await api.reports.getRetentionValue(params);
{- "data": [
- {
- "aggregationValue": "string",
- "customersCount": 0,
- "periods": [
- {
- "period": 0,
- "retentionAverage": 0,
- "transactionsCount": 0,
- "transactionsValue": 0
}
]
}
]
}