Transactions history
This GET endpoint is used to retrieve a list of all transactions, including payouts, loads, and spendbacks, for a provided user with the provided user token. <br> You can use this endpoint to obtain a comprehensive history of transactions for the provider user, allowing you to track and analyze their payment activities over time. <br> To use this endpoint, you need to provide the user_token as a parameter in the URL Path. <br> The response will contain a JSON array of transaction objects, each including transactions details.
Query parameters
Number of records to return. Defaults to 10 if no value is provided
Starting date
Ending date
Page number
Filter particular types of transactions. Comma separated to include multiple types
Filter transactions to include only provided wallet token.
Whether to show transactions from all clients
Headers
Unique key to prevent duplicate processing
Response
Succesful operation.
Example response
{
"transactions": [
{
"token": "123e4567-e89b-12d3-a456-426614174000",
"type": "payout",
"source_amount": 50.1,
"source_currency_code": "USD",
"destination_amount": 44.99,
"fee": 2.98,
"status": "READY_FOR_PICKUP",
"notes": "Purchase of Candles. Order #14930",
"payer_name": "Elektra",
"pickup_code": "343432",
"source_token": "123e4567-e89b-12d3-a456-426614174000",
"destination_token": "123e4567-e89b-12d3-a456-426614174000"
}
]
}