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

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

alibaba.recruit.position.pagesearch (环路公司招聘官网职位分页列表数据获取)

阿里巴巴环路公司招聘官网职位分页列表数据获取

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_official_position_page_query_param OfficialPositionPageQueryParam 可选 请求参数对象
  • └ desc
  • Boolean
  • 可选
  • true
  • 排序规则:正序or倒序,默认倒序
  • └ keywords
  • String
  • 可选
  • 产品
  • 全文本关键词查询:(职位名称+描述、要求等文字)
  • └ name
  • String
  • 可选
  • 产品经理
  • 职位名称模糊查询
  • └ page_index
  • Number
  • 必须
  • 1
  • 分页游标,从1开始(每次吐出数据量不超过5000,请反向计算pageIndex和pageSize)
  • └ page_size
  • Number
  • 必须
  • 10
  • 分页大小(每次吐出数据量不超过5000,请反向计算pageIndex和pageSize)
  • └ tenant_id
  • String
  • 必须
  • 10008841190
  • 租户id(对接方给出)

响应参数

名称 类型 示例值 描述
data TopPageResult 分页对象
  • └ total_count
  • Number
  • 80
  • 分数数据总量
  • └ real_count
  • Number
  • 80
  • 分数数据总量(不建议用)
  • └ page_index
  • Number
  • 1
  • 分页游标
  • └ page_size
  • Number
  • 10
  • 分页大小
  • records
  • OfficialPositionDetailDTO []
  • 分页数据
  • └ position_id
  • String
  • 111
  • 职位id
  • └ position_code
  • String
  • GP110
  • 职位编码
  • └ name
  • String
  • HR职位
  • 职位名称
  • └ job_level
  • String
  • P6
  • 职级
  • └ position_category
  • String
  • 后端开发
  • 职类
  • └ capacity
  • Number
  • 1
  • 招聘人数
  • └ degree
  • String
  • 本科
  • 学历
  • position_intro
  • OfficialPositionIntroDTO
  • 职位文本信息
  • └ job_desc
  • String
  • xxx
  • 职位描述
  • └ team_intro
  • 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);
AlibabaRecruitPositionPagesearchRequest req = new AlibabaRecruitPositionPagesearchRequest();
AlibabaRecruitPositionPagesearchRequest.OfficialPositionPageQueryParam obj1 = new AlibabaRecruitPositionPagesearchRequest.OfficialPositionPageQueryParam();
obj1.setDesc(true);
obj1.setKeywords("产品");
obj1.setName("产品经理");
obj1.setPageIndex(1L);
obj1.setPageSize(10L);
obj1.setTenantId("10008841190");
req.setParamOfficialPositionPageQueryParam(obj1);
AlibabaRecruitPositionPagesearchResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_recruit_position_pagesearch_response>
    <data>
        <total_count>80</total_count>
        <real_count>80</real_count>
        <page_index>1</page_index>
        <page_size>10</page_size>
        <records>
            <official_position_detail_d_t_o>
                <position_id>111</position_id>
                <position_code>GP110</position_code>
                <name>HR职位</name>
                <job_level>P6</job_level>
                <position_category>后端开发</position_category>
                <capacity>1</capacity>
                <degree>本科</degree>
                <position_intro>
                    <job_desc>xxx</job_desc>
                    <team_intro>xxx</team_intro>
                    <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>
            </official_position_detail_d_t_o>
        </records>
    </data>
    <result_code>success</result_code>
    <result_message>xxx</result_message>
    <result_type>xxx</result_type>
</alibaba_recruit_position_pagesearch_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

返回
顶部