Skip to main content
PATCH
/
api
/
v1
/
apps
/
{app_id}
/
settings
curl -X PATCH "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/settings" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "currency": "COP"
  }'
{
  "currency": "COP"
}
Allows you to configure the currency used by your store. The currency applies to product prices and is used to format values in the store.
app_id
string
required
Your store ID in Jelou Shop.
currency
string
required
Currency code in ISO 4217 format (exactly 3 characters). Example: USD, EUR, COP, MXN.
The default currency for every store is USD. If you haven’t configured a currency, prices will be displayed in US dollars.
curl -X PATCH "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/settings" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "currency": "COP"
  }'
{
  "currency": "COP"
}

Common currencies

CodeCurrency
USDUS Dollar
EUREuro
COPColombian Peso
MXNMexican Peso
PENPeruvian Sol
CLPChilean Peso
BRLBrazilian Real
ARSArgentine Peso
Replace {app_id} with your store ID and <API_KEY> with the token provided by Jelou.