Query Payment Orders
Retrieves payment orders for a merchant within a specified time range, with optional filters and pagination.
Endpoint
POST /remittance/payment/query-orders
Sandbox base URL: https://rem-api-sandbox.pagsmile.com
Content-Type: application/json; charset=UTF-8
The request uses the standard Remittance API request envelope. The fields below describe the decrypted biz_data object.
Encrypt biz_data, encrypt the AES key into random_key, and sign the request according to the Common request specification.
Request body
Decrypted biz_data fields
merchant_id
long
O
Pagsmile-assigned unique identifier of the merchant.
order_no
string
O
Merchant-defined order number used to submit, query, and reconcile the payment order.
account_no
string
O
Merchant account number from which the payment amount is debited.
start_date
string
M
Start of the query period, inclusive.
Format: yyyy-MM-dd HH:mm:ss.
end_date
string
M
End of the query period, inclusive.
Format: yyyy-MM-dd HH:mm:ss.
page_num
int
O
One-based page number of the result set.
Default: 1.
page_size
int
O
Maximum number of records returned on each page.
Default: 10.
Maximum: 30.
Plaintext biz_data example
Request example
Response
The data field in the response envelope is AES-encrypted. Decrypt random_key with your RSA private key, then use the resulting AES key to decrypt data. See Security for implementation details.
Encrypted response example
Decrypted data example
Response data fields
order_id
long
M
Pagsmile-assigned unique identifier of the order.
merchant_id
long
M
Pagsmile-assigned unique identifier of the merchant associated with the returned record.
account_no
string
M
Merchant account number from which the payment amount is debited.
transaction_id
long
O
Pagsmile-assigned unique identifier of the transaction.
order_no
string
M
Merchant-defined order number used to submit, query, and reconcile the payment order.
audit_status
integer
O
Current compliance or material review status of the record.
Supported values:
1 — Reviewing
2 — Approved
11 — Rejected
7 — To be linked
15 — To be supplemented
bank_country
string
O
Two-letter ISO 3166-1 alpha-2 code of the country where the bank account is held.
payment_currency
string
O
Three-letter ISO 4217 code of the payment currency.
payment_amount
string
O
Payment amount expressed in the payment currency.
fee
string
O
Service fee charged for the transaction, expressed in the corresponding currency.
payed_at
string
O
Date and time when the order was paid.
Format: yyyy-MM-dd HH:mm:ss.
refund_transaction_id
long
O
Pagsmile-assigned unique identifier of the refund transaction.
return_fee
string
O
Fee returned as part of the refund or reversal.
refunded_at
string
O
Date and time when the refund was completed.
Format: yyyy-MM-dd HH:mm:ss.
beneficiary_name
string
O
Name of the payment beneficiary.
beneficiary_id
long
O
Pagsmile-assigned unique identifier of the payment beneficiary.
reference
string
O
Merchant-provided reference used to reconcile the transaction with the merchant's internal records.
error_message
string
O
Human-readable explanation provided when processing fails.
created_at
string
O
Date and time when the payment order was created.
Format: yyyy-MM-dd HH:mm:ss.
Related APIs
Last updated