WorkOS · Schema

UserlandUserAuthenticationFactorEnrollResponse

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
authentication_factor object The [authentication factor](/reference/authkit/mfa/authentication-factor) object that represents the additional authentication method used on top of the existing authentication strategy.
authentication_challenge object The [authentication challenge](/reference/authkit/mfa/authentication-challenge) object that is used to complete the authentication process.
View JSON Schema on GitHub

JSON Schema

workos-userlanduserauthenticationfactorenrollresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserlandUserAuthenticationFactorEnrollResponse",
  "title": "UserlandUserAuthenticationFactorEnrollResponse",
  "type": "object",
  "properties": {
    "authentication_factor": {
      "$ref": "#/components/schemas/AuthenticationFactorEnrolled",
      "description": "The [authentication factor](/reference/authkit/mfa/authentication-factor) object that represents the additional authentication method used on top of the existing authentication strategy."
    },
    "authentication_challenge": {
      "$ref": "#/components/schemas/AuthenticationChallenge",
      "description": "The [authentication challenge](/reference/authkit/mfa/authentication-challenge) object that is used to complete the authentication process."
    }
  },
  "required": [
    "authentication_factor",
    "authentication_challenge"
  ]
}