> ## 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 Multiple Settings

> Updates multiple portal settings at once for a specific customer.

# Update Multiple Settings

Updates multiple portal configuration settings in a single request for a specific customer.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

<ParamField path="coworkerId" type="number" required>
  Numeric identifier of the customer to update settings for.
</ParamField>

## Request Body

Array or object of setting name/value pairs to update.

## Response

Returns a `200 OK` on success.

## TypeScript Integration

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

await httpClient.put(endpoints.settings.setMany(42), settingsData)
```
