Skip to main content
POST
/
merchant
/
amount_multi_currencies_exchange
Amount Multi Currencies Exchange
curl --request POST \
  --url https://api.unibee.dev/merchant/amount_multi_currencies_exchange \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123,
  "currency": "<string>"
}'
{
  "code": 123,
  "data": {
    "multiCurrencyConfigs": [
      {
        "amount": 123,
        "autoExchange": true,
        "currency": "<string>",
        "disable": true,
        "exchangeRate": 123
      }
    ]
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
amount
integer
required

Amount

currency
string<string>
required

The Default Currency

Response

200 - application/json
code
integer
data
object
message
string<string>
redirect
string<string>
requestId
string<string>