WorkOS · Schema

ConfirmEmailChangeDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
code string The one-time code used to confirm the email change.
View JSON Schema on GitHub

JSON Schema

workos-confirmemailchangedto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfirmEmailChangeDto",
  "title": "ConfirmEmailChangeDto",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The one-time code used to confirm the email change.",
      "example": "123456"
    }
  },
  "required": [
    "code"
  ]
}