注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 阿里巴巴招聘系统API

alibaba.recruit.position.getdetail (阿里巴巴环路公司招聘职位详情接口)

阿里巴巴环路公司招聘职位详情接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_official_position_query_param OfficialPositionQueryParam 可选 请求参数
  • └ tenant_id
  • String
  • 必须
  • 10008841190
  • 租户id(开发提供)
  • └ position_code
  • String
  • 必须
  • GP18001
  • 职位编码

响应参数

名称 类型 示例值 描述
data OfficialPositionDetailDTO 职位详情数据对象
  • └ position_id
  • String
  • 111
  • 职位id
  • └ position_code
  • String
  • GP111
  • 职位编码
  • └ name
  • String
  • HR职位
  • 职位名称
  • └ job_level
  • String
  • P6
  • 职级
  • └ position_category
  • String
  • 开发工程
  • 职类
  • └ publish_time
  • Date
  • 时间
  • 发布时间
  • └ create_time
  • Date
  • 时间
  • 创建时间
  • └ capacity
  • Number
  • 1
  • 招募人数
  • └ degree
  • String
  • 本科
  • 学历
  • └ work_year_lower_limit
  • Number
  • 1
  • 年限下边界
  • └ work_year_upper_limit
  • Number
  • 3
  • 年限上边界
  • position_intro
  • OfficialPositionIntroDTO
  • 职位文本信息
  • └ team_intro
  • String
  • xxx
  • 团队介绍
  • └ job_desc
  • String
  • xxx
  • 职位描述
  • └ requirement_desc
  • String
  • xxx
  • 职位要求
  • work_areas
  • OfficialWorkAreaDTO
  • 工作地
  • └ full_name
  • String
  • 中国-浙江-杭州
  • 全称
  • └ name
  • String
  • 杭州
  • 简称
  • position_addr_areas
  • OfficialWorkAreaAddrDTO []
  • 工作地详情列表
  • └ full_name
  • String
  • 中国-浙江-杭州
  • 全称
  • └ name
  • String
  • 杭州
  • 简称
  • └ address
  • String
  • 杭州-余杭区
  • 如果有具体区地址,返回杭州-余杭区;没有则返回杭州
result_code String success 结果编码
result_message String xxx 结果信息(错误有)
result_type String xxx 结果类型(错误有)

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaRecruitPositionGetdetailRequest req = new AlibabaRecruitPositionGetdetailRequest();
AlibabaRecruitPositionGetdetailRequest.OfficialPositionQueryParam obj1 = new AlibabaRecruitPositionGetdetailRequest.OfficialPositionQueryParam();
obj1.setTenantId("10008841190");
obj1.setPositionCode("GP18001");
req.setParamOfficialPositionQueryParam(obj1);
AlibabaRecruitPositionGetdetailResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_recruit_position_getdetail_response>
    <data>
        <position_id>111</position_id>
        <position_code>GP111</position_code>
        <name>HR职位</name>
        <job_level>P6</job_level>
        <position_category>开发工程</position_category>
        <publish_time>时间</publish_time>
        <create_time>时间</create_time>
        <capacity>1</capacity>
        <degree>本科</degree>
        <work_year_lower_limit>1</work_year_lower_limit>
        <work_year_upper_limit>3</work_year_upper_limit>
        <position_intro>
            <team_intro>xxx</team_intro>
            <job_desc>xxx</job_desc>
            <requirement_desc>xxx</requirement_desc>
        </position_intro>
        <work_areas>
            <full_name>中国-浙江-杭州</full_name>
            <name>杭州</name>
        </work_areas>
        <position_addr_areas>
            <official_work_area_addr_d_t_o>
                <full_name>中国-浙江-杭州</full_name>
                <name>杭州</name>
                <address>杭州-余杭区</address>
            </official_work_area_addr_d_t_o>
        </position_addr_areas>
    </data>
    <result_code>success</result_code>
    <result_message>xxx</result_message>
    <result_type>xxx</result_type>
</alibaba_recruit_position_getdetail_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

返回
顶部