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

alibaba.legal.suit.domination.get (查询管辖信息)

查询管辖信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
suit_id Number 必须 2 案件ID
entrust_id Number 必须 1 委托ID
domination_id Number 必须 2 管辖ID

响应参数

名称 类型 示例值 描述
result ServiceResult 返回结果 alinkappserver系统返回的通用结果类
  • content
  • DominationModel
  • sss
  • 管辖内容
  • └ dominationissent_ruling_count
  • String
  • 3
  • 管辖裁决书数量
  • domination_dissent_ruling_list
  • FileModel []
  • ssss
  • 管辖裁决书附件
  • └ name
  • String
  • ss
  • 附件名称
  • └ key
  • String
  • ss
  • 附件ID
  • └ attachment_count
  • String
  • 3
  • 管辖文书
  • attachment_list
  • FileModel []
  • ss
  • 管辖文书列表
  • └ name
  • String
  • ss
  • 附件名称
  • └ key
  • String
  • ss
  • 附件id
  • └ description
  • String
  • ss
  • 备注
  • └ express_num
  • String
  • ddd
  • 快递编号
  • └ express_company
  • String
  • ddd
  • 快递公司
  • └ judge
  • String
  • dfd
  • 法官
  • └ is_court
  • String
  • y
  • 是否开庭
  • └ suit_id
  • Number
  • 33
  • 案件ID
  • └ entrust_id
  • Number
  • 44
  • 委托ID
  • └ domination_id
  • Number
  • 55
  • 管辖ID
  • └ supplier_code
  • String
  • g555
  • 供应商code
  • └ error_msg
  • String
  • error
  • 错误信息
  • └ error_code
  • String
  • E098
  • 错误码
  • └ success
  • Boolean
  • true
  • success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalSuitDominationGetRequest req = new AlibabaLegalSuitDominationGetRequest();
req.setSuitId(2L);
req.setEntrustId(1L);
req.setDominationId(2L);
AlibabaLegalSuitDominationGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_legal_suit_domination_get_response>
    <result>
        <content>
            <dominationissent_ruling_count>3</dominationissent_ruling_count>
            <domination_dissent_ruling_list>
                <file_model>
                    <name>ss</name>
                    <key>ss</key>
                </file_model>
            </domination_dissent_ruling_list>
            <attachment_count>3</attachment_count>
            <attachment_list>
                <file_model>
                    <name>ss</name>
                    <key>ss</key>
                </file_model>
            </attachment_list>
            <description>ss</description>
            <express_num>ddd</express_num>
            <express_company>ddd</express_company>
            <judge>dfd</judge>
            <is_court>y</is_court>
            <suit_id>33</suit_id>
            <entrust_id>44</entrust_id>
            <domination_id>55</domination_id>
            <supplier_code>g555</supplier_code>
        </content>
        <error_msg>error</error_msg>
        <error_code>E098</error_code>
        <success>true</success>
    </result>
</alibaba_legal_suit_domination_get_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

返回
顶部