Skip to content

OrderTypeGroups

Order type groups provide a hierarchical categorization for order types. Groups typically represent sales channels (POS, Kiosk, Webshop) and contain individual order types for different fulfillment methods.

Storage Location

{customer_id}-order_type_group.json

Fields

FieldTypeRequiredDescription
idintegerYesUnique order type group identifier.
customer_idintegerYesReference to Customer.
namestringYesGroup name (e.g., "Kiosk", "Pos", "Webshop").
statusstringYesStatus: active or inactive.
created_atdatetimeYesCreation timestamp.
created_bystringYesUser who created the group.
last_modified_atdatetimeYesLast modification timestamp.
last_modified_bystringYesUser who last modified the group.

Example

json
{
  "id": 4721,
  "customer_id": 10352,
  "name": "Kiosk",
  "status": "active",
  "created_at": "2025-03-11T13:33:57",
  "created_by": "TOR.ERIK.SKAARDAL@MUNU.CLOUD",
  "last_modified_at": "2025-03-11T13:33:57",
  "last_modified_by": "TOR.ERIK.SKAARDAL@MUNU.CLOUD"
}

Example - Multiple Groups

json
[
  {
    "id": 4721,
    "customer_id": 10352,
    "name": "Kiosk",
    "status": "active",
    "created_at": "2025-03-11T13:33:57",
    "created_by": "TOR.ERIK.SKAARDAL@MUNU.CLOUD",
    "last_modified_at": "2025-03-11T13:33:57",
    "last_modified_by": "TOR.ERIK.SKAARDAL@MUNU.CLOUD"
  },
  {
    "id": 4881,
    "customer_id": 10352,
    "name": "Pos",
    "status": "active",
    "created_at": "2025-05-13T14:52:46",
    "created_by": "TINE.AMODT@MUNU.CLOUD",
    "last_modified_at": "2025-05-13T14:52:46",
    "last_modified_by": "TINE.AMODT@MUNU.CLOUD"
  }
]

Common Group Types

GroupDescription
PosTraditional point-of-sale terminal orders
KioskSelf-service kiosk orders
WebshopOnline/e-commerce orders
MobileMobile app orders

Technical documentation for partners and integrators