QR MPM token
The QR MPM token object
Use this route to get the MPM QR code contents after creating a charge using a transaction token with the payment type qr_merchant
. The charge status needs to be awaiting
before qr_image_url
is populated.
Fields | |
qr_image_url | string The QR code contents provided by the payment provider to be encoded into a QR code. |
ready | boolean true if the qr_image_url field has been populated. |
Request
GET https://api.univapay.com/stores/{storeId}/charges/{id}/qr
Headers:
Content-Type: application/json
Authorization: Bearer {jwt}
Response
Code: 200
Headers:
Content-Type: application/json
Body:
{
"qr_image_url": "test",
"ready": true
}