Overview
Create a fund deposit review record.
- Resquest
cURL -X POST /fund-api/v1/payin/review/create
-H 'Content-Type: application/json'
-H 'X-ODP-Opccount-No: VA24601102'
-H 'Authorization: {token}'
-d '{
"payer_account": "78415632",
"payment_time": "2025-07-08 12:00:00",
"payment_amount": 100,
"payment_fee": 1,
"remark": "",
"payer_name": "test123",
"payer_bank_bic": "789456",
"payment_currency": "USD",
"payer_bank_name": "test"
}'
| Parameter | Description |
|---|---|
| X-ODP-Opccount-No | OPCCOUNT account number |
| payer_account | The account of the payer |
| payment_time | Date and time of payment |
| payment_amount | Amount paid |
| payment_fee | Transaction fee |
| payer_name | Name of the payer |
| payment_currency | Currency of payment |
| payer_bank_name | Name of the payer's bank |
- Responses
{
"code": "200",
"msg": "Success",
"trace_id": "5b4c1e77e3ce42d89d72c7f784e6d5a2",
"data": {
"batch_no": 1000000469,
"review_status": 0,
"payment_currency": "USD",
"payment_amount": 100,
"payment_fee": 1,
"payment_fee_status": 1,
"payin_amount": 99
}
}
| Parameter | Description | Type |
|---|---|---|
| batch_no | Batch No | Use this batch number to query or cancel the deposit review after creation |
| review_status | Review Status | • 0 : Under review• 1 : Approved• 2 : Review failed, pending refund• 3 : Refunded |
| payment_fee_status | Payment Fee Status | • 0 : Unconfirmed• 1 : Confirmed |