1. Schemas
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. Schemas

StorePayloadListDto

{
    "total": 0,
    "current": 0,
    "pageCount": 0,
    "pageSize": 0,
    "data": [
        {
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "storeName": "Cafe Milano",
            "ownerName": "Nguyen Van A",
            "bankName": "Ngân hàng TMCP Quân đội (MB Bank)",
            "bankCode": "MB",
            "bankAccountNumber": "0123456789012",
            "bankAccountName": "NGUYEN VAN A",
            "terminalID": "T123456789",
            "terminalName": "MB-CafeMilano-001",
            "active": true,
            "createdAt": "2023-06-15T09:30:00Z",
            "staticQRCode": "00020101021238...[long QR string]",
            "totalTransaction": "1250",
            "totalAmount": "25000000",
            "devices": [
                [
                    "string"
                ]
            ]
        }
    ]
}
Built with