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

返回值为该客户下人才库里候选人相关信息 分页返回一页20条数据

HTTP请求

GET https://api.mokahr.com/api-platform/v1/talentPool/candidates?archivedAtStart=2019-06-01&archivedAtEnd=2019-11-01

请求参数

字段

必填

类型

描述

archivedAtStart

string

归档时间下限

archivedAtEnd

string

归档时间上限

talentPoolIds

Array

人才库ID列表

nextCursor

string

下一页(每页20条)分页标记

返回

返回data的candidates字段信息如下:

字段

类型

描述

id

integer

候选人ID

name

string

姓名

email

string

邮箱

phone

string

电话

gender

string

性别

birthYear

string

出生年份

ethnic

string

民族

nationality

string

国籍

nativePlace

string

籍贯

highestDegree

string

最高学历

certificateType

integer

证件类型
可选值:
1:身份证
2:香港身份证
3:澳门身份证
4:台湾身份证
5:护照
6:其他证件
7:港澳居民来往内地通行证
8:台湾居民来往内地通行证
9:外国人工作许可证
10:外国人居留许可证

citizenId

string

身份证号

location

string

所在地

candidateArchivedAt

string

候选人最后被归档的时间

archiveHistory

Array

申请归档记录

archiveHistory[].id

integer

申请ID

archiveHistory[].stageId

integer

申请归档前阶段ID

archiveHistory[].stage

string

申请归档前阶段名

archiveHistory[].archivedAt

string

申请归档时间

archiveHistory[].archiveReasonId

integer

归档原因ID

archiveHistory[].archiveReason

string

归档原因

archiveHistory[].archiveType

string

归档类型

archiveHistory[].archiveDetail

string

归档详情

archiveHistory[].blacklistTags

string

黑名单标签(只有黑名单库有)

archiveHistory[].blacklistDetail

string

黑名单原因(只有黑名单库有)

talentPools

Array

当前候选人所在的人才库列表

talentPools[].talentPoolId

integer

人才库ID

talentPools[].talentPoolName

string

人才库名字

请求样例

$ curl https://api.mokahr.com/api-platform/v1/talentPool/candidates?archivedAtStart=2019-06-01&archivedAtEnd=2019-11-01&talentPoolIds=[666,888] \
   -u 'your_api_key:' \
   -X GET \
1
2
3
plaintext

返回样例

{ "success": true, "data": { "candidates": [{ "id": 4293, "name": "姜浩", "email": "82355110791@qq.com", "phone": "18762604190", "gender": "男", "birthYear": null, "ethnic": null, "nationality": null, "nativePlace": null, "highestDegree": null, "certificateType": 1, "citizenId": null, "location": null, "candidateArchivedAt": "2019-10-30T07:28:26.000Z", "archiveHistory": [{ "id": 39131, "stageId": 56, "stage": "初筛", "archivedAt": "2019-10-30T07:28:26.000Z", "archiveReasonId": 1113, "archiveReason": "加入黑名单", "archiveType": "系统原因", "archiveDetail": null, "blacklistTags": "态度恶劣,简历造假", "blacklistDetail": "789" }], "talentPools": [{ "talentPoolId": 203, "talentPoolName": "系统黑名单" }] }, { "id": 21906, "name": "fanhaha", "email": "fanhaha@mokahr.com", "phone": null, "gender": null, "birthYear": null, "ethnic": null, "nationality": null, "nativePlace": null, "highestDegree": null, "certificateType": 1, "candidateArchivedAt": "2019-10-17T05:26:57.000Z", "archiveHistory": [{ "id": 39162, "stageId": 56, "stage": "初筛", "archivedAt": "2019-10-17T05:26:57.000Z", "archiveReasonId": 7, "archiveReason": "胜任力不足", "archiveType": "我们拒绝了候选人", "archiveDetail": null }], "talentPools": [{ "talentPoolId": 22, "talentPoolName": "系统公共人才库" }] }, { "id": 8805, "name": "邓婷婷", "email": "18857886047@163.com", "phone": "18857886047", "gender": "女", "birthYear": 1990, "ethnic": null, "nationality": null, "nativePlace": null, "highestDegree": null, "certificateType": 1, "candidateArchivedAt": "2019-10-17T05:26:57.000Z", "archiveHistory": [{ "id": 15793, "stageId": 56, "stage": "初筛", "archivedAt": "2017-08-18T07:51:24.000Z", "archiveReasonId": 96, "archiveReason": "淘汰", "archiveType": "我们拒绝了候选人", "archiveDetail": null }, { "id": 39132, "stageId": 56, "stage": "初筛", "archivedAt": "2019-10-17T05:26:57.000Z", "archiveReasonId": 7, "archiveReason": "胜任力不足", "archiveType": "我们拒绝了候选人", "archiveDetail": null } ], "talentPools": [{ "talentPoolId": 37, "talentPoolName": "中级产品类" }, { "talentPoolId": 22, "talentPoolName": "系统公共人才库" } ] } ], "nextCursor": "eyJjYW5kaWRhdGVJZCI6MTQzMzR9" } }
1
plaintext
未能解决您的问题?请联系
本篇目录

HTTP请求

请求参数

返回

请求样例

返回样例