Flipdish · Schema

ClientDeviceEnroll

Enroll a client device

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
DeviceModel string Device model
DeviceId string Device Id
DeviceName string Device Name
View JSON Schema on GitHub

JSON Schema

devices-client-device-enroll-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/devices-client-device-enroll-schema.json",
  "title": "ClientDeviceEnroll",
  "description": "Enroll a client device",
  "type": "object",
  "properties": {
    "DeviceModel": {
      "description": "Device model",
      "type": "string",
      "example": "string"
    },
    "DeviceId": {
      "description": "Device Id",
      "type": "string",
      "example": "500123"
    },
    "DeviceName": {
      "description": "Device Name",
      "type": "string",
      "example": "Example Name"
    }
  }
}