Query Partner Transactions

Query transaction details associated with your Pagsmile Issuing account.

Request URI

POST /issuing/partner/query-transactions

Request Body

Refer to : common

Biz_data :

Name
Type
Description

order_no

string

Order Number

card_token

string

Card Token

account_num

string

Account Number

transaction_status

integer

Transaction status,

refer to:transactionStatus

transaction_type

integer

transaction type,

refer to:transactionType

currency

string

Currency,

refer to : currency

start_date*

string

Begin time,

format:yyyy-MM-dd

end_date*

string

End time,

format: yyyy-MM-dd

page_num

integer

Default value: 1

page_size

integer

Default value: 10,

Max value is 30

Max query time range : 31 days

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "2A8D14F1-765c-729B-8501-5990DbC7",
    "timestamp": "2025-04-07 13:57:00",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "order_no": "fE2E44c2-A4cF-C4Fc-40d6-Ee493262",
        "start_date": "2025-04-05",
        "end_date": "2025-04-08"
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

transaction_id

string

Transaction id

order_no

string

Order number

card_token

string

Card token

account_token

string

Account Token

transaction_type

integer

Transaction Type

transaction_status

integer

Transaction Status

account_num

string

Account Num

account_name

string

Account Name

bill_currency

string

Bill Currency

bill_amount

string

Bill Amount

bill_fee

string

Bill Fee

balance

string

Balance

balance_change

string

Balance Change

transaction_amount

string

Transaction Amount

transaction_currency

string

Transaction Currency

exchange_rate

string

Exchange Rate

reference

string

Remarks

transaction_desc

string

Transaction desc

related_transaction_id

string

Related Transaction ID

merchant_info

string

Merchant Information

business_date

string

Format: yyyy-MM-dd

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": [{
        "transaction_id": "100000076795",
        "order_no": "fE2E44c2-A4cF-C4Fc-40d6-Ee493262",
        "account_token": "10419000000401",
        "card_token": null,
        "transaction_type": 121,
        "transaction_status": 1,
        "account_num": "104190******0004",
        "account_name": "Test A",
        "bill_currency": "USD",
        "bill_amount": "-1.23",
        "bill_fee": "0.00",
        "balance_change": "-1.23",
        "balance": "100898337.06",
        "transaction_amount": "-1.23",
        "transaction_currency": "USD",
        "exchange_rate": "1.0000",
        "reference": null,
        "transaction_desc": "remark",
        "merchant_info": null,
        "related_transaction_id": "100000076796",
        "business_date": "2025-04-07",
        "create_time": "2025-04-07 05:56:53"
    }]
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?