Load
Get history of loads by user token
This GET endpoint is used to retrieve a transaction history of all loads that were made to the provided user token, including scheduled loads. <br> You can use this endpoint to obtain a comprehensive history of loads for the user token, allowing you to track and analyze their incoming payments over time. <br> To use this endpoint, you need to provide the user_token as a parameter in the URL Path. <br> The endpoint will then return a JSON array of load transactions, each including transactions details.
get/payout/load/{user_token}
Path parameters
user_tokenstring required
The user token that needs to be fetched.
Headers
Idempotency-Keystring
Unique key to prevent duplicate processing
Response
Successful operation.
Example response
[
{
"load_token": "ld_ba4275f2-bae1-488d-9d6f-20af1cd83574",
"time_of_load": "2019-07-07T23:03:05",
"client_load_id": "aEjn345",
"source_token": "123e4567-e89b-12d3-a456-426614174000",
"wallet_token": "123e4567-e89b-12d3-a456-426614174000",
"amount": 100.5,
"source_currency_code": "USD",
"notes": "Commission payment for July",
"status": "COMPLETED",
"metadata": {
"group_id": 541
}
}
]