Loa Heo Vàng - Đối tác thanh toán
  1. Partner
Loa Heo Vàng - Đối tác thanh toán
  • Partner
    • Get access token for partner client
      POST
    • Refresh token
      POST
    • Send verification code to speaker device
      POST
    • Register a speaker device for a partner
      POST
    • Unregister a speaker device
      POST
    • Webhook callback endpoint for payment processor to notify transaction status
      POST
    • Update status of multiple speaker devices
      PATCH
    • Create a dynamic QR code for payment
      POST
    • Get speaker device detail
      GET
  • Partner Store
    • Update store information
      PUT
  1. Partner

Create a dynamic QR code for payment

Develop Env
https://api-test.loaheovang.com
Develop Env
https://api-test.loaheovang.com
POST
/api/v1/partner/payment/dynamic-qr
Last modified:2025-08-01 02:37:10
Maintainer:Not configured
Creates a dynamic QR code for payment processing. This endpoint allows partners to generate QR codes that can be used for payment transactions. The QR code is associated with a specific store and can be used to facilitate payments through the partner's payment system.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Header Params

Body Params application/jsonRequired

Example
{
    "billNumber": "BILL202305250001",
    "transactionAmount": "250000",
    "qrcode": "00020101021238540010A00000072701240006970436011508150911950208QRIBFTTA530370454031000005802VN5910Merchant6005HANOI6105123456263039008MERCHANT0755200300",
    "storeId": "98765432-abcd-1234-efgh-456789abcdef"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-test.loaheovang.com/api/v1/partner/payment/dynamic-qr' \
--header 'x-client-id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "billNumber": "BILL202305250001",
    "transactionAmount": "250000",
    "qrcode": "00020101021238540010A00000072701240006970436011508150911950208QRIBFTTA530370454031000005802VN5910Merchant6005HANOI6105123456263039008MERCHANT0755200300",
    "storeId": "98765432-abcd-1234-efgh-456789abcdef"
}'

Responses

🟢201Created
application/json
Dynamic QR code created successfully
Body

Example
{
    "bankName": "Ngân hàng TMCP Quân đội (MB Bank)",
    "bankCode": "MB",
    "bankAccountNumber": "0123456789012",
    "bankAccountName": "NGUYEN VAN A",
    "qrcode": "string",
    "storeId": "string",
    "billNumber": "string",
    "id": "string"
}
🟠400Bad Request
🟠401Unauthorized
Modified at 2025-08-01 02:37:10
Previous
Update status of multiple speaker devices
Next
Get speaker device detail
Built with