These days fewer people carry and use cash while Generation Z is more comfortable using digital solutions to pay for services and products. Cashless payments are not the future, they’re the present.
// Use websocket for two way communication with your terminals
const c = new WebSocket(
'wss://websocket.hips.com/terminal/dkf74ud',['jsonrpc2.0']);
c.send(JSON.stringify({jsonrpc:'2.0',
method:'Purchase',
amount:1250,
currency:'EUR',
receipt_id:'My ID 64222'
}));
// Use websocket for two way communication with your terminals
const c = new WebSocket(
'wss://websocket.hips.com/terminal/dkf74ud',['jsonrpc2.0']);
c.send(JSON.stringify({jsonrpc:'2.0',
method:'DisplayText',
positionX:1,
positionY:1,
text:'Welcome Back!'
}));
// Use websocket for two way communication with your terminals
const c = new WebSocket(
'wss://websocket.hips.com/terminal/dkf74ud',['jsonrpc2.0']);
c.send(JSON.stringify({jsonrpc:'2.0',
method:'PrinterPrint',
printerObjectData:[{ fontSize:1 text:'PRO FORMA...'}]
}));