admin_user.invite
Invite a new operator by email (status invited). First OTP/OIDC login activates them. locale starts them in a language (‘en’ | ‘pt-BR’ | ‘es’); omitted, they inherit the instance default and can change it themselves.
- Scope:
admin.users.write - System: no
- Reachable from:
POST /v1/commands/admin_user.invite(tenant credential) · MCP tooladmin_user.invite· SDKclient.call('admin_user.invite', …) - Events:
admin_user.invited
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "email": { "format": "email", "pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$", "type": "string" }, "locale": { "maxLength": 10, "minLength": 2, "type": "string" }, "name": { "type": "string" }, "role": { "type": "string" } }, "required": [ "email" ], "type": "object"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "admin_user_id": { "type": "string" } }, "required": [ "admin_user_id" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)