Loa Heo Vàng - Đối tác dùng loa
  1. Partner Customer
Loa Heo Vàng - Đối tác dùng loa
  • Guideline
  • Partner Auth
    • Get access token for partner client
      POST
    • Refresh token
      POST
  • Partner Customer
    • Health check
      GET
    • Notification webhook callback (demo)
      POST
    • Get list store
      GET
    • Create a dynamic QR code for payment
      POST
  • Schemas
    • Schemas
      • ErrorResponsePayloadDto
      • StorePayloadListDto
      • CreateStoreQRParamDto
      • CreateStoreQRResponseDto
      • PartnerAuthTokenRequestDto
      • PartnerAuthTokenResponseDto
      • PartnerAuthRefreshRequestDto
      • PartnerPaymentNotificationRequestDto
      • PartnerCustomerNotificationResponseDto
      • StorePayloadDto
  1. Partner Customer

Create a dynamic QR code for payment

Testing Env
https://api-test.loaheovang.com
Testing Env
https://api-test.loaheovang.com
POST
/api/v1/partner/customer/payment/dynamic-qr
Creates a dynamic QR code for payment processing. This endpoint allows partners to generate QR codes that can be used for payment transactions.

Request

Header Params

Body Params application/json

Examples

Responses

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

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-test.loaheovang.com/api/v1/partner/customer/payment/dynamic-qr' \
--header 'x-client-id;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "transactionAmount": "250000",
    "storeId": "98765432-abcd-1234-efgh-456789abcdef"
}'
Response Response Example
201 - Example 1
{
    "bankName": "Ngân hàng TMCP Quân đội (MB Bank)",
    "bankCode": "MB",
    "bankAccountNumber": "0123456789012",
    "bankAccountName": "NGUYEN VAN A",
    "qrcode": "string",
    "id": "string"
}
Modified at 2025-06-30 17:11:25
Previous
Get list store
Next
ErrorResponsePayloadDto
Built with