Skip to main content
POST
/
api
/
public
/
settings
/
value
/
{name}

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

name
string
required
The setting name/key to update. URL-encoded.

Request Body

Value
string
required
The new value for the setting.

Response

Returns a 200 OK on success.

TypeScript Integration

import endpoints from '@/api/endpoints'

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