> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update site

> Update a site's name, domain, or settings.

Updates the configuration of an existing site.

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the site.
</ParamField>

## Request body

<ParamField body="name" type="string">
  New display name for the site.
</ParamField>

<ParamField body="domain" type="string">
  Updated domain. Must be unique if changed.
</ParamField>

<ParamField body="is_active" type="boolean">
  Activate or deactivate the site.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "880e8400-e29b-41d4-a716-446655440003",
      "name": "Main Website Updated"
    }
  }
  ```
</ResponseExample>
