Skip to content

Terminals

Terminal is a POS unit performing sales and producing orders. Part of basis data, updated completely each 24 hours - no need for incremental loads.

Storage Location

{customer_id}-terminal.json

Fields

FieldTypeRequiredDescription
idintegerYesUnique ID of the terminal.
namestringYesName of terminal, often representing the local place of business.
customer_idintegerYesRelationship to Customer owning the Terminal.
business_unit_idintegerYesID of the business unit operating the Terminal.
business_unit_namestringYesName of the business unit operating Terminal (denormalized).
installation_idintegerYesID of the physical installation Terminal is located at.
installation_namestringYesName of the physical installation place of the Terminal (denormalized).
typestringYesPhysical type of the Terminal. Values: Terminal, Kiosk, Mobile, Webshop.

Example

json
{
  "id": "26023",
  "name": "KS Ø Østbanehallen 02",
  "customer_id": 10352,
  "business_unit_id": 12500,
  "business_unit_name": "Brød Bakerne AS (Kanelsnurren, Brød Bakerne)",
  "installation_id": 15136,
  "installation_name": "Kanelsnurren Østbanehallen",
  "type": "Terminal"
}

Example - Multiple Terminals

json
[
  {
    "id": "25942",
    "name": "KS Ø Østbanehallen 01",
    "customer_id": 10352,
    "business_unit_id": 12500,
    "business_unit_name": "Brød Bakerne AS (Kanelsnurren, Brød Bakerne)",
    "installation_id": 15136,
    "installation_name": "Kanelsnurren Østbanehallen",
    "type": "Terminal"
  },
  {
    "id": "26023",
    "name": "KS Ø Østbanehallen 02",
    "customer_id": 10352,
    "business_unit_id": 12500,
    "business_unit_name": "Brød Bakerne AS (Kanelsnurren, Brød Bakerne)",
    "installation_id": 15136,
    "installation_name": "Kanelsnurren Østbanehallen",
    "type": "Terminal"
  },
  {
    "id": "31946",
    "name": "X - NOT IN USE KS Østbanehallen Kiosk 01",
    "customer_id": 10352,
    "business_unit_id": 12500,
    "business_unit_name": "Brød Bakerne AS (Kanelsnurren, Brød Bakerne)",
    "installation_id": 15136,
    "installation_name": "Kanelsnurren Østbanehallen",
    "type": "Kiosk"
  }
]

Terminal Types

TypeDescription
TerminalStandard POS terminal
KioskSelf-service kiosk
MobileMobile/tablet POS device
WebshopOnline ordering system

Technical documentation for partners and integrators