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

alibaba.legal.standpoint.query (口径查询)

口径查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
keyword String 可选 测试 关键字
page_num Number 可选 1 页号
page_size Number 可选 10 页面大小
user_id String 可选 WB01083593 用户id
input_system_code String 可选 Vmock 系统标识

响应参数

名称 类型 示例值 描述
success_res Boolean true 是否成功
error_code_res Number 200 返回状态
content Page 分页对象
  • data
  • StandpointOutPutDto []
  • 口径对象
  • └ standpoint_desc
  • String
  • 观点描述
  • 观点描述
  • └ defense_caliber
  • String
  • 口径
  • 口径
  • └ gmt_create
  • String
  • 2022-08-01
  • 创建时间
  • └ scenes_strucct
  • String
  • 场景结构
  • 场景结构
  • └ scenes_name
  • String
  • 场景名称
  • 场景名称
  • └ creater_worker_no
  • String
  • WB01083593
  • 创建者
  • └ scenes_id
  • Number
  • 11
  • 场景id
  • └ standpoint_labels
  • String []
  • 标签
  • 口径标签
  • options
  • Option []
  • options
  • └ title
  • String
  • 标题
  • 扩展字段标题
  • └ value
  • String
  • 扩展字段值
  • 扩展字段值
  • file_values
  • FileDto []
  • 文件对象
  • └ file_id
  • Number
  • 112233
  • 文件中心id
  • └ file_name
  • String
  • 测试文件
  • 文件名称
  • └ file_type
  • String
  • 测试类型
  • 文件类型
  • └ preview_url
  • String
  • 预览地址
  • 预览地址
  • └ download_url
  • String
  • 下载地址
  • 下载地址
  • └ type
  • String
  • 类型
  • 类型
  • └ label
  • String
  • label
  • label
  • └ table_str
  • String []
  • table信息
  • └ table_schema
  • String
  • tableSchema
  • tableSchema
  • └ id
  • Number
  • 11
  • id
  • └ current_page
  • Number
  • 当前页
  • 1
  • └ total_count
  • Number
  • 总数
  • 100
error_msg String 错误描述 系统错误

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalStandpointQueryRequest req = new AlibabaLegalStandpointQueryRequest();
req.setKeyword("测试");
req.setPageNum(1L);
req.setPageSize(10L);
req.setUserId("WB01083593");
req.setInputSystemCode("Vmock");
AlibabaLegalStandpointQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_legal_standpoint_query_response>
    <success_res>true</success_res>
    <error_code_res>200</error_code_res>
    <content>
        <data>
            <standpoint_out_put_dto>
                <standpoint_desc>观点描述</standpoint_desc>
                <defense_caliber>口径</defense_caliber>
                <gmt_create>2022-08-01</gmt_create>
                <scenes_strucct>场景结构</scenes_strucct>
                <scenes_name>场景名称</scenes_name>
                <creater_worker_no>WB01083593</creater_worker_no>
                <scenes_id>11</scenes_id>
                <standpoint_labels>
                    <string>标签</string>
                </standpoint_labels>
                <options>
                    <option>
                        <title>标题</title>
                        <value>扩展字段值</value>
                        <file_values>
                            <file_dto>
                                <file_id>112233</file_id>
                                <file_name>测试文件</file_name>
                                <file_type>测试类型</file_type>
                                <preview_url>预览地址</preview_url>
                                <download_url>下载地址</download_url>
                            </file_dto>
                        </file_values>
                        <type>类型</type>
                    </option>
                </options>
                <label>label</label>
                <table_schema>tableSchema</table_schema>
                <id>11</id>
            </standpoint_out_put_dto>
        </data>
        <current_page>当前页</current_page>
        <total_count>总数</total_count>
    </content>
    <error_msg>错误描述</error_msg>
</alibaba_legal_standpoint_query_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

返回
顶部