Equipped with a clear contactless zone, a 5.1-inch touchscreen and powerful processing capabilities, the A920 enhances usability and accelerates the checkout.
Run your own business applications (Android 7.1) on the device and let them connect to our SDK for payments, or simply use our merchant app.
// 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...'}]
}));