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",
"tax_value": 0.19,
"enable_per_product_tax": true,
"exclude_out_of_stock": true,
"language": "en"
}'
{
"currency": "COP",
"tax_value": 0.19,
"exclude_out_of_stock": true,
"enable_per_product_tax": true,
"language": "en"
}
Configure your store’s currency, taxes, language, and product availability.
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",
"tax_value": 0.19,
"enable_per_product_tax": true,
"exclude_out_of_stock": true,
"language": "en"
}'
{
"currency": "COP",
"tax_value": 0.19,
"exclude_out_of_stock": true,
"enable_per_product_tax": true,
"language": "en"
}
Lets you configure the currency, tax rate, language, and other global settings for your store. You can send one or more fields in the same request.Documentation Index
Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
Use this file to discover all available pages before exploring further.
USD, EUR, COP, MXN.0 and 1. Example: 0.15 for 15%, 0.19 for 19%.tax field. If the product does not have a rate configured, tax_value is used as a fallback.friendly_message in the search endpoints). Allowed values: es, en, pt.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",
"tax_value": 0.19,
"enable_per_product_tax": true,
"exclude_out_of_stock": true,
"language": "en"
}'
{
"currency": "COP",
"tax_value": 0.19,
"exclude_out_of_stock": true,
"enable_per_product_tax": true,
"language": "en"
}
USD. If you haven’t configured a currency, prices will be displayed in US dollars.
| 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 |
net_price = price / (1 + tax_value)
tax = price - net_price
$11.50 with rate 0.15 (15%):
$11.50 / 1.15 = $10.00$11.50 - $10.00 = $1.50tax_value, a default value is assigned based on the store’s currency:
| Currency | Default rate |
|---|---|
COP | 19% (0.19) |
PEN | 18% (0.18) |
MXN | 16% (0.16) |
| Others | 15% (0.15) |
enable_per_product_tax is active, you can assign an individual tax rate to each product using the tax field in the products endpoint.
tax > 0, that rate is used.tax = 0 or it has not been configured, the store’s tax_value is used as a fallback.has_tax: false.tax_breakdown) grouped by rate when this option is active.
exclude_out_of_stock controls whether out-of-stock products appear in your store’s search results:
true (default): out-of-stock products are hidden from search endpoints.false: out-of-stock products keep appearing. Useful when you want shoppers to see the entire catalog even if there is no inventory available.stock_type = "unlimited" are always considered available.
language sets the store’s default language and is used to localize API responses.
| Value | Language |
|---|---|
es | Spanish (default) |
en | English |
pt | Portuguese |
friendly_message returned by the search endpoints (multi_search, v2_search). The submitted value is normalized to lowercase.
{app_id} with your store ID and <API_KEY> with the token provided by Jelou.Was this page helpful?