Flipdish · Schema

CreateAccountModel

Create account model

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Email string Email address
StoreName string Store name
LanguageId string LanguageId
Rid integer Referral ID
Cid string Campaign ID
RecaptchaToken string Google Recaptcha Token
View JSON Schema on GitHub

JSON Schema

customers-create-account-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-create-account-model-schema.json",
  "title": "CreateAccountModel",
  "description": "Create account model",
  "type": "object",
  "properties": {
    "Email": {
      "description": "Email address",
      "type": "string",
      "example": "[email protected]"
    },
    "StoreName": {
      "description": "Store name",
      "type": "string",
      "example": "Example Name"
    },
    "LanguageId": {
      "description": "LanguageId",
      "type": "string",
      "example": "500123"
    },
    "Rid": {
      "format": "int32",
      "description": "Referral ID",
      "type": "integer",
      "nullable": true,
      "example": 500123
    },
    "Cid": {
      "description": "Campaign ID",
      "type": "string",
      "example": "500123"
    },
    "RecaptchaToken": {
      "description": "Google Recaptcha Token",
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "Email",
    "StoreName"
  ]
}