Merchant Client Withdrawal
Place a merchant client withdrawal Request.
The endpoint places a withdrawal Request for a merchant on her generated Wallet address tied to an email address
Withdrawal Request
POST
BaseUrl/api/merchantClientWithdrawal
Request Body
Name
Type
Description
amount*
Numbers
10
currency*
Enum
3
destinationAddress*
String
Client Wallet_Address
merchantClientEmailAddress*
String
Client Email Address
networkChain*
Enum
1
merchantReference*
String
X-your-Unique-Ref('uuid'-preferably)
publicKey
String
your PublicKey
{
"status": 1,
"message": "string",
"data": {
"destinationAddress": "Client Wallet_Address",
"paymentCurrency": 1,
"networkChain": 1,
"withdrawnAmount": 0,
"transactionCharge": 0,
"withdrawnAmountRequested": 0,
"paymentDescription": "string",
"merchantTransactionReference": "X-your-Unique-Ref('uuid'-preferably)",
"switchWalletTransactionReference": "our-Unique-Ref",
"transactionChargeCurrency": 1
}
}
Code Gist
Last updated