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

> Actualización parcial de un proveedor. Solo se cambian los campos enviados.

<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="supplierId" type="string" required>UUID del proveedor.</ParamField>

<ParamField body="name" type="string">Nuevo nombre.</ParamField>
<ParamField body="external_supplier_id" type="string">Nuevo identificador externo.</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": "Proveedor Fresco S.A. - Actualizado",
    "external_user_id": "usuario_admin_01"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "sup_01j5k...",
    "name": "Proveedor Fresco S.A. - Actualizado",
    "status": "ACTIVE"
  }
  ```
</ResponseExample>
