Create Disbursement
Use this API to start disbursing money to a specific beneficiary account.
Request#
POST
Parameter#
application/json
| Field | Type | Description |
|---|---|---|
| merchantCode | string [5..50] characters | Unique merchant code |
| orderNum | string | This number should be unique for merchant. Dupliated numbers won't be accepted by platform. |
| money | string | amount to transfer. |
| description | string <=32 characters | description of the bill |
| name | string <=32 characters | real name of user that left in bank. |
| bankCode | string | bank short name |
| number | string | bank card number of user. |
| notifyUrl | string <url> | Asynchronous notification address, which is used to receive asynchronous notifications of successful transfer |
| feeType | string | Enum: 0 1 How to charge the transaction: - 0 Deducted from the transfer amount - 1 Deducted from the merchant balance |
| dateTime | string <date-time> | format yyyyMMddHHmmss |
| sign | string <=512 characters | Encrypted parameters. |
Request Example#
Response#
Success#
200 application/json
| Field | Type | Description |
|---|---|---|
| platRespCode | string | result code: "SUCCESS" "FAIL" "UNKNOWN" "NOTEXIST" "ERROR" |
| platRespMessage | string | description of resp code |
| platOrderNum | string | unique order number in platform wide. |
| orderNum | string | unique order number in merchant wide. Same as orderNum in request body. |
| name | string <= 32 characters | This name will be displayed on bill page when user pay to the VA |
| bankCode | string | bank short name. |
| number | string | bank card number of user. |
| money | string | amount to transfer. Only integers are accepted. |
| fee | string | fee charged by platform |
| notifyUrl | string <url> | Asynchronous notification address, which is used to receive asynchronous notifications of successful transfer |
| feeType | string | Enum: 0 1 How to charge the transaction: - 0 Deducted from the transfer amount - 1 Deducted from the merchant balance |
| platSign | string | Encrypted response data |