Flipdish · Schema

PasswordResetModel

Password reset model

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
TokenId string Token Id
Email string Email address
Password string Password
PasswordConfirmation string Password confirmation
Token string Password reset token
View JSON Schema on GitHub

JSON Schema

customers-password-reset-model-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-password-reset-model-schema.json",
  "title": "PasswordResetModel",
  "description": "Password reset model",
  "type": "object",
  "properties": {
    "TokenId": {
      "description": "Token Id",
      "type": "string",
      "example": "500123"
    },
    "Email": {
      "description": "Email address",
      "type": "string",
      "example": "[email protected]"
    },
    "Password": {
      "description": "Password",
      "type": "string",
      "example": "string"
    },
    "PasswordConfirmation": {
      "description": "Password confirmation",
      "type": "string",
      "example": "string"
    },
    "Token": {
      "description": "Password reset token",
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "Password",
    "PasswordConfirmation"
  ]
}