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
The setting name/key to update. URL-encoded.
Request Body
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',
})