Paired mode
Paired mode allows Beam Bolt device to accept payment requests from your server by establishing a secure connection wirelessly through the internet.
One benefit of using this mode is so that you can map your order, delivery and/or inventory management systems to the payment itself for ease of reconciliation.
Sending payment requests
After you successfully create a Bolt Connection, you are ready to forward payment requests to the connected device via Bolt Intent API.
Example payment request
POST https://api.beamcheckout.com/api/v1/bolt-intents
Content-Type: application/json
Authorization: Basic {{yourMerchantId}} {{yourApiKey}}
{
"amount": 10000,
"boltConnectionId": "boltc_396m3L7FYcevGsL47TWVHpEOIrx",
"currency": "THB",
"expiryDurationInSec": 90,
"internalNote": "Matcha Latte Less Sweet",
"mode": {
"deepLink": null,
"type": "PAIRING"
},
"paymentMethod": {
"paymentMethodType": "QR_PROMPT_PAY",
"qrPromptPay": {}
},
"referenceId": "ref12345"
}Last updated on