ATS用户中心
所有文章
系统应用
升级公告
常见问题
公开课
校招专栏
内推和门店
数据平台
亮点功能
热门活动
基础操作视频
API文档
时间字段格式说明(Date)
API开发指南(Guide)
主动推送说明(Webhooks)
公共API
招聘官网API
企业信息API
门店API
组织架构API
职责API
用户API
招聘需求 API
候选人API
人才库API
面试API
Offer API
入职API
内推账户API
猎头API
BI报表API
district code
错误码
查询职位字段
最后更新于 2024/04/03   阅读数 64

查询职位字段接口主要用户查询系统内已创建的职位字段,包括系统默认字段和自定义字段

HTTP请求

GET https://api.mokahr.com/api-platform/v1/jobs-fields

请求query参数

字段

类型

描述

currentHireMode

integer

招聘模式
可选值:
1:社招
2:校招

返回

返回body的JSON数据如下:

字段

类型

描述

id

integer

字段ID

name

string

字段名称

type

string

字段类型

detail

string

字段详情

isRequired

integer

必填

isVisiable

integer

是否隐藏

isBuiltin

integer

是否是系统内置

请求样例

$ curl https://api.mokahr.com/api-platform/v1/jobs-fields?currentHireMode=1
  -u 'your-api_key:' \
1
2
plaintext

返回样例

{
  "success": true,
  "data": [
    {
      "id": 432,
      "name": "职位类别",
      "type": "string_info",
      "detail": null,
      "isRequired": 0,
      "isVisiable": 1,
      "isBuiltin": 1
    },
    {
      "id": 433,
      "name": "工作地点",
      "type": "select_info",
      "detail": null,
      "isRequired": 0,
      "isVisiable": 1,
      "isBuiltin": 1
    },
    {
      "id": 434,
      "name": "工作经验",
      "type": "string_info",
      "detail": null,
      "isRequired": 0,
      "isVisiable": 1,
      "isBuiltin": 1
    }
  ]
}
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
plaintext
未能解决您的问题?请联系
本篇目录

HTTP请求

请求query参数

返回

请求样例

返回样例