文档
测试

交易佣金详情

POST
/execute

请求头

参数名
类型
描述
必填
service
String
orderService
必填
method
String
commission
必填
version
String
1.0.0
必填
clientIp
String
IP
必填
accessToken
String
token
必填

请求参数

参数名
类型
描述
必填
orderId
string
二级单ID
必填

响应参数

参数名
类型
描述
必填
orderGroupId
string
示例:5500531905517592576
必填
orderId
string
示例:5500531905517592577
必填
totalIncomeAmount
float
示例:66.8,【总计收入】
必填
totalRefundAmount
float
示例:66.8,【合计退款】
必填
detailList
array
数据列表
必填
orderItemId
string
示例:5500531905517592579,【三级单ID】
必填
incomeAmount
float
示例:53.5,
必填
refundAmount
float
示例:53.5
必填

说明 / 示例

入参: ``` { "orderId": "5500531905517592577" } ``` 出参 ``` { "success": true, "code": 200, "message": "处理成功", "data": { "orderGroupId": "5500531905517592576", "orderId": "5500531905517592577", "totalIncomeAmount": 66.80, "totalRefundAmount": 66.80, "detailList": [ { "orderItemId": "5500531905517592579", "incomeAmount": 53.5000, "refundAmount": 53.5000 }, { "orderItemId": "5500531905517592578", "incomeAmount": 13.3000, "refundAmount": 13.3000 } ] } } ```