OrderTypeGroups

Order type grouping configuration.

Fields

Field Type Required Version Description
id integer Yes 1.1 Unique order type group identifier
name string No 1.1 Order type group name
customerId integer Yes 1.1 Reference to Customer

Example

{
  "id": 1,
  "name": "On Premises",
  "customerId": 12345
}

Example - Common Groups

[
  {
    "id": 1,
    "name": "On Premises",
    "customerId": 12345
  },
  {
    "id": 2,
    "name": "Off Premises",
    "customerId": 12345
  },
  {
    "id": 3,
    "name": "Internal",
    "customerId": 12345
  }
]