API v1 ReferenceSettings
Update tenant settings
Partially update tenant settings. When `languages_enabled` is supplied, the API removes the tenant default locale from the stored additional-language list.
Partially update tenant settings. When languages_enabled is supplied, the API removes the tenant default locale from the stored additional-language list.
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PATCH "https://example.com/api/v1/settings" \ -H "Content-Type: application/json" \ -d '{ "languages_enabled": [ "de" ] }'{
"success": true,
"data": {
"ai_enabled": true,
"subscription_enabled": true,
"trusted_by_auto_scroll_enabled": true,
"timezone": "Europe/Berlin",
"locale": "en",
"languages_enabled": [
"en"
]
}
}Empty
Empty
Empty
Empty
How is this guide?