alibaba.eshiqi.crop.relation.inspection.query (企企关联结果查询)

根据 查询实例ID,请求展示页面URL及简要结果。 调用此接口的目的是为了获取URL并展示,因此默认请求到的URL是需要被用户打开的

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
corp_rel_instance_id Number 必须 1001 查询实例id
scene_type String 可选 BIDDING 场景:招投标->BIDDING

响应参数

名称 类型 示例值 描述
result QueryCorpRelResultPageResponseDto 返回参数
  • └ result
  • String
  • SUCCESS
  • 查询结果,在已经完成的情况下,是成功还是失败 PENDING:还在查询中 SUCCESS:查询成功 FAILURE:查询失败 UNKNOWN:公司未知
  • biz_corp_rel_result_instance_list
  • BizCorpRelResultInstanceDto []
  • 公司关系结果
  • └ start_corp
  • String
  • A公司
  • 开始公司
  • └ end_corp
  • String
  • B公司
  • 结束公司
  • └ rel_type
  • String
  • Y
  • 是否有关联关系
  • └ judgement
  • String
  • 共同投资
  • 关联关系原因
  • └ strength
  • String
  • 0.5
  • 关联关系强弱
  • └ suggestion
  • String
  • A公司和B公司不能同时出现
  • 管理建议
  • └ embed_page_url
  • String
  • https://xxxxxxxx.xxxx.com?xxxxxx=xxxx
  • 授权可访问一次的页面URL
  • └ status
  • String
  • FINISH
  • 查询状态,正在查询还是已经完成 SUBMITTED:已提交查询; QUERYING:正在查询; FINISH:已完成,成功还是失败请查询其它字段;
  • └ succeeded
  • Boolean
  • true
  • 请求状态
  • └ response_code
  • String
  • 200
  • 服务响应状态
  • └ response_msg
  • String
  • ok
  • 响应说明

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaEshiqiCropRelationInspectionQueryRequest req = new AlibabaEshiqiCropRelationInspectionQueryRequest();
req.setCorpRelInstanceId(1001L);
req.setSceneType("BIDDING");
AlibabaEshiqiCropRelationInspectionQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_eshiqi_crop_relation_inspection_query_response>
    <result>
        <result>SUCCESS</result>
        <biz_corp_rel_result_instance_list>
            <biz_corp_rel_result_instance_dto>
                <start_corp>A公司</start_corp>
                <end_corp>B公司</end_corp>
                <rel_type>Y</rel_type>
                <judgement>共同投资</judgement>
                <strength>0.5</strength>
                <suggestion>A公司和B公司不能同时出现</suggestion>
            </biz_corp_rel_result_instance_dto>
        </biz_corp_rel_result_instance_list>
        <embed_page_url>https://xxxxxxxx.xxxx.com?xxxxxx=xxxx</embed_page_url>
        <status>FINISH</status>
        <succeeded>true</succeeded>
        <response_code>200</response_code>
        <response_msg>ok</response_msg>
    </result>
</alibaba_eshiqi_crop_relation_inspection_query_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

返回
顶部