Query Deposit Result

Query the details and status of a deposit order that has previously been created. Supply the unique deposit order_no, Pagsmile will return the corresponding deposit information.

Request URI

POST /issuing/partner/query-topup-result

Request Body

Refer to : common

Biz_data :

Name
Type
Description

order_no*

string

Order number

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "f37654bC-E056-f49E-689E-22c4447f",
    "timestamp": "2025-04-07 13:57:04",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "order_no": "7DFEfCd2-3cEA-D757-cBA9-b7DceA4c"
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

topup_id

long

Topup Id

order_no

string

Parter Order number

order_status

integer

Order status,1-success 8-fail 4-to be confirmed 11-under review

pay_currency

string

Pay Currency

pay_amount

string

Pay Amount

topup_currency

string

Topup Currency

topup_amount

string

Topup Amount

create_time

string

Format: yyyy-MM-dd HH:mm:ss

{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": {
        "topup_id": 101535,
        "order_no": "7DFEfCd2-3cEA-D757-cBA9-b7DceA4c",
        "order_status": 1,
        "pay_currency": "USD",
        "pay_amount": "48.00",
        "topup_currency": "HKD",
        "topup_amount": "6.00",
        "create_time": "2025-04-07 05:57:02"
    }
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?