Skip to content
v0.3

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 tool operator.request_otp · SDK client.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.*.
{
"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"
}
{
"additionalProperties": false,
"properties": {
"requested": {
"const": true,
"type": "boolean"
}
},
"required": [
"requested"
],
"type": "object"
}

validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)