Commit 65f2e8fe by 宋毅

tj

parent 3dac6b31
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
1. [获取订单详情信息](#getOrderDetails) 1. [获取订单详情信息](#getOrderDetails)
1. [获取订单操作日志信息](#getOrderLogInfo) 1. [获取订单操作日志信息](#getOrderLogInfo)
1. [删除订单](#delOrder) 1. [删除订单](#delOrder)
1. [渠道订单支付通知](#channelPayNotify)
## **<a name="addOrder"> 下商标订单</a>** ## **<a name="addOrder"> 下商标订单</a>**
...@@ -364,3 +365,33 @@ ...@@ -364,3 +365,33 @@
} }
``` ```
## **<a name="channelPayNotify"> 渠道订单支付通知</a>**
[返回到目录](#menu)
##### URL
[/orderNotify/channelPayNotify]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### signature方式:md5(appkey+orderNo+payTotalSum+secret),secret是申请的密钥
``` javascript
{
"appkey":"202001170336",// Y appkey
"orderNo":"TM26202002271337mkgN",// Y 订单号
"payTotalSum":300.00,// Y 订单金额
"signature":"DC18F27EFC1A251AFC5F2FCF36ABE6FA"
}
```
#### 返回结果
```javascript
{
"status": 0,// 0为成功,否则失败
"msg": "success",
"data":null,
"requestId": "f21446617c5e46ad889f3fab7bb69456"
}
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment