WorkOS · Schema

VerifyEmailAddressDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
code string The one-time email verification code.
View JSON Schema on GitHub

JSON Schema

workos-verifyemailaddressdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifyEmailAddressDto",
  "title": "VerifyEmailAddressDto",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The one-time email verification code.",
      "example": "123456"
    }
  },
  "required": [
    "code"
  ]
}