返回值为该客户下人才库里候选人相关信息 分页返回一页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 | 姓名 |
string | 邮箱 | |
phone | string | 电话 |
gender | string | 性别 |
birthYear | string | 出生年份 |
ethnic | string | 民族 |
nationality | string | 国籍 |
nativePlace | string | 籍贯 |
highestDegree | string | 最高学历 |
certificateType | integer | 证件类型 |
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 \
2
3
返回样例
{ "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" } }