put__settings_organization
PUT /settings/organization
Partial Update Organization Settings
Partially update the organization settings. This endpoint allows updating specific settings keys while preserving existing values for keys not included in the request. The user must be authenticated and associated with an organization.
Request Body Schema
» [key: string]
any
false
none
Partial settings object with key-value pairs to update
TypeScript Client Library
// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';
const client = new FlashbackClient({ accessToken: 'your-access-token' });
// Partially update organization settings
try {
const result = await client.settings.organization.partialUpdate({
maxFileSize: '20GB',
security: { requireMFA: false }
});
console.log('Organization settings partially updated:', result);
} catch (error) {
console.error('Failed to partially update organization settings:', error);
}Code Samples
Example responses
200 Response
400 Response
404 Response
500 Response
Responses
Response Schema
Status Code 200
» success
boolean
true
none
Indicates if the request was successful
» message
string
true
none
Success message describing the operation
Status Code 400
» success
boolean
true
none
Always false for error responses
» message
string
true
none
Error message describing the issue
Status Code 404
» success
boolean
true
none
Always false for error responses
» message
string
true
none
Error message describing the issue
Status Code 500
» success
boolean
true
none
Always false for error responses
» message
string
true
none
Error message describing the issue
» error
string
false
none
Additional error details if available
DTOs
PartialUpdateSettingsRequest
SettingsErrorResponse
Last updated
Was this helpful?