SuperTokens · Schema

ResetPasswordTokenRequest

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

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

JSON Schema

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