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

# Update Setting

> Updates a single portal setting value.

# Update Setting

Updates the value of a specific portal configuration setting for the authenticated customer's context.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

<ParamField path="name" type="string" required>
  The setting name/key to update. URL-encoded.
</ParamField>

## Request Body

<ParamField body="Value" type="string" required>
  The new value for the setting.
</ParamField>

## Response

Returns a `200 OK` on success.

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

await httpClient.post(endpoints.settings.set('PreferredLanguage'), {
  Value: 'en',
})
```
