Skip to content

Wall

Example Wall Request

Direction: Device -> Backend

(development only) Generic wall command, message to all connected clients (POS and terminals).

json
{
  "action": "wall",
  "method": "wall",
  "data": "message"
}

Example Wall Response

Direction: Backend -> Device1, Device2...

(development only) Sent to all connected clients (POS and terminals). The wall response will contain both the message originator ConnectionId as well as the Message from the originator.

json
{
  "action": "wall",
  "method": "wall",
  "data": {
    "ConnectionId": "",
    "Message": ""
  }
}