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.jsonFields
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | Unique order type group identifier. |
customer_id | integer | Yes | Reference to Customer. |
name | string | Yes | Group name (e.g., "Kiosk", "Pos", "Webshop"). |
status | string | Yes | Status: active or inactive. |
created_at | datetime | Yes | Creation timestamp. |
created_by | string | Yes | User who created the group. |
last_modified_at | datetime | Yes | Last modification timestamp. |
last_modified_by | string | Yes | User 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
| Group | Description |
|---|---|
| Pos | Traditional point-of-sale terminal orders |
| Kiosk | Self-service kiosk orders |
| Webshop | Online/e-commerce orders |
| Mobile | Mobile app orders |
Related Entities
- Customers - Parent customer/tenant
- OrderTypes - Order types within this group