SuperTokens · Schema

EmailVerificationTokenRequest

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

Name Type Description
userId string
email string
tenantId string
View JSON Schema on GitHub

JSON Schema

supertokens-emailverificationtokenrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailVerificationTokenRequest",
  "title": "EmailVerificationTokenRequest",
  "type": "object",
  "required": [
    "userId",
    "email"
  ],
  "properties": {
    "userId": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "tenantId": {
      "type": "string"
    }
  }
}