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

alibaba.legal.standpoint.insertdraft (插入草稿)

插入草稿

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
standpoint_draft_dto StandpointDraftDto 可选 口径对象
  • └ defense_caliber
  • String
  • 可选
  • 口径
  • 口径
  • └ draft_source
  • String
  • 可选
  • 来源
  • 来源
  • └ standpoint_desc
  • String
  • 可选
  • 示例场景/口径描述
  • 示例场景/口径描述
  • └ scene_name
  • String
  • 可选
  • 场景名称
  • 场景名称
  • └ remark
  • String
  • 可选
  • 备注
  • 备注
  • └ case_no
  • String
  • 可选
  • 编号
  • 编号
  • └ case_type
  • String
  • 可选
  • 类型
  • 类型
  • └ submit_people
  • String
  • 可选
  • WB01086593
  • 提交人
busid String 可选 busid busid
bus_name String 必须 busName busName
input_system_code String 可选 Vmock 系统标识

响应参数

名称 类型 示例值 描述
success_res Boolean true 是否调用成功
error_code_res Number 200 状态code
content Number true 返回内容
error_msg String 成功 状态描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalStandpointInsertdraftRequest req = new AlibabaLegalStandpointInsertdraftRequest();
AlibabaLegalStandpointInsertdraftRequest.StandpointDraftDto obj1 = new AlibabaLegalStandpointInsertdraftRequest.StandpointDraftDto();
obj1.setDefenseCaliber("口径");
obj1.setDraftSource("来源");
obj1.setStandpointDesc("示例场景/口径描述");
obj1.setSceneName("场景名称");
obj1.setRemark("备注");
obj1.setCaseNo("编号");
obj1.setCaseType("类型");
obj1.setSubmitPeople("WB01086593");
req.setStandpointDraftDto(obj1);
req.setBusid("busid");
req.setBusName("busName");
req.setInputSystemCode("Vmock");
AlibabaLegalStandpointInsertdraftResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_legal_standpoint_insertdraft_response>
    <success_res>true</success_res>
    <error_code_res>200</error_code_res>
    <content>true</content>
    <error_msg>成功</error_msg>
</alibaba_legal_standpoint_insertdraft_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

返回
顶部