OpenKiosk
Toggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Money acceptors

Commands

start

Instructs the device to start accepting bills or coin.

If the device uses pulse interface and its control using enable pin isn’t possible, then it’s not possible to truly start or stop it. In this case the moneyin events are ignored and not sent unless a start command is received.
{"cmd": "start"}

stop

Instructs the device to stop accepting money. In case of pulse interface devices, the moneyin events are withold.

{"cmd": "stop"}

Events

moneyin

Reports money input. It’s up to the backend implementations to evaluate the currency and denominations.

{
    "event": "moneyin",
    "data": {
        "amount": 100,
        "currency": "eur"
    }
}