> ## 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.

# Actualizar un establecimiento

> Actualización parcial de un establecimiento. Solo se cambian los campos que envías.

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

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

<ParamField path="storeId" type="string" required>
  UUID del establecimiento.
</ParamField>

<ParamField body="name" type="string">Nuevo nombre.</ParamField>
<ParamField body="code" type="string">Nuevo código corto.</ParamField>
<ParamField body="timezone" type="string">Nuevo identificador de zona horaria IANA.</ParamField>
<ParamField body="external_store_id" type="string">Nuevo identificador externo.</ParamField>
<ParamField body="tax_id" type="string">Nuevo identificador fiscal (RUC, CNPJ, CUIT, NIT, RUT, RFC…, máx. 64 chars). Envía `null` para borrar.</ParamField>
<ParamField body="metadata" type="object">Reemplaza el objeto metadata existente.</ParamField>
<ParamField body="external_user_id" type="string">Actor para auditoría.</ParamField>

<RequestExample>
  ```json theme={null}
  {
    "name": "Cocina Principal - Actualizada",
    "external_user_id": "usuario_admin_01"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "str_principal_01...",
    "name": "Cocina Principal - Actualizada",
    "status": "ACTIVE",
    "updated_at": "2026-08-07T15:00:00.000Z"
  }
  ```
</ResponseExample>
