> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fire.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar niveles de reorden

> Devuelve todos los niveles de reorden configurados para el vendor.

<ParamField header="x-api-key" type="string" required>
  API key de BOH con scope `procurement:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID del vendor.</ParamField>

<ParamField query="store_id" type="string">Filtrar por establecimiento.</ParamField>
<ParamField query="supplier_id" type="string">Filtrar por proveedor.</ParamField>

<ResponseField name="par_levels" type="object[]">
  Array de niveles de reorden: `item_id`, `store_id`, `supplier_id`, `par_quantity`, `unit_id`, `reorder_point`.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "par_levels": [
      {
        "item_id": "itm_01...",
        "store_id": "str_principal_01...",
        "supplier_id": "sup_01...",
        "par_quantity": 20,
        "unit_id": "unit_kg_01...",
        "reorder_point": 5
      }
    ]
  }
  ```
</ResponseExample>
