Authorization, Content-Type, X-Request-IDcurl --location --request PATCH 'http://localhost:3000/api/orgs//settings' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"timezone": "2019-08-24T14:15:22.123Z",
"defaultLanguage": "string",
"complianceMode": "string",
"recordingConsent": "string",
"aiSummaries": "string",
"educationMode": true,
"dlpEnabled": true,
"translationEnabled": true,
"realTimeSummaries": true,
"lmsIntegration": "string",
"retentionAlerts": true
}'{
"status": "ok",
"message": "Organization settings updated successfully",
"data": {
"timezone": "string (IANA)",
"defaultLanguage": "string",
"complianceMode": "string (gdpr|hipaa|ferpa|none)",
"recordingConsent": "string (required|optional|none)",
"aiSummaries": "string (basic|enhanced|off)",
"educationMode": "boolean",
"dlpEnabled": "boolean",
"translationEnabled": "boolean",
"realTimeSummaries": "boolean",
"lmsIntegration": "string | null",
"retentionAlerts": "boolean"
}
}