WorkOS · Schema

SendEmailChangeDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
new_email string The new email address to change to.
View JSON Schema on GitHub

JSON Schema

workos-sendemailchangedto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendEmailChangeDto",
  "title": "SendEmailChangeDto",
  "type": "object",
  "properties": {
    "new_email": {
      "type": "string",
      "description": "The new email address to change to.",
      "example": "[email protected]"
    }
  },
  "required": [
    "new_email"
  ]
}