Fetch payout commissions

Shows all commissions on payout creation for the requested user

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

Headers

Name
Type
Description

X-EX-APIKEY*

String

Your API key

X-EX-PAYLOAD*

String

Body to base64

X-EX-SIGNATURE*

String

Encrypted body with the secret key

Request Body (empty JSON)

{ }

Request JSON attributes

Name
Type
Description

-

-

-

Response Body

Response JSON attributes:

Name

Type

Description

"userPayoutCommission"

Number

Payout commission of User

"payoutBlockchainFee"

JSON Array

An array of blockchainFee by monetary

"payoutBlockchainFee.monetary"

String

payCurrency (monetary)

"payoutBlockchainFee.blockchainFee"

Number

Blockchain fee that will be withdrawn from user balance by monetary

Request curl:

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

Example Curl

curl --location --request POST 'https://app.thedex.cloud/api/v1/commissions/payout' \
--header 'X-EX-APIKEY: test_api_key_123456' \
--header 'X-EX-PAYLOAD: e30=' \
--header 'X-EX-SIGNATURE: dummy_signature_abc123' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data-raw '{}'

Last updated