提款/转账
商户提款/转账至指定账户
#
RequestPOST
#
Parameterapplication/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 | number <int64> | amount to transfer. Only integers are accepted. |
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 | number <int32> | 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 |
appId | string Nullable | Application ID. Merchants can create their own applications according to the business. This field is optional. |
sign | string <=512 characters | Encrypted parameters. |
#
Request Example#
Response#
Success200
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 | number <int64> | amount to transfer. Only integers are accepted. |
fee | number <int64> | fee charged by platform |
notifyUrl | string <url> | Asynchronous notification address, which is used to receive asynchronous notifications of successful transfer |
feeType | number <int32> | 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 |