curl --request PATCH \
--url https://app.sideshift.app/api/embed/settings/currencies \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"enabled": true
}
'
{
"success": true,
"data": {
"environment": "live",
"multiCurrencyEnabled": false,
"rolloutAvailable": true,
"enabled": true
}
}Opt the brand into or out of multi-currency
Accepts only a boolean enabled. Company and environment come from the API key. Live and sandbox preferences are separate. Repeating a PATCH is safe. An enabled preference does not override rollout availability or payout permissions. Opt-out blocks new estimates, quotes, and conversions while preserving access to funded foreign balances and recovery of pending conversions. No automatic currency conversion occurs.
PATCH
/
settings
/
currencies
curl --request PATCH \
--url https://app.sideshift.app/api/embed/settings/currencies \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"enabled": true
}
'
{
"success": true,
"data": {
"environment": "live",
"multiCurrencyEnabled": false,
"rolloutAvailable": true,
"enabled": true
}
}