Skip to content

update_tenant_settings

Update tenant configuration. Requires Owner role. Plan changes must go through Stripe billing — they cannot be set directly. Returns: tenant_id (str) — tenant UUID; updated (list[str]) — field names that were changed; name (str) — current display name after update; plan (str) — current plan (unchanged by this tool).

NameTypeRequiredDefaultDescription
namestrNo''
planstrNo''

Returns a structured object. Top-level fields:

  • tenant_id (string)
  • updated (array<string>)
  • name (string)
  • plan (string)

See the response example below for the full payload shape.

{
"name": "update_tenant_settings",
"arguments": {
"name": "Acme Holdings"
}
}
{
"tenant_id": "11111111-1111-1111-1111-111111111111",
"updated": [
"name"
],
"name": "Acme Holdings",
"plan": "pro"
}
  • Module: Admin
  • Requires authentication via API token or Auth0 JWT.