Flipdish · JSON Structure

Customers Create Account Model Structure

Create account model

Type: object Properties: 6 Required: 2
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

CreateAccountModel is a JSON Structure definition published by Flipdish, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Email StoreName LanguageId Rid Cid RecaptchaToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/customers-create-account-model-structure.json",
  "name": "CreateAccountModel",
  "description": "Create account model",
  "type": "object",
  "properties": {
    "Email": {
      "description": "Email address",
      "type": "string",
      "example": "owner@example.com"
    },
    "StoreName": {
      "description": "Store name",
      "type": "string",
      "example": "Example Name"
    },
    "LanguageId": {
      "description": "LanguageId",
      "type": "string",
      "example": "500123"
    },
    "Rid": {
      "description": "Referral ID",
      "type": "int32",
      "nullable": true,
      "example": 500123
    },
    "Cid": {
      "description": "Campaign ID",
      "type": "string",
      "example": "500123"
    },
    "RecaptchaToken": {
      "description": "Google Recaptcha Token",
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "Email",
    "StoreName"
  ]
}