Card Balance Return
Move unused card funds back to your Pagsmile Issuing account.
Request URI
POST
/issuing/card/recharge-return
Request Body
Refer to : common
Biz_data :
Name
Type
Description
payee_account_num*
string(48)
Payee Account Number
card_token*
string(20)
Card token
order_no*
string(32)
Order number.Globally unique
currency*
string(3)
A 3-letter ISO currency code
reference
string(128)
Remarks
Request Example
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "AcdadFdC-d9AE-eaf1-53df-ef1af3Fd",
"timestamp": "2025-04-07 13:56:57",
"format": "JSON",
"version": "2.0",
"sign_type": "RSA",
"biz_data": {
"card_token": "450620141926",
"order_no": "68BDddCc-3fAE-325B-F926-F2E62FCB",
"payee_account_num": "104190000004",
"amount": "0.23",
"currency": "USD",
"reference": "remark"
},
"random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!
Response
Name
Type
Description
transaction_id
string
Transaction ID
{
"code": "10000",
"msg": "Success",
"total": 1,
"random_key": "<random key used for decryption>",
"sign_type": "RSA",
"app_id": "00000000000000000",
"data": {
"transaction_id": "100000076797"
}
}
// The data in this example has already been decrypted.
Last updated
Was this helpful?