operator.request_otp
Request an operator login code by email. Driven by the admin server; only known non-disabled operators receive one.
- Scope:
operator.otp.request - System: no
- Reachable from:
POST /v1/commands/operator.request_otp(tenant credential) · MCP tooloperator.request_otp· SDKclient.call('operator.request_otp', …) - Events: none — The backoffice half of the same handshake: it publishes no fact, and the code is a secret. Operator identity changes emit from admin_user.* / operator.access_key.*.
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "client_ip": { "type": "string" }, "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" } }, "required": [ "email" ], "type": "object"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "requested": { "const": true, "type": "boolean" } }, "required": [ "requested" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)