Flipdish · Schema

CardReaderRegistrationRequest

Card reader registration request

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
RegistrationCode string The reader registration code
KioskDeviceId string The kiosk device id
View JSON Schema on GitHub

JSON Schema

devices-card-reader-registration-request-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-card-reader-registration-request-schema.json",
  "title": "CardReaderRegistrationRequest",
  "description": "Card reader registration request",
  "type": "object",
  "properties": {
    "RegistrationCode": {
      "description": "The reader registration code",
      "type": "string",
      "example": "string"
    },
    "KioskDeviceId": {
      "description": "The kiosk device id",
      "type": "string",
      "example": "500123"
    }
  },
  "required": [
    "RegistrationCode"
  ]
}