# 订单绑定业务质量数据接口
# 请求
PUT https://apigate.glodon.com/meter/consumeOrders/bizData
1
# 请求参数
参数名 | 参数类型 | 是否必填 | 描述 |
---|---|---|---|
resourceId | String | 否 | SP的resourceId |
appKey | String | 否 | ISV的appKey |
bizId | String | 否 | 业务ID |
orderId | String | 否 | 消费订单ID |
bizData | String | 是 | 业务质量数据,json格式 |
说明:如果通过bizId确定唯一订单,需要同时传resourceId,appKey,bizId
# 返回参数
{
"code": "success",
"message": null,
"data": {
"id": 1898373840072704,
"appKey": "UBOFrpVMZXZdqDX3ucJYPjPQ6S1CUdPg",
"resourceId": "wm_resource_id1",
"bizId": null,
"pointCost": 1,
"status": "success",
"tradeType": null,
"createTime": "2020-06-30 11:47:09",
"updateTime": "2020-06-30 11:47:09",
"description": "测试消费订单调用",
"userId": "111111111",
"bizData":null,
"errorMsg":null
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
参数名 | 参数类型 | 描述 |
---|---|---|
id | Long | 订单编号 |
appKey | String | ISV appKey |
resourceId | String | SP的service ID(等同于account的resourceId) |
bizId | String | SP的业务定单ID |
pointCost | BigDecimal | 耗点 |
status | String | 状态(”fail”;“success”;“cancel”) |
tradeType | String | 交易类型 |
chargeRule | String | 扣点规则说明(服务说明) |
description | String | 描述 |
userId | String | 用户ID |
bizData | String | 业务质量数据,json格式 |
errorMsg | String | 失败信息 |