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

taobao.sungari.org.list.pull (智慧网监对集团签约机构信息拉取)

智慧网监对集团签约机构信息拉取,让余杭局能知道能执行线上办案流程的机构信息

公共参数

请求参数

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

响应参数

名称 类型 示例值 描述
result Result {} 接口返回model
  • └ data_code
  • Number
  • 0
  • code
  • data
  • SignedOrgInfo []
  • {}
  • 结果信息
  • └ gmt_modified
  • String
  • 2021-04-20 10:00:00
  • 修改时间
  • └ org_name
  • String
  • 机构名称
  • 机构名称
  • └ org_code
  • String
  • 机构唯一code
  • 机构唯一code
  • └ message_tel_list
  • String []
  • ["110","120"]
  • 发送短信的电话号码
  • └ type
  • String
  • ALI_SIGNED
  • 签约类型 详见 SignedTypeEnum

请求示例

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

响应示例

  • XML示例
  • JSON示例
<sungari_org_list_pull_response>
    <result>
        <data_code>0</data_code>
        <data>
            <signed_org_info>
                <gmt_modified>2021-04-20 10:00:00</gmt_modified>
                <org_name>机构名称</org_name>
                <org_code>机构唯一code</org_code>
                <message_tel_list>
                    <string>[&quot;110&quot;</string>
                    <string>&quot;120&quot;]</string>
                </message_tel_list>
                <type>ALI_SIGNED</type>
            </signed_org_info>
        </data>
    </result>
</sungari_org_list_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

返回
顶部