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

# Unarchive a supplier

> Restores an archived supplier to active status.

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

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

<ParamField path="supplierId" type="string" required>
  Supplier UUID.
</ParamField>

<ParamField body="external_user_id" type="string">
  Actor for audit trail.
</ParamField>

<ResponseField name="ok" type="boolean">
  `true` on success.
</ResponseField>

<RequestExample>
  ```json theme={null}
  {
    "external_user_id": "user_admin_01"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "ok": true
  }
  ```

  ```json 404 theme={null}
  {
    "error": {
      "kind": "supplier_not_found",
      "message": "Supplier not found"
    }
  }
  ```
</ResponseExample>
