获取职位
分页获取本公司所有职位.
Get Positions
Method:GET
Path:/positions
Headers
Key | Required | Type | Description |
---|---|---|---|
token | Yes | string | 令牌 |
Query Parameters
Key | Required | Type | Description |
---|---|---|---|
page_num | No | integer | 页码 |
page_size | No | integer | 数量 |
Response data
Key | Describe |
---|---|
id | 职位id |
job_number | 第三方职位id |
title | 职位标题 |
team | 所在部门 |
cities | 城市 |
publish_date | 发布时间 |
stop_date | 截止时间 |
accountability | 职位描述 |
experience | 工作经验(年) |
experience_above | 及以上 |
requirement | 职位要求 |
language | 外语要求 |
update_time | 更新时间 |
business_group | 事业群 |
employment_type | 工作性质 |
hr_email | HR联系人邮箱 |
degree | 学历( 0 无, 1 大专, 2 本科, 3 硕士, 4 MBA, 5 博士, 6 中专, 7 高中 ,8 博士后 , 9 初中) |
degree_above | 及以上 |
features | 职位特色 |
email_notice | 申请后是否给HR发邮件 |
candidate_source | 招聘类型 |
occupation | 职位职能 |
is_recom | 需要推荐 |
industry | 所属行业 |
district | 区 |
count | 招聘人数 |
salary_top | 薪资上限(k) |
salary_bottom | 薪资下限(k) |
management_experience | 是否要求管理经验 |
gender | 性别 |
publisher | HR id |
publisher_name | HR姓名 |
work_address | 工作地址 |
is_hiring | 是否急招 |
underlings | 下属人数 |
language_required | 是否要求语言 |
target_industry | 期望人选所在行业 |
is_referral | 是否内推 |
ext | 职位扩展字段 |
addresses | LBS |
top | 置顶标签。true表示置顶,false表示未置顶 |
coordinator_id | 招聘协助HR id |
coordinator_name | 招聘协作HR 姓名 |
custom_fields | 职位自定义字段信息 |
Response
{
"code": 0,
"message": "",
"data": {
"total": 44770,
"page": 1,
"data": [
{
"id": 19551566,
"job_number": "JOB202003313",
"title": "测试职位1",
"team": {
"id": 188365547,
"name": "万达集团/商管集团/酒店管理公司"
},
"publish_date": "2020-03-31 18:01:46",
"stop_date": null,
"accountability": null,
"experience": "3",
"requirement": "职位要求",
"language": "英语",
"update_time": "2020-03-31 19:21:51",
"business_group": "",
"employment_type": 0,
"hr_email": null,
"degree": 0,
"top":false,
"coordinator_name": "协助HR姓名",
"coordinator_id":"1000211",
"features": [
{
"id": 119,
"company_id": 39978,
"name": "班车",
"create_time": "2018-03-06 21:04:10",
"update_time": "2019-10-14 17:32:11",
"status": "有效"
},
{
"id": 145,
"company_id": 39978,
"name": "加班补助",
"create_time": "2018-03-06 21:04:12",
"update_time": "2019-10-28 15:59:21",
"status": "有效"
}
],
"email_notice": 0,
"candidate_source": 0,
"occupation": "",
"is_recom": 1,
"industry": "",
"district": "",
"count": 1,
"salary_top": 100,
"salary_bottom": 10,
"experience_above": 0,
"degree_above": 0,
"management_experience": 1,
"gender": 2,
"publisher": 82752,
"publisher_name": null,
"work_address": "",
"is_hiring": 0,
"underlings": 0,
"language_required": 0,
"target_industry": 0,
"current_status": 0,
"is_referral": 0,
"ext_vo": {
"job_custom_id": 0,
"create_time": "1585648906000",
"update_time": "1585648906000",
"job_occupation_id": 0,
"pid": 19551566,
"extra": null,
"ext": "ext3"
},
"custom_fields": [
{
"id": 123,
"config_type": 1,
"config_name": "职位自定义字段",
"value": "职位自定义字段下的选项"
},
{
"id": 124,
"config_type": 2,
"config_name": "职能自定义字段",
"value": "字段二的选项"
},
{
"id": 125,
"config_type": 3,
"config_name": "职位自定义字段三",
"value": "字段三的选项"
}
],
"addresses": [
{
"id": 1,
"address_name": "默认1111",
"company_id": 39978,
"province": null,
"city": 320500,
"region": null,
"address": "address_t",
"department_id": 0,
"department_name": null,
"longitude": "116.3974510",
"latitude": "39.9091870",
"point": null
}
]
}
],
"page_size": 1
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120