Get Invoice creation ways

Lists all ways on invoice creation

POST https://app.thedex.cloud/api/v1/info/invoice/creation/ways

Headers

NameTypeDescription

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

NameTypeDescription

nonce*

String

request*

String

[
   {
      "name":"String",
      "value":"Integer"
   }
]

Example:

[
   {
      "name": "UI",
      "value": 0
   },
   {
      "name": "API",
      "value": 1
   },
   {
      "name": "MERCHANT",
      "value": 2
   },
   {
      "name": "WALLET_STATIC",
      "value": 3
   },
   {
      "name": "PAYMENT_BUTTON_WAY",
      "value": 4
   },
   {
      "name": "DONATION_BUTTON_WAY",
      "value": 5
   },
   {
      "name": "EMAIL_CONFIRM_WAY",
      "value": 6
   }
]

Request curl:

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

Response JSON attributes:

"name"

String

Name of invoice creation way

"value"

Integer

Index of creation way

Last updated