List of all transactions in the business
The API key to use for authentication
Search for a transaction by customer name, phone number, or transaction id
"John Doe"
Cursor for pagination, representing the last item from the previous page
"eyJpZCI6IjEyMyJ9"
The customer id
"cus_12345"
Array of transaction statuses to filter by. Available statuses: 'pending', 'completed', 'failed'
["pending", "completed"]
Amount range as [min, max] to filter transactions by monetary value
[100, 1000]
Array of specific amounts (as strings) to filter transactions by exact values
["150.75", "299.99"]
The number of transactions to return (1-100)
1 <= x <= 100
10
Start date (inclusive) for filtering transactions in ISO 8601 format
"2024-04-01T00:00:00.000Z"
End date (inclusive) for filtering transactions in ISO 8601 format
"2024-04-30T23:59:59.999Z"
Sorting order as a tuple: [field, direction]. Available fields: id, amount, status, createdAt, paidAt, failedAt. Direction must be: asc, desc
2
elements["createdAt", "desc"]
List of all transactions
The response is of type object
.