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

alibaba.legal.suit.entrust.lawyer.push (委托实际承办律师回填)

委托实际承办律师回填

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
case_id Number 必须 35417735693019 案件加密id
entrust_id Number 必须 35417732585019 委托加密id
actual_lawyer_info_model ActualLawyerInfoModel 必须 律师信息
  • └ lawyer_name
  • String
  • 必须
  • 测试律师名称
  • 律师名称
  • └ lawyer_phone
  • String
  • 必须
  • 1111111111111
  • 律师联系方式
  • └ law_firm_name
  • String
  • 必须
  • 测试律所名称
  • 律所名称

响应参数

名称 类型 示例值 描述
success_res Boolean true 是否成功
error_code_res String null 错误编码
content String null 无f返回
error_msg String null 错误描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalSuitEntrustLawyerPushRequest req = new AlibabaLegalSuitEntrustLawyerPushRequest();
req.setCaseId(35417735693019L);
req.setEntrustId(35417732585019L);
AlibabaLegalSuitEntrustLawyerPushRequest.ActualLawyerInfoModel obj1 = new AlibabaLegalSuitEntrustLawyerPushRequest.ActualLawyerInfoModel();
obj1.setLawyerName("测试律师名称");
obj1.setLawyerPhone("1111111111111");
obj1.setLawFirmName("测试律所名称");
req.setActualLawyerInfoModel(obj1);
AlibabaLegalSuitEntrustLawyerPushResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_legal_suit_entrust_lawyer_push_response>
    <success_res>true</success_res>
    <error_code_res>null</error_code_res>
    <content>null</content>
    <error_msg>null</error_msg>
</alibaba_legal_suit_entrust_lawyer_push_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

返回
顶部