Created
January 31, 2019 10:35
-
-
Save nakedible-p/f73d4d21e220342c5c4c02061cbd644b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const c = new WebSocket( | |
'wss://api.poplatek.com/api/v2/terminal/35516/jsonpos', | |
['jsonrpc2.0'] | |
); | |
c.send( | |
JSON.stringify({ | |
jsonrpc: '2.0', | |
method: 'Purchase', | |
params: { amount: 150, currency: 978, receipt_id: 15335 } | |
}) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment