Skip to main content
POST
/
merchant
/
setup_multi_currencies
Multi Currencies Setup
curl --request POST \
  --url https://api.unibee.dev/merchant/setup_multi_currencies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "multiCurrencyConfigs": [
    {
      "currencyConfigs": [
        {
          "autoExchange": true,
          "currency": "<string>",
          "exchangeRate": 123
        }
      ],
      "defaultCurrency": "<string>",
      "lastUpdateTime": 123,
      "name": "<string>"
    }
  ]
}'
{
  "code": 123,
  "data": {
    "multiCurrencyConfigs": [
      {
        "currencyConfigs": [
          {
            "autoExchange": true,
            "currency": "<string>",
            "exchangeRate": 123
          }
        ],
        "defaultCurrency": "<string>",
        "lastUpdateTime": 123,
        "name": "<string>"
      }
    ]
  },
  "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
multiCurrencyConfigs
object[]

Merchant's MultiCurrencies

Response

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