{ "/update/default_team_settings": { "patch": { "tags": [ "SSO Settings" ], "summary": "Update Default Team Settings", "description": "Update the default team parameters for SSO users.\nThese settings will be applied to new teams created from SSO.", "operationId": "update_default_team_settings_update_default_team_settings_patch", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/DefaultTeamSSOParams" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } }, "/update/internal_user_settings": { "patch": { "tags": [ "SSO Settings" ], "summary": "Update Internal User Settings", "description": "Update the default internal user parameters for SSO users.\nThese settings will be applied to new users who sign in via SSO.", "operationId": "update_internal_user_settings_update_internal_user_settings_patch", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/DefaultInternalUserParams" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } }, "/update/mcp_semantic_filter_settings": { "patch": { "tags": [ "Settings" ], "summary": "Update Mcp Semantic Filter Settings", "description": "Update MCP semantic filter settings in database.\nSettings will be picked up by all pods within approximately 10 seconds via background polling.", "operationId": "update_mcp_semantic_filter_settings_update_mcp_semantic_filter_settings_patch", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/MCPSemanticFilterSettings" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } }, "/update/sso_settings": { "patch": { "tags": [ "SSO Settings" ], "summary": "Update Sso Settings", "description": "Update SSO configuration by saving to the dedicated SSO table.", "operationId": "update_sso_settings_update_sso_settings_patch", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/SSOConfig" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } }, "/update/ui_settings": { "patch": { "tags": [ "UI Settings" ], "summary": "Update Ui Settings", "description": "Update UI-specific configuration flags.\nOnly proxy admins are allowed to modify these settings.", "operationId": "update_ui_settings_update_ui_settings_patch", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UISettings" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } }, "/update/ui_theme_settings": { "patch": { "tags": [ "UI Theme Settings" ], "summary": "Update Ui Theme Settings", "description": "Update UI theme configuration.\nUpdates logo settings for the admin UI.", "operationId": "update_ui_theme_settings_update_ui_theme_settings_patch", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UIThemeConfig" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } } }