Skip to main content

Get transaction count by customer

This endpoint allows to get transaction counts grouped by customers

Request

POST <API base url>/customers/transactions

Body

{
"customerIds": required string[],
"from": required date,
"to": required date,
"issuerCodes": optional string[],
"amount": optional number,
}

Response

On success:

{
"value": required array of {
"customerId": string,
"count": number
}
}