WorkOS · Schema

CreatePasswordResetTokenDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
email string The email address of the user requesting a password reset.
View JSON Schema on GitHub

JSON Schema

workos-createpasswordresettokendto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePasswordResetTokenDto",
  "title": "CreatePasswordResetTokenDto",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "The email address of the user requesting a password reset.",
      "example": "[email protected]"
    }
  },
  "required": [
    "email"
  ]
}