Flipdish · Schema

UnRegisterCardReaderRequest

Un-Register card reader request

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
ReaderId string Device card readerid
KioskDeviceId string The kiosk device id
View JSON Schema on GitHub

JSON Schema

devices-un-register-card-reader-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-un-register-card-reader-request-schema.json",
  "title": "UnRegisterCardReaderRequest",
  "description": "Un-Register card reader request",
  "type": "object",
  "properties": {
    "ReaderId": {
      "description": "Device card readerid",
      "type": "string",
      "example": "500123"
    },
    "KioskDeviceId": {
      "description": "The kiosk device id",
      "type": "string",
      "example": "500123"
    }
  },
  "required": [
    "ReaderId",
    "KioskDeviceId"
  ]
}