Stytch · Schema

api_b2b_mfa_v1_MemberOptions

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
mfa_phone_number string The Member's MFA phone number.
totp_registration_id string The Member's MFA TOTP registration ID.
View JSON Schema on GitHub

JSON Schema

stytch-api-b2b-mfa-v1-memberoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_b2b_mfa_v1_MemberOptions",
  "title": "api_b2b_mfa_v1_MemberOptions",
  "type": "object",
  "properties": {
    "mfa_phone_number": {
      "type": "string",
      "description": "The Member's MFA phone number."
    },
    "totp_registration_id": {
      "type": "string",
      "description": "The Member's MFA TOTP registration ID."
    }
  },
  "required": [
    "mfa_phone_number",
    "totp_registration_id"
  ]
}