文档中心 > API类目 > 平台治理API

taobao.cobraseller.caseinvest.invest.refuse (监管宝不予立案)

工商工作人员对监管宝里的案件做不予立案操作,触达到商家,系统会告知商家案件不予立案,防止商家被职业索赔人骚扰

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_cobra_case_simple_program_info_d_o CobraCaseSimpleProgramInfoDo 可选 不予立案数据
  • └ case_id
  • Number
  • 必须
  • 1
  • 案件code
  • └ case_name
  • String
  • 必须
  • 测试case
  • 案件名
  • └ content
  • String
  • 可选
  • 测试内容
  • 不予立案内容
  • └ detail_action
  • String
  • 可选
  • 违法行为轻微
  • 违法详情
  • └ doc_name
  • String
  • 必须
  • 测试案源名
  • 案源名
  • └ oss_key
  • String
  • 可选
  • 测试osskey
  • osskey
  • └ source
  • String
  • 必须
  • 测试来源
  • 来源
  • └ type
  • String
  • 必须
  • TYPE_NO_REGISTER
  • 类型

响应参数

名称 类型 示例值 描述
data_code Number 0 code,0:接口调用成功;1:接口调用失败
data Boolean 1234 返回素材id
data_msg String OK 提示

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
CobrasellerCaseinvestInvestRefuseRequest req = new CobrasellerCaseinvestInvestRefuseRequest();
CobrasellerCaseinvestInvestRefuseRequest.CobraCaseSimpleProgramInfoDo obj1 = new CobrasellerCaseinvestInvestRefuseRequest.CobraCaseSimpleProgramInfoDo();
obj1.setCaseId(1L);
obj1.setCaseName("测试case");
obj1.setContent("测试内容");
obj1.setDetailAction("违法行为轻微");
obj1.setDocName("测试案源名");
obj1.setOssKey("测试osskey");
obj1.setSource("测试来源");
obj1.setType("TYPE_NO_REGISTER");
req.setParamCobraCaseSimpleProgramInfoDO(obj1);
CobrasellerCaseinvestInvestRefuseResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<cobraseller_caseinvest_invest_refuse_response>
    <data_code>0</data_code>
    <data>1234</data>
    <data_msg>OK</data_msg>
</cobraseller_caseinvest_invest_refuse_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

返回
顶部