文档中心 > API类目 > 司法开放平台

qimen.alibaba.kongur.feedback.get (开放平台推送反馈处理结果到外部供应商)

开放平台推送反馈处理结果到外部供应商

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
feedbackInfoVo FeedbackInfoVo 可选 最外层对象
  • └ callingTime
  • Number
  • 可选
  • 1509606148586
  • 接口调用时间
  • └ entrustId
  • Number
  • 可选
  • 354177350425
  • 委托id
  • feedbackList
  • FeedbackDetailVo []
  • 可选
  • 反馈列表
  • └ content
  • String
  • 可选
  • 反馈内容
  • 反馈内容
  • └ suitId
  • String
  • 可选
  • 354177397620
  • 案件id
  • └ sender
  • String
  • 可选
  • 反馈人
  • 反馈人
  • └ isOk
  • String
  • 可选
  • y
  • 材料是否合格标记
  • └ feedbackType
  • String
  • 可选
  • beforecourt_communicate
  • 反馈类型
  • attachmentList
  • AttachmentBaseVo []
  • 可选
  • 附件列表
  • └ fileId
  • String
  • 可选
  • 5d2d10a6-624f-4a5f-b6ad-afec6edd5361
  • 附件id
  • └ fileType
  • String
  • 可选
  • entrust
  • 附件类型
  • └ storageType
  • String
  • 可选
  • OSS
  • 附件存储类型
  • └ filePath
  • String
  • 可选
  • alibaba/group/354177350425_08171050-c049-4/5d2d10a6-624f-4a5f-b6ad-afec6edd5361
  • 附件完整下载路径
  • └ fileName
  • String
  • 可选
  • 起诉状.pdf
  • 附件名
  • └ isDeleted
  • String
  • 可选
  • n
  • 是否删除标记
  • └ feedbackId
  • Number
  • 可选
  • 3
  • 反馈id
  • └ attachmentCount
  • Number
  • 可选
  • 1
  • 附件数量

响应参数

名称 类型 示例值 描述
errors Errors [] 错误列表
  • └ bizType
  • String
  • 1
  • 业务类型
  • └ returnErrorCode
  • String
  • 1
  • 错误码
  • └ fieldNameEn
  • String
  • userId
  • 字段名
  • └ errorMsg
  • String
  • 系统错误
  • 错误信息
  • └ businessId
  • String
  • 123
  • 业务id
sub_message String 系统错误 错误信息(验签时需要)
isSuccess Boolean true 是否成功
sub_code String 1 错误码(验签时需要)
flag String failure 标记(验签时需要,非验签时为固定值success)

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
QimenCloudClient client = new DefaultQimenCloudClient(url, appkey, secret);
AlibabaKongurFeedbackGetRequest req = new AlibabaKongurFeedbackGetRequest();
AlibabaKongurFeedbackGetRequest.FeedbackInfoVo obj1 = new AlibabaKongurFeedbackGetRequest.FeedbackInfoVo();
obj1.setCallingTime(1509606148586L);
obj1.setEntrustId(354177350425L);
List<AlibabaKongurFeedbackGetRequest.FeedbackDetailVo> list3 = new ArrayList<AlibabaKongurFeedbackGetRequest.FeedbackDetailVo>();
AlibabaKongurFeedbackGetRequest.FeedbackDetailVo obj4 = new AlibabaKongurFeedbackGetRequest.FeedbackDetailVo();
list3.add(obj4);
obj4.setContent("反馈内容");
obj4.setSuitId("354177397620");
obj4.setSender("反馈人");
obj4.setIsOk("y");
obj4.setFeedbackType("beforecourt_communicate");
List<AlibabaKongurFeedbackGetRequest.AttachmentBaseVo> list7 = new ArrayList<AlibabaKongurFeedbackGetRequest.AttachmentBaseVo>();
AlibabaKongurFeedbackGetRequest.AttachmentBaseVo obj8 = new AlibabaKongurFeedbackGetRequest.AttachmentBaseVo();
list7.add(obj8);
obj8.setFileId("5d2d10a6-624f-4a5f-b6ad-afec6edd5361");
obj8.setFileType("entrust");
obj8.setStorageType("OSS");
obj8.setFilePath("alibaba/group/354177350425_08171050-c049-4/5d2d10a6-624f-4a5f-b6ad-afec6edd5361");
obj8.setFileName("起诉状.pdf");
obj8.setIsDeleted("n");
list5.setAttachmentList(list7);
obj4.setFeedbackId(3L);
obj4.setAttachmentCount(1L);
obj1.setFeedbackList(list3);
req.setFeedbackInfoVo(obj1);
AlibabaKongurFeedbackGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<errors>
    <errors>
        <bizType>1</bizType>
        <returnErrorCode>1</returnErrorCode>
        <fieldNameEn>userId</fieldNameEn>
        <errorMsg>系统错误</errorMsg>
        <businessId>123</businessId>
    </errors>
</errors>
<sub_message>系统错误</sub_message>
<isSuccess>true</isSuccess>
<sub_code>1</sub_code>
<flag>failure</flag>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部