Get Customer Payout Accounts
This process will get the customer account number and branchcode list has been used for an earlier payment to let customer take account ID from list to create Payout.
GET /api/customer/account
Query Parameters
Name
Type
Description
asset*
String
Account currency
Example: AUD
customer_id*
String
Customer short ID.
Example: WlgXhMXPB
Headers
Name
Type
Description
X-ApiKey*
String
Merchant API key provide by DCX
X-ApiSecret*
String
Merchant API secret provide by DCX
{
"status": "ok",
"row_count": 3,
"accounts": [
{
"account_id": "63e118dcd28b3b3f1a6aa131",
"name": "Florian Welch",
"email": "[email protected]",
"account_number": "XXXX5678",
"branch_code": "XXX209"
},
{
"account_id": "63e11530d28b3b3f1a6a5550",
"name": "Florian Welch",
"email": "[email protected]",
"account_number": "XXXX5678",
"branch_code": "XXX219"
},
{
"account_id": "63e11522d28b3b3f1a6a53da",
"name": "Florian Welch",
"email": "[email protected]",
"account_number": "XXXX5678",
"branch_code": "XXX219"
}
]
}Last updated