https://{Request address}/Pay_Trade_MoneyQuery.html

Request parameters

parameter name

required

type

explanation

pay_memberid

YES

string

The "merchant number" provided by the payment system to the cooperative merchant

pay_md5sign

YES

string

signature

response parameters

parameter name

required

type

explanation

status

YES

string

Request status

timestamp

YES

string

Timestamp

sign

YES

string

sign

data

YES

ArrayObject

Data body (the following are data body attributes)

amount_code

YES

string

Currency international code

amount

YES

string

The balance available for payment in the current currency

freez_amount

YES

string

Current currency frozen balance

Request example

{
    "pay_memberid": "10006",
    "pay_md5sign": "B313F55386A0AEE01994C068141B3C41"
}

6.5 Return example

{
    "status": "00",
    "data": [
        {
            "amount_code": "PHP",
            "amount": "2200.00",
            "freez_amount": "0.00"
        },
        {
            "amount_code": "HKD",
            "amount": "2000.00",
            "freez_amount": "0.00"
        },
        {
            "amount_code": "THB",
            "amount": "0.00",
            "freez_amount": "0.00"
        }
    ]
,
    "timestamp": 1722494396,
    "sign": "1A8D14418A6D8CCD5CEE1CDE68109D09"

}