With the M010 we knew we had a payment device that we could trust. Its open architecture and easy integration was a key differentiator which enabled us to offer Hermes a flexible and scalable payment solution.
The speed of integration was fantastic. We now have a pay in-store service that meets our agents’ needs for extended mobility, without losing any of our existing functionality.
// 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...'}]
}));