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:
INCOMESEXPENSESALL
The API will return only completed transactions of the specified type.
These queryType values include the following operation types:
INCOMES β
REFUND,OCTEXPENSES β
PAYMENTALL β
PAYMENT,REFUND,OCT
Date format
Accepted date format examples:
2025-06-14T00:00:00Z2025-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
endDateis not provided, the system will use the current date.If
queryTypeis not specified, it defaults toALL.If a
paginationTokenis present,startDatewill be ignored on the next page request.Both
statusandtypevalues must exactly match what the API expects, or a 400 error will be returned.
Last updated