GALAXY PAY - API Reference Guide
  • Payment Gateway
    • Payment solution
      • General integration steps
      • Modal checkout
        • Integration Guide for Web Desktop & Mobile Browser
      • Merchant checkout
      • Merchant Hosted Checkout
      • Pay with option
      • Pay with token
      • Fast pay
      • Pay with QR
      • Pay with E-Wallet
    • Demo
    • API Specification
      • Integration Keys
      • Definitions
        • Message Structure
        • Signature Algorithm
      • Data Flight
      • PAYMENT
        • Pay
        • Pay with create token
        • Pay with token
        • Pay with Option
        • Pay with QR
        • Checkout(for modal checkout)
        • Payment Link
        • Fast pay
      • TOKENIZATION
        • Merchants
          • Delete Token
        • Customers
          • Query Tokens
          • Remove Token
      • MANAGEMENT
        • Query Transaction
        • Refund Transaction
        • Void Transaction
        • Capture Transaction
      • IPN & CALLBACK
        • Result & IPN Callback
        • Cancel Callback
    • Appendix
      • Response Codes
      • Currencies
      • Domestic Banks
      • International Card Brands
      • eWallets
      • Payment Hubs
        • Apple Pay Validation
      • QR Payment Providers
      • Buy Now Pay Later
      • Test Information
      • Glossary
  • Payment Link
    • IPN callback
  • Archive
    • QR Payment (Old version)
      • API create QR
      • API query status
      • How to test
    • API create PaymentLink
Powered by GitBook
On this page
  1. Archive
  2. QR Payment (Old version)

API query status

PreviousAPI create QRNextHow to test

Last updated 2 years ago

Endpoint URL:

Request Message


curl --location 'https://uat-pms.galaxypay.vn/api-ex/qrpayment/query' \
--header 'X-Caller: YOUR_CALLER_ID' \
--header 'X-Api-Key: YOUR_API_KEY' \
--header 'X-Signature: 5c8b1faf9de0fc00f7ed71505f2ce712b2b4260b04d8b2d2c370aea6c825b2d3' \
--header 'Content-Type: application/json' \
--header 'Cookie: SESSION=YTVhYzNkMDgtMjhhYy00ZWZiLThkZjMtMDg4YWRkZTU2ZThh' \
--data '{
 "requestId":"1ed439d1-03cf-43f3-af63-005d3ada7fbd",
 "accountNumber":"99800190000645"
}'

Response Message

{
    "requestId": "1ed439d1-03cf-43f3-af63-005d3ada7fbd",
    "responseDateTime": "20230227232837",
    "responseCode": "200",
    "responseData": [
        {
            "fromAccNo": "0123456789",
            "fromAccName": "Nguyen Van A",
            "fromBankCode": "BVB",
            "fromBankName": "Ngan Hang Ban Viet",
            "amount":200000,
            "createdDate": "2022-12-13T08:58:39.717Z"
        }
    ]
}
https://uat-pms.galaxypay.vn/api-ex/qrpayment/query