alibaba.eshiqi.crop.relation.inspection.submit (企企关联查验提交)

提交查询请求,传入需要查询关系的公司名称,立即返回一个查询实例ID 建议 社会统一信用证号、工商注册号、公司全称 只填一个能唯一确定公司的即可 当两证号和公司名称都填时,第一选择是社会统一信用证号,第二选择是工商注册号,第三选择是公司名称

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param BizCorpRelSubmitQueryRequestDto 可选 请求参数
  • └ biz_idempotent_no
  • String
  • 必须
  • 201908102222122
  • 幂等号(防止业务端重复提交)
  • company_info_list
  • SearchCompanyInfoDto []
  • 必须
  • 查验请求数据列表
  • └ corp_name
  • String
  • 可选
  • 阿里巴巴(上海)有限公司
  • 公司全名
  • └ reg_no
  • String
  • 可选
  • 52250000000xxxx
  • 工商注册号
  • └ credit_code
  • String
  • 可选
  • 91370104MA3N1XXXXX
  • 社会统一信用证号
  • └ notify_url
  • String
  • 可选
  • http://xxxxx.xxxxx.com/callback
  • 回调通知url

响应参数

名称 类型 示例值 描述
corp_rel_instance_id Number 12312 查验实例id
succeeded Boolean true 是否成功
response_code String 200 请求状态200表示请求成功
response_msg String ok 请求异常备注说明

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaEshiqiCropRelationInspectionSubmitRequest req = new AlibabaEshiqiCropRelationInspectionSubmitRequest();
AlibabaEshiqiCropRelationInspectionSubmitRequest.BizCorpRelSubmitQueryRequestDto obj1 = new AlibabaEshiqiCropRelationInspectionSubmitRequest.BizCorpRelSubmitQueryRequestDto();
obj1.setBizIdempotentNo("201908102222122");
List<AlibabaEshiqiCropRelationInspectionSubmitRequest.SearchCompanyInfoDto> list3 = new ArrayList<AlibabaEshiqiCropRelationInspectionSubmitRequest.SearchCompanyInfoDto>();
AlibabaEshiqiCropRelationInspectionSubmitRequest.SearchCompanyInfoDto obj4 = new AlibabaEshiqiCropRelationInspectionSubmitRequest.SearchCompanyInfoDto();
list3.add(obj4);
obj4.setCorpName("阿里巴巴(上海)有限公司");
obj4.setRegNo("52250000000xxxx");
obj4.setCreditCode("91370104MA3N1XXXXX");
obj1.setCompanyInfoList(list3);
obj1.setNotifyUrl("http://xxxxx.xxxxx.com/callback");
req.setParam(obj1);
AlibabaEshiqiCropRelationInspectionSubmitResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_eshiqi_crop_relation_inspection_submit_response>
    <corp_rel_instance_id>12312</corp_rel_instance_id>
    <succeeded>true</succeeded>
    <response_code>200</response_code>
    <response_msg>ok</response_msg>
</alibaba_eshiqi_crop_relation_inspection_submit_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

返回
顶部