Checkout & Orders
Get order QR code
GET
/api/v1/orders/:id/qr-codeReturns a single-use QR token for the order, used to confirm handoff at pickup or delivery.
Requires Authorization
Session
Path parameters
idstringrequired | Order ID. |
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/orders/:id/qr-code \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"qrToken": "qr_8f1b2c3d4e5f6789"
}
}