Aloha POS · Example Payload

Ncr Voyix Platform Create Order Example

POSRestaurantHospitalityNCR

Ncr Voyix Platform Create Order Example is an example object payload from Aloha POS, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

channelcommentscustomerorderLines

Example Payload

Raw ↑
{
  "channel": "Web",
  "comments": "Created from online checkout",
  "customer": {
    "email": "test@ncrvoyix.com",
    "firstName": "Test",
    "lastName": "Demo"
  },
  "orderLines": [
    {
      "productId": { "type": "", "value": "SmallFries" },
      "quantity": { "unitOfMeasure": "EA", "unitOfMeasureLabel": "", "value": 2 },
      "unitPrice": 9.00
    },
    {
      "productId": { "type": "", "value": "Tunaburger" },
      "quantity": { "unitOfMeasure": "EA", "unitOfMeasureLabel": "", "value": 2 },
      "unitPrice": 13.00
    }
  ]
}