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

> Atualização parcial de um item do catálogo.

<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="itemId" type="string" required>UUID do item.</ParamField>
<ParamField body="name" type="string">Novo nome.</ParamField>
<ParamField body="base_unit_id" type="string">Nova unidade de medida base.</ParamField>
<ParamField body="unit_group_id" type="string">Novo grupo de unidades.</ParamField>
<ParamField body="external_item_id" type="string">Novo identificador externo.</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": "Tomate Vermelho" }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  { "id": "itm_01...", "name": "Tomate Vermelho", "status": "ACTIVE" }
  ```
</ResponseExample>
