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

alibaba.legal.standpoint.draftstandpoint.insert (编辑后新增草稿口径)

编辑后新增草稿口径

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
input_system_code String 可选 Vmock 系统标识
standpoint_derive_draft_epaas_dto StandpointDeriveDraftEpaasDto 可选 口径
  • └ bus_id
  • String
  • 可选
  • 0
  • 业务id
  • └ draft_source
  • String
  • 可选
  • 来源
  • 来源
  • └ extend_json
  • String
  • 可选
  • {}
  • 拓展字段json
  • └ scene_name
  • String
  • 可选
  • 场景名称
  • 场景名称
  • └ bus_name
  • String
  • 可选
  • 业务名称
  • 业务名称
  • └ remark
  • String
  • 可选
  • 备注
  • 备注
  • └ input_system_code
  • String
  • 可选
  • Vmock
  • 系统标识
  • └ case_no
  • String
  • 可选
  • 编号
  • 编号
  • └ case_type
  • String
  • 可选
  • 编号
  • 类型
  • └ submit_people
  • String
  • 可选
  • 000000
  • 提交人
  • └ defense_caliber
  • String
  • 可选
  • 口径
  • 口径
  • └ source_standpoint_ids
  • String
  • 可选
  • 15219
  • 来源口径id
  • └ standpoint_desc
  • String
  • 可选
  • 口径描述
  • 口径描述

响应参数

名称 类型 示例值 描述
success_res Boolean 成功 成功
error_code_res Number 500 错误码
content Number 1 草稿口径id
error_msg String 500 错误描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalStandpointDraftstandpointInsertRequest req = new AlibabaLegalStandpointDraftstandpointInsertRequest();
req.setInputSystemCode("Vmock");
AlibabaLegalStandpointDraftstandpointInsertRequest.StandpointDeriveDraftEpaasDto obj1 = new AlibabaLegalStandpointDraftstandpointInsertRequest.StandpointDeriveDraftEpaasDto();
obj1.setBusId("0");
obj1.setDraftSource("来源");
obj1.setExtendJson("{}");
obj1.setSceneName("场景名称");
obj1.setBusName("业务名称");
obj1.setRemark("备注");
obj1.setInputSystemCode("Vmock");
obj1.setCaseNo("编号");
obj1.setCaseType("编号");
obj1.setSubmitPeople("000000");
obj1.setDefenseCaliber("口径");
obj1.setSourceStandpointIds("15219");
obj1.setStandpointDesc("口径描述");
req.setStandpointDeriveDraftEpaasDto(obj1);
AlibabaLegalStandpointDraftstandpointInsertResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_legal_standpoint_draftstandpoint_insert_response>
    <success_res>成功</success_res>
    <error_code_res>500</error_code_res>
    <content>1</content>
    <error_msg>500</error_msg>
</alibaba_legal_standpoint_draftstandpoint_insert_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

返回
顶部