请求 URLPOST系统级输入参数
| 名称 | 类型 | 是否必须 | 描述 | 文档 |
---|
| _aop_timestamp | String | 否 | 请求时间戳 | 文档地址 |
| _aop_signature | String | 是 | 请求签名 | 文档地址 |
| access_token | String | 是 | 用户授权令牌 | 文档地址 |
应用级输入参数
| 名称 | 类型 | 是否必须 | 描述 | 示例值 |
---|
| tradeFeedbackParam | alibaba.ocean.openplatform.biz.trade.param.TradeFeedbackParam | 是 | 请求参数 | {"feedback":"test","orderId":"123123213"} |
返回结果
| 名称 | 类型 | 描述 | 示例值 |
---|
| result | alibaba.ocean.openplatform.biz.trade.result.TradeFeedbackResult | 返回结果 | {} |
| code | String | 错误码 | 500_2 |
| message | String | 错误描述 | remote service error |
| success | Boolean | 是否成功 | false |
错误码
| 错误码 | 错误描述 | 解决方案 |
---|
| 400_1 | parameter invalid | 检查参数是否有传及参数类型是否符合要求 |
| 400_2 | need authorization | 需要授权登录 |
| 500_1 | invoke remote service error | 调用远程服务异常,请在ISV交流群里咨询技术支持或帮助中心提单 |
| 500_2 | remote service error | 服务异常,请稍后再试,或在ISV交流群里咨询技术支持或帮助中心提单 |
| 500_2 | invalid parameter error | 请求参数无效,请在ISV交流群里咨询技术支持或帮助中心提单 |
| 500_2 | user order not exist error | 订单号对应的订单不是当前授权用户的订单,无权操作 |
| 500_2 | order not exist error | 订单号不存在对应订单,请检查订单号是否正确 |
请求示例
1{2 "feedback": "test",3 "orderId": "159095856057498520"4}
返回示例
1{2 "result": {3 "success": true4 },5 "success": true6}