put__settings_user
Request Body Schema
Name
Type
Required
Restrictions
Description
TypeScript Client Library
// Using the Flashgate TypeScript client
import { FlashgateClient } from '@flashgate/client';
const client = new FlashgateClient({ accessToken: 'your-access-token' });
// Partially update user settings
try {
const result = await client.settings.user.partialUpdate({
theme: 'light',
notifications: { email: false }
});
console.log('User settings partially updated:', result);
} catch (error) {
console.error('Failed to partially update user settings:', error);
}Code Samples
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Name
Type
Required
Restrictions
Description
Name
Type
Required
Restrictions
Description
DTOs
Last updated
Was this helpful?