Brief description:
- Platform initiates payments to third parties
Request URL:
Payment URLs reserved by third parties on the platform
Request Method:
- POST
Parameters:
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| appid | YES | string | Platform merchant ID |
| out_trade_no | YES | string | Order Number |
| total_fee | YES | int | Amount paid, in cents |
| notify_url | YES | string | The address of the asynchronous callback to the platform after a successful third-party payment |
| return_url | YES | string | The address of the synchronized callback to the platform after a successful third-party payment |
| goods_list | YES | array | |
| goods_list.goods_name | YES | string | Product Name |
| goods_list.goods_no | YES | string | Item number |
| goods_list.code | YES | string | Freight Lane Number |
| goods_list.box_id | YES | string | Container ID |
| goods_list.price | YES | number | Commodity price ,Unit: cents |
| goods_list.goods_num | YES | number | Number of products |
| sign | YES | string | Signature |
请求示例
{
"appid": "10000003",
"out_trade_no": "1234567891588004363972",
"total_fee": "200",
"notify_url": "http://local.vem.cn/api/payment/third/notify",
"return_url": "http://local.vem.cn/api/payment/third/return",
"goods_list": [{
"goods_name": "Coke",
"goods_no": "1000019",
"code": "001",
"box_id": "1",
"price": "2",
"goods_num": "1"
}],
"sign": ""
