文档中心 > API类目 > 法务服务API

alibaba.aecp.standpoint.querystandpoint (口径库查询接口)

口径库查询接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
keyword String 可选 xxxxx keyword
supplier_id String 可选 xxxxx supplierId
page_num Number 可选 3 pageNum
page_size Number 可选 3 pageSize

响应参数

名称 类型 示例值 描述
result Result result
  • └ success
  • Boolean
  • false
  • success
  • └ error_code
  • Number
  • 3
  • errorCode
  • content
  • Page
  • content
  • data
  • StandpointSearchDto []
  • data
  • options
  • Option []
  • options
  • └ title
  • String
  • xxxxx
  • title
  • └ value
  • String
  • xxxxx
  • value
  • └ id
  • Number
  • 3
  • id
  • └ defense_caliber
  • String
  • xxxxx
  • 答辩口径
  • └ source
  • String
  • xxxxx
  • 来源 /案号
  • └ standpoint_desc
  • String
  • xxxxx
  • 口径描述
  • └ proof
  • String
  • xxxxx
  • 依据 /案件类型
  • └ sence_id
  • Number
  • 3
  • 场景id
  • └ gmt_create
  • Date
  • 2000-01-01 00:00:00
  • 创建时间
  • └ labels
  • String []
  • Top,Pub
  • 标签
  • └ scenes_name
  • String
  • xxxxx
  • 场景名称
  • └ scenes_domain_str
  • String
  • xxxxx
  • 场景分类
  • └ refrence_type
  • String
  • xxxxx
  • 关联观点来源
  • └ creater_worker_no
  • String
  • xxxxx
  • 创建者
  • └ current_page
  • Number
  • 3
  • currentPage
  • └ total_count
  • Number
  • 3
  • totalCount
  • └ error_msg
  • String
  • xxxxx
  • errorMsg

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAecpStandpointQuerystandpointRequest req = new AlibabaAecpStandpointQuerystandpointRequest();
req.setKeyword("xxxxx");
req.setSupplierId("xxxxx");
req.setPageNum(3L);
req.setPageSize(3L);
AlibabaAecpStandpointQuerystandpointResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_aecp_standpoint_querystandpoint_response>
    <result>
        <success>false</success>
        <error_code>3</error_code>
        <content>
            <data>
                <standpoint_search_dto>
                    <options>
                        <option>
                            <title>xxxxx</title>
                            <value>xxxxx</value>
                        </option>
                    </options>
                    <id>3</id>
                    <defense_caliber>xxxxx</defense_caliber>
                    <source>xxxxx</source>
                    <standpoint_desc>xxxxx</standpoint_desc>
                    <proof>xxxxx</proof>
                    <sence_id>3</sence_id>
                    <gmt_create>2000-01-01 00:00:00</gmt_create>
                    <labels>
                        <string>Top</string>
                        <string>Pub</string>
                    </labels>
                    <scenes_name>xxxxx</scenes_name>
                    <scenes_domain_str>xxxxx</scenes_domain_str>
                    <refrence_type>xxxxx</refrence_type>
                    <creater_worker_no>xxxxx</creater_worker_no>
                </standpoint_search_dto>
            </data>
            <current_page>3</current_page>
            <total_count>3</total_count>
        </content>
        <error_msg>xxxxx</error_msg>
    </result>
</alibaba_aecp_standpoint_querystandpoint_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

返回
顶部