文档中心 > API类目 > 平台治理API

taobao.sungari.case.reply.pull (智慧网监案件回复拉取)

智慧网监拉取合作政府人员录入案件的回复信息,进行线上案件完结

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
org_name String 必须 智慧网监 机构名称
secret String 必须 cc2521f77ae7d86fc7d2b2c281e543e7 密钥

响应参数

名称 类型 示例值 描述
result Result result 接口返回model
  • └ data_code
  • Number
  • 0
  • code
  • data
  • CaseReplyPullDo []
  • 返回的数据集合
  • 返回的数据集合
  • └ reply_type
  • String
  • CASE_FINISH
  • 回复类型
  • └ case_id
  • String
  • 123
  • 案件id
  • └ file_url
  • String
  • www.taobao.com
  • 附件
  • └ content
  • String
  • 我们已经线下办结了这个案件,详情请见附件
  • 回复内容
  • └ reply_time
  • String
  • 2020-01-01 00:00:00
  • 回复时间
  • └ org_code
  • String
  • 12314
  • 操作人机构code
  • └ org_name
  • String
  • xxx监管局
  • 操作人机构名称
  • └ person
  • String
  • 张三
  • 操作人姓名
  • └ outer_id
  • String
  • 123
  • 网监id

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
SungariCaseReplyPullRequest req = new SungariCaseReplyPullRequest();
req.setOrgName("智慧网监");
req.setSecret("cc2521f77ae7d86fc7d2b2c281e543e7");
SungariCaseReplyPullResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<sungari_case_reply_pull_response>
    <result>
        <data_code>0</data_code>
        <data>
            <case_reply_pull_do>
                <reply_type>CASE_FINISH</reply_type>
                <case_id>123</case_id>
                <file_url>www.taobao.com</file_url>
                <content>我们已经线下办结了这个案件,详情请见附件</content>
                <reply_time>2020-01-01 00:00:00</reply_time>
                <org_code>12314</org_code>
                <org_name>xxx监管局</org_name>
                <person>张三</person>
                <outer_id>123</outer_id>
            </case_reply_pull_do>
        </data>
    </result>
</sungari_case_reply_pull_response>

异常示例

  • 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

返回
顶部