Get Customer Payout Accounts
This process will get the customer account number and branchcode list has been used for an earlier payment.
The customer can take account ID from list to create Payout.
Request query prarameter definitions
customer_id* : Customer short ID.
asset* : Account currency.
*is mandatory prarameter
GET query prarameter
https://cryptovoucher-sandbox.txengine.net/api/customer/account?customer_id=<customershortid>&asset=<accountasset>Response body
{
"status": "ok",
"row_count": 3,
"accounts": [
{
"account_id": "63e118dcd28b3b3f1a6aa131",
"name": "Florian Welch",
"email": "[email protected]",
"account_number": "98653163",
"branch_code": "014209",
},
{
"account_id": "63e11530d28b3b3f1a6a5550",
"name": "Florian Welch",
"email": "[email protected]",
"account_number": "65873256",
"branch_code": "365487",
},
{
"account_id": "63e11522d28b3b3f1a6a53da",
"name": "Florian Welch",
"email": "[email protected]",
"account_number": "03658002",
"branch_code": "692587",
}
]
}Last updated