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   阅读数 36

获取HeadCount信息

HTTP请求

GET https://api.mokahr.com/api-platform/v1/data/headcounts

请求query

字段

必填

类型

描述

fromTime

string

数据的开始时间,fromTime参数只在第一次请求时带,之后的请求就不需要带了,也就是nextfromTime只需要带其中一个。

next

string

分页参数,如果有更多的数据可供拉取,响应的json中会有一个next字段,下次请求只需要把这个next参数加到query中就可以了。fromTime参数只在第一次请求时带,之后的请求就不需要带了,也就是nextfromTime只需要带其中一个。如果响应中没有next字段,表示没有更多的数据了

limit

string

分页用的每页条数,默认100

返回

返回body的JSON数据如下:

字段

类型

描述

id

integer

HC唯一id

number

string

HC编号

startDate

string

HC开始时间

completeDate

string

HC目标完成时间

needNumber

string

HC需求人数

description

strring

HC需求描述

updatedAt

string

本条数据的最近更新时间

connectedJobIds

array

hc关联的职位id列表

请求样例

curl --location --request GET 'https://api.mokahr.com/api-platform/v1/data/headcounts?fromTime=2018-1-1&limit=100' \
--header 'Authorization: Basic aHRuYlJqcGhyRDh***FWR0Q3dUw6'
1
2
plaintext

返回样例

{ "data": [ { "id": 367824, "orgId": "orgid-test", "number": "545454156", "startDate": "2022-03-24T16:00:00.000Z", "completeDate": null, "needNumber": 3232, "description": "<p>荒天帝和火灵儿的招聘需求描述</p>", "updatedAt": "2022-03-25T06:25:36.000Z", "connectedJobIds": [] }, { "id": 180790, "orgId": "orgid-test", "number": "001", "startDate": null, "completeDate": null, "needNumber": 1, "description": null, "updatedAt": "2022-03-29T09:03:00.000Z", "connectedJobIds": [ "6179489d-0a******8962db0f7", "0cd0ed7d-1***********5-7d63a4117f63", "6d**********9c3891d9c8" ] } ], "code": 0, "msg": "success" }
1
plaintext
未能解决您的问题?请联系
本篇目录

HTTP请求

请求query

返回

请求样例

返回样例