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"
}
Configure your store’s currency using an ISO 4217 code.
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"
}
USD, EUR, COP, MXN.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"
}
| Code | Currency |
|---|---|
USD | US Dollar |
EUR | Euro |
COP | Colombian Peso |
MXN | Mexican Peso |
PEN | Peruvian Sol |
CLP | Chilean Peso |
BRL | Brazilian Real |
ARS | Argentine Peso |
{app_id} with your store ID and <API_KEY> with the token provided by Jelou.Was this page helpful?