Settings
Update current tenant settings
Update the settings for the current user's tenant (tenant admin only).
patch/settings/current
Query parameters
cookie_namestring nullable
tenant_idinteger
Request body
Example request
{
"default_llm_catalog_id": 3,
"guardrails_enabled": true,
"inbound_guardrail": "default-inbound",
"outbound_guardrail": "default-outbound",
"welcome_email_template_id": 1,
"project_member_added_email_template_id": 2,
"system_prompt": "You are a helpful assistant for Acme Corp.",
"errlog_webhook_url": "https://hooks.example.com/errlog",
"require_email_confirmation": true
}Response
Successful Response
Example response
{
"id": 1,
"tenant_id": 1,
"default_llm_catalog_id": 1,
"created_at": "2026-06-23T12:00:00Z",
"sharepoint_enabled": true,
"inbound_guardrail": "default-inbound",
"outbound_guardrail": "default-outbound",
"system_prompt": "You are a helpful assistant.",
"inserted_by": "alembic",
"errlog_webhook_url": "https://hooks.example.com/errors",
"default_language": "en"
}