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

移动/复制候选人到指定的人才库

HTTP请求

POST https://api.mokahr.com/api-platform/v1/reserveOtherTalentPool

请求参数

字段

必填

类型

描述

archiveMode

string

储备到其他人才库的方式 cut/copy

candidateIds

array[integer]

候选人ids

toTalentPoolIds

array[integer]

人才库id

fromTalentPoolId

integer

当前人才库id

hireMode

integer

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

operatorEmail

string

操作人邮箱

返回

返回body的JSON数据如下:

字段

类型

描述

code

integer

0:设置成功
1:失败

msg

string

成功

请求样例

curl --location --request POST 'https://api.mokahr.com/api-platform/v1/reserveOtherTalentPool' \
            --header 'Authorization: Basic ZndyMDAzOg==' \
            --header 'Content-Type: application/json' \
            --data-raw '{ "candidateIds": [ 201214451 ], "hireMode": 2, "fromTalentPoolId": 200003160, "toTalentPoolIds": [ 200003270 ], "archiveMode": "cut", "operatorEmail": "liutao1@mokahr.com" }'
1
2
3
4
plaintext

返回样例

{ "code": 0, "msg": "成功" }
1
plaintext
未能解决您的问题?请联系
本篇目录

HTTP请求

请求参数

返回

请求样例

返回样例