Get invoice commissions

Shows merchant-related (invoices) commissions.

POST https://app.thedex.cloud/api/v1/commissions/invoice

Headers

Request Body (Empty JSON)

{
   "merchantId": "String",
   "amountInPayCurrencyCommission": Number,
   "merchantIncomingCommission": Number,
   "depositBlockchainFeeType": "String",
   "monetaries":[
      {
         "monetary":"String",
         "rateCommission": Number,
         "depositBlockchainFee":Number,
         "complexCommission": Number
      },
      ...
   ]
}

Request curl:

curl --location 'https://app.thedex.cloud/api/v1/commissions/invoice' \
--header 'X-EX-APIKEY: <string>' \
--header 'X-EX-PAYLOAD: <string>' \
--header 'X-EX-SIGNATURE: <string>' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{}'

Response JSON attributes:

Last updated