Saltar al contenido principal
POST
/
ecommerce
/
v2
/
apps
/
{app_id}
/
branches
/
search
curl -X POST "https://gateway.jelou.ai/ecommerce/v2/apps/{app_id}/branches/search?page=1&limit=20" \
  -H "x-api-key: TU_CLAVE_API" \
  -H "Content-Type: application/json" \
  -d '{
    "search": {
      "value": "centro",
      "case_sensitive": false
    },
    "filters": [
      { "field": "status", "operator": "=", "value": true }
    ],
    "includes": [
      { "relation": "products" }
    ]
  }'
app_id
string
requerido
ID de tu tienda en Jelou Shop.
page
integer
predeterminado:"1"
Número de página a retornar.
limit
integer
predeterminado:"15"
Cantidad de resultados por página (máx. 100).
Objeto de búsqueda por texto.
filters
object[]
Lista de filtros a aplicar.
includes
object[]
Lista de relaciones a expandir en la respuesta.
curl -X POST "https://gateway.jelou.ai/ecommerce/v2/apps/{app_id}/branches/search?page=1&limit=20" \
  -H "x-api-key: TU_CLAVE_API" \
  -H "Content-Type: application/json" \
  -d '{
    "search": {
      "value": "centro",
      "case_sensitive": false
    },
    "filters": [
      { "field": "status", "operator": "=", "value": true }
    ],
    "includes": [
      { "relation": "products" }
    ]
  }'
Campos buscables: name, code Campos filtrables: status, code Relaciones disponibles: products