Skip to main content
POST
/
api
/
public
/
settings
/
value
/
{name}
Update Setting
curl --request POST \
  --url https://spaces.nexudus.com/api/public/settings/value/{name} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Value": "<string>"
}
'

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',
})