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

taobao.cobraseller.caseinvest.invest (监管宝商家后台服务)

提供监管宝服务的信息提交,待商家确认涉嫌违法行为,并通知商家去商家后台确认

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_invest_record_d_o InvestRecordDo 可选 商家调查笔录信息
  • └ case_id
  • String
  • 必须
  • 111
  • 唯一的案件ID
  • └ creater_confirm_evidence_id
  • Number
  • 可选
  • 10111
  • 对应ID,透传
  • item_list
  • InvestRecordItemDo []
  • 可选
  • 涉嫌违法商品信息
  • └ begin_date
  • String
  • 可选
  • 2017-01-01 00:00:00
  • 涉嫌违法时间开始时间
  • └ end_date
  • String
  • 可选
  • 2018-03-01 00:00:00
  • 涉嫌违法时间结束时间
  • └ item_id
  • Number
  • 可选
  • 564553455539
  • 商品ID
  • └ item_name
  • String
  • 可选
  • 测试商品名称
  • 商品名称
  • └ total_amount
  • String
  • 可选
  • 11023.22
  • 涉嫌违法销售额
  • └ total_days
  • String
  • 可选
  • 95
  • 涉嫌违法实际成交天数
  • └ total_num
  • String
  • 可选
  • 110
  • 涉嫌违法销售量
  • original_main_info
  • InvestRecordMainInfoDo
  • 可选
  • 商家主体信息
  • └ address
  • String
  • 可选
  • 阿里巴巴西溪园区
  • 认证地址
  • └ ent_bus_scope
  • String
  • 可选
  • 全部商品
  • 经营范围
  • └ ent_corp_name
  • String
  • 可选
  • 巴巴
  • 法定代表人
  • └ id_card_no
  • String
  • 可选
  • 110110100101110
  • 商家认证号码(身份证号或者注册号)
  • └ name
  • String
  • 可选
  • 阿里巴巴测试
  • 商家认证名称(姓名或公司名)
  • └ phone
  • String
  • 可选
  • 110
  • 联系电话
  • └ picture_oss_key1
  • String
  • 可选
  • cobra_seller_info1
  • 营业执照证件保存的ossKey
  • └ picture_oss_key2
  • String
  • 可选
  • cobra_seller_info2
  • 法人身份证正面保存的ossKey
  • └ picture_oss_key3
  • String
  • 可选
  • cobra_seller_info3
  • 法人身份证反面保存的ossKey
  • └ reg_capital
  • String
  • 可选
  • 110
  • 注册资本(万元)
  • └ seller_type
  • Number
  • 可选
  • 2
  • 商家类型,1:个人; 2:企业; 3:个体工商
  • └ zip_code
  • String
  • 可选
  • 330110
  • 邮编
  • person_list
  • InvestRecordPersonDo []
  • 可选
  • 执法人员信息
  • └ id_no
  • String
  • 可选
  • 江汀
  • 执法人员
  • └ name
  • String
  • 可选
  • 11023
  • 执法证法
  • └ detail_action
  • String
  • 可选
  • 不正当竞争
  • 违法行为描述
  • └ detail_des
  • String
  • 可选
  • XXXX在2018-04-03有不正当竞争行为,请确认
  • 违法行为详情
  • └ attachment_oss_key
  • String
  • 可选
  • cobra_seller_info3
  • 工商提供给商家看的附件信息
  • └ detail_explain
  • String
  • 可选
  • 你页面有“最”字
  • 违法信息解释说明
  • question_list
  • InvestRecordConfirmDo []
  • 可选
  • 待确认问题列表
  • └ question
  • String
  • 可选
  • 哪些你有疑问?
  • 待确认问题描述
  • └ id
  • Number
  • 可选
  • 12
  • 待确认问题唯一ID
  • └ unit_from
  • String
  • 可选
  • 余杭工商局
  • 函件来源,即调查单位
  • └ doc_name
  • String
  • 可选
  • 浙-工商-案源-字2018第J384号
  • 案源文号
  • └ case_name
  • String
  • 可选
  • 测试案件名
  • 案件名
  • └ case_source
  • String
  • 可选
  • hz12315
  • 案件来源

响应参数

名称 类型 示例值 描述
result Result {} result
  • └ code
  • Number
  • 0
  • code,0:成功;1:失败
  • └ data
  • Boolean
  • 1234
  • data内容
  • └ msg
  • String
  • 调用成功
  • msg信息说明

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
CobrasellerCaseinvestInvestRequest req = new CobrasellerCaseinvestInvestRequest();
CobrasellerCaseinvestInvestRequest.InvestRecordDo obj1 = new CobrasellerCaseinvestInvestRequest.InvestRecordDo();
obj1.setCaseId("111");
obj1.setCreaterConfirmEvidenceId(10111L);
List<CobrasellerCaseinvestInvestRequest.InvestRecordItemDo> list3 = new ArrayList<CobrasellerCaseinvestInvestRequest.InvestRecordItemDo>();
CobrasellerCaseinvestInvestRequest.InvestRecordItemDo obj4 = new CobrasellerCaseinvestInvestRequest.InvestRecordItemDo();
list3.add(obj4);
obj4.setBeginDate("2017-01-01 00:00:00");
obj4.setEndDate("2018-03-01 00:00:00");
obj4.setItemId(564553455539L);
obj4.setItemName("测试商品名称");
obj4.setTotalAmount("11023.22");
obj4.setTotalDays("95");
obj4.setTotalNum("110");
obj1.setItemList(list3);
CobrasellerCaseinvestInvestRequest.InvestRecordMainInfoDo obj5 = new CobrasellerCaseinvestInvestRequest.InvestRecordMainInfoDo();
obj5.setAddress("阿里巴巴西溪园区");
obj5.setEntBusScope("全部商品");
obj5.setEntCorpName("巴巴");
obj5.setIdCardNo("110110100101110");
obj5.setName("阿里巴巴测试");
obj5.setPhone("110");
obj5.setPictureOssKey1("cobra_seller_info1");
obj5.setPictureOssKey2("cobra_seller_info2");
obj5.setPictureOssKey3("cobra_seller_info3");
obj5.setRegCapital("110");
obj5.setSellerType(2L);
obj5.setZipCode("330110");
obj1.setOriginalMainInfo(obj5);
List<CobrasellerCaseinvestInvestRequest.InvestRecordPersonDo> list7 = new ArrayList<CobrasellerCaseinvestInvestRequest.InvestRecordPersonDo>();
CobrasellerCaseinvestInvestRequest.InvestRecordPersonDo obj8 = new CobrasellerCaseinvestInvestRequest.InvestRecordPersonDo();
list7.add(obj8);
obj8.setIdNo("江汀");
obj8.setName("11023");
obj1.setPersonList(list7);
obj1.setDetailAction("不正当竞争");
obj1.setDetailDes("XXXX在2018-04-03有不正当竞争行为,请确认");
obj1.setAttachmentOssKey("cobra_seller_info3");
obj1.setDetailExplain("你页面有“最”字");
List<CobrasellerCaseinvestInvestRequest.InvestRecordConfirmDo> list10 = new ArrayList<CobrasellerCaseinvestInvestRequest.InvestRecordConfirmDo>();
CobrasellerCaseinvestInvestRequest.InvestRecordConfirmDo obj11 = new CobrasellerCaseinvestInvestRequest.InvestRecordConfirmDo();
list10.add(obj11);
obj11.setQuestion("哪些你有疑问?");
obj11.setId(12L);
obj1.setQuestionList(list10);
obj1.setUnitFrom("余杭工商局");
obj1.setDocName("浙-工商-案源-字2018第J384号");
obj1.setCaseName("测试案件名");
obj1.setCaseSource("hz12315");
req.setParamInvestRecordDO(obj1);
CobrasellerCaseinvestInvestResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<cobraseller_caseinvest_invest_response>
    <result>
        <code>0</code>
        <data>1234</data>
        <msg>调用成功</msg>
    </result>
</cobraseller_caseinvest_invest_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

返回
顶部