Query Collections

Query Collection Transactions

Request URL

POST https://rem-api-sandbox.pagsmile.com/remittance/collection/query-collections

Request Header

NameTypeDescription

Content-Type*

string

application/json; charset=UTF-8

Request Body

Refer to : common

Biz_data

NameTypeDescription

merchant_id*

long

Merchant ID

va_account_num

string

VA Account Number

start_date*

string

Begin time,

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

end_date*

string

End time, Format: yyyy-MM-dd HH:mm:ss

page_num

integer

Page Number,

Default value:1

page_size

integer

Page Size,

Default value:10,

Max value is 30

Response

{
    "code": "10000",
    "msg": "Success",
    "data":[],
    "total":8,
    "random_key":"abssdddd2wdw==",
    "sign_type": "RSA",
    "app_id": "2017051914172236111"
}
NameTypeDescription

collection_id*

long

Collection ID

merchant_id*

long

Merchant ID

material_id

long

Material ID

va_account_num*

string

VA Account Number

receive_amount*

string

Receive Amount

receive_currency*

string

Receive Currency

arrived_at*

string

Arrived At,

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

out_trade_no*

string

Out Trade Number

status*

integer

Status

sender_name

string

Sender Name

sender_account_num

string

Sender Account Num

transaction_id

long

Transaction ID

exchange.executed

boolean

Exchange was executed ,

if true, following fields are required.

exchange.rate

string

Rate

exchange.target_currency

string

Target Currency

exchange.target_amount

string

Target Amount

exchange.transaction_ids

list<long>

Exchange Transaction IDs

Example


curl --location --request POST 'https://rem-api-sandbox.pagsmile.com/remittance/collection/query-collections' \
--header 'Content-Type: application/json' \
--data-raw '
{
    "partner_id": "000000000000001",
    "sub_partner_id": "",
    "app_id": "162051914172236138",
    "timestamp": "2011-09-23 04:24:03",
    "format": "JSON",
    "version": "2.0",
    "random_key": "jJT3+PR9CSowcR2QOK5OzMjVmTSjGoectzYbO8lENHnboElE",
    "request_id": "F6bEd39c-EecF-C1a2-AFcb-bA9BAeC8",
    "sign_type": "RSA",
    "biz_data": "jJT3+PR9CSowcR2QOK5OzMjVmTSjGoectzYbO8lENHnboElEjJT3+PR9CSowcR2QOK5OzMjVmTSjGoectzYbO8lENHnboElE"
}'

Note: 162************38 is pagsmile's test app id for sandbox

Please use your own app_id when testing.

Last updated