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).
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
name | str | No | '' | |
plan | str | No | '' |
Returns
Section titled “Returns”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.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "update_tenant_settings", "arguments": { "name": "Acme Holdings" }}Response
Section titled “Response”{ "tenant_id": "11111111-1111-1111-1111-111111111111", "updated": [ "name" ], "name": "Acme Holdings", "plan": "pro"}- Module:
Admin - Requires authentication via API token or Auth0 JWT.