SuperTokens · Schema

VerifyEmailRequest

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

Name Type Description
method string
token string
tenantId string
View JSON Schema on GitHub

JSON Schema

supertokens-verifyemailrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifyEmailRequest",
  "title": "VerifyEmailRequest",
  "type": "object",
  "required": [
    "method",
    "token"
  ],
  "properties": {
    "method": {
      "type": "string",
      "enum": [
        "token"
      ]
    },
    "token": {
      "type": "string"
    },
    "tenantId": {
      "type": "string"
    }
  }
}