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

# Atualizar um estabelecimento

> Atualização parcial de um estabelecimento. Apenas os campos enviados são alterados.

<ParamField header="x-api-key" type="string" required>
  API key do BOH com escopo `catalog:write`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID do vendor.</ParamField>
<ParamField path="storeId" type="string" required>UUID do estabelecimento.</ParamField>
<ParamField body="name" type="string">Novo nome.</ParamField>
<ParamField body="code" type="string">Novo código curto.</ParamField>
<ParamField body="timezone" type="string">Novo identificador de fuso horário IANA.</ParamField>
<ParamField body="external_store_id" type="string">Novo identificador externo.</ParamField>
<ParamField body="tax_id" type="string">Novo identificador fiscal (RUC, CNPJ, CUIT, NIT, RUT, RFC…, máx. 64 chars). Envie `null` para limpar.</ParamField>
<ParamField body="metadata" type="object">Substitui o objeto metadata existente.</ParamField>
<ParamField body="external_user_id" type="string">Ator para auditoria.</ParamField>

<RequestExample>
  ```json theme={null}
  {
    "name": "Cozinha Principal - Atualizada",
    "external_user_id": "admin_01"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "str_principal_01...",
    "name": "Cozinha Principal - Atualizada",
    "status": "ACTIVE"
  }
  ```
</ResponseExample>
