Transfer
You can easily transfer funds between multiple Pagsmile Issuing accounts under the same entity.
Request URL
POST
/issuing/partner/transfer
Request Body
Refer to : common
Biz_data :
Name
Type
Description
order_no*
string
Order number
payment_account_num*
string
Payment Account Number
receive_account_num*
string
Receive Account Number
amount*
string
Transfer Amount
reference
string
Reference
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",
"payment_account_num": "100000000989871",
"receive_account_num": "100000000989872",
"amount": "100",
"currency": "USD"
},
"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": "100009"
}
}
// The data in this example has already been decrypted.
Last updated
Was this helpful?