For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add wallet to whitelist

Adds specific wallet to whitelist, only if "Payout API access" enabled in merchant preferences

POST https://app.thedex.cloud/api/v1/preferences/merchant/whitelist/wallets/add

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

{ 
    "wallet":"String"
}

Request JSON attributes

Name
Type
Description

wallet*

String

Wallet address

Response Body (Empty JSON)

Response JSON attributes

Name
Type
Description

-

-

-

Request Curl

curl --location --request POST 'https://app.thedex.cloud/api/v1/preferences/merchant/whitelist/wallets/add' \
--header 'X-EX-APIKEY: <string>' \
--header 'X-EX-PAYLOAD: <string>' \
--header 'X-EX-SIGNATURE: <string>' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{
    "wallet": "wallet_address"
}'

Example Curl

Last updated