Merchant Client Withdrawal

The POST endpoints give you responses to merchant client withdrawal and merchant client withdrawal fees.

POST https://localhost:5001/api/merchantClientWithdrawal

Headers

Name
Type
Description

Authorization*

ApiKey {{SecretKey}}

Request Body

Name
Type
Description

merchantClientEmailAddress*

destinationAddress*

0xc504c6F55c249a1E59298677C7E17a14F5d63989

amount*

6

currency*

BUSD

networkChain*

BSC

merchantReference*

MerchantRef40

publicKey*

YOUR_PUBLIC_KEY

{
  "status": 1,
  "message": "",
  "data": {
    "destinationAddress": "0xc504c6F55c249a1E59298677C7E17a14F5d63989",
    "paymentCurrency": 6,
    "networkChain": 1,
    "withdrawnAmount": 1,
    "transactionCharge": 0,
    "withdrawnAmountRequested": 1,
    "paymentDescription": null,
    "merchantTransactionReference": null,
    "switchWalletTransactionReference": "E5D5822E7F3C462",
    "transactionChargeCurrency": 3
  }
}
Parameters
Type
Definitions

merchantClientEmailAddress

string

Required This is the email address of the merchant.

destinationAddress

string

Required This is the address the funds is sent to.

amount

decimal

Required This is the amount of funds to be withdrawn.

currency

enum

Required This is the different supported crypto currencies.

merchantReference

string

Required This is the merchant reference from the merchant.

Last updated