Ask something in the search bar to get a quick answer from our AI model

Transactions by user, type and date range

This feature allows merchants to query transactions made by a specific user within a defined date range.

Key Features

Filter by transaction group type

You can filter results using the following queryType values:

  • INCOMES

  • EXPENSES

  • ALL

The API will return only completed transactions of the specified type.

These queryType values include the following operation types:

  • INCOMES β†’ REFUND, OCT

  • EXPENSES β†’ PAYMENT

  • ALL β†’ PAYMENT, REFUND, OCT

Date format

Accepted date format examples:

  • 2025-06-14T00:00:00Z

  • 2025-06-19T00:00:00Z

Date range

You can define a startDate and endDate to limit the query. If endDate is not provided, the system will use the current date by default (LocalDate.now()).

Efficient pagination

The API supports paginated results using base64-encoded tokens, allowing secure and efficient navigation through result pages.

Notes

  • If endDate is not provided, the system will use the current date.

  • If queryType is not specified, it defaults to ALL.

  • If a paginationToken is present, startDate will be ignored on the next page request.

  • Both status and type values must exactly match what the API expects, or a 400 error will be returned.

Last updated