Skip to content

remove_user

Remove an active tenant member. Requires Owner role. Cannot remove the last owner of a tenant. Returns: target_user_id (str) — UUID of the removed member; removed (bool) — always true on success.

destructive

NameTypeRequiredDefaultDescription
target_user_idstrYes

Returns a structured object. Top-level fields:

  • target_user_id (string)
  • removed (boolean)

See the response example below for the full payload shape.

{
"name": "remove_user",
"arguments": {
"target_user_id": "33333333-3333-3333-3333-333333333333"
}
}
{
"target_user_id": "33333333-3333-3333-3333-333333333333",
"removed": true
}
  • Module: Admin
  • Requires authentication via API token or Auth0 JWT.