Tenant Settings
Get tenant settings
Returns the enrichment settings for the specified tenant_id. A tenant that has not configured any settings yet returns HTTP 200 with default (unset) values rather than 404; consumers decide the fallback behavior for unset values. Settings are tenant-scoped and never shared across tenants.
get/v1/tenants/{tenant_id}/settings
Path parameters
tenant_idstring required
Example:org-123
Tenant ID whose settings should be returned. Empty strings and NULL bytes are not allowed.
Response
Tenant settings
Example response
{
"tenant_id": "org-123",
"settings": {
"target_language": "en-US",
"sentiment_enabled": true,
"emotions_enabled": true
}
}