根据候选人申请id及对应招聘需求 id。
HTTP请求
PUT https://api.mokahr.com/api-platform/v1/applications/{applicationId}/hired
请求Path参数
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
applicationId | 是 | integer | 要标记已入职的候选人申请id |
请求body参数
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
hcId | 否 | integer | 1、当”isUseOfferHcid“参数为1时,(1)若”hcId“不传参,则自动填入当前申请下的offer所关联的招聘需求id;若offer所关联的招聘需求id为空,则”hcId“参数为空。(2)若”hcId“传参,则使用传的值 2、如果传的值为null,不允许传hcId=“”或hcId=null,直接不传此字段即可。 |
hiredAt | 是 | string | 实际入职时间 |
probation | 是 | integer | 试用期 |
isUseOfferHcid | 否 | integer | 入职时是否使用offer关联的招聘需求。可选值:传1:“hcId”参数在不传参时会自动填入当前申请下的offer所关联的招聘需求id。不传参:不执行“入职时使用offer关联的招聘需求”的逻辑。 |
talentPoolIds | 否 | array | 人才库ID列表 |
返回
返回body的JSON数据如下:
字段 | 类型 | 描述 |
---|---|---|
success | boolean | 成功与否 |
errorMessage | string | 报错信息 |
请求样例
$ curl https://api.mokahr.com/api-platform/v1/applications/33582/hired \
-u 'your_api_key:' \
-X PUT \
-H 'Content-Type: application/json' \
-d ' { "hcId": 5, "hiredAt": "2018-08-06T16:00:00.000Z", "probation": 3 } '
2
3
4
5
返回样例
{ "success": true } or { "success": false, "errorMessage": "hcId 参数错误" } { "success": false, "errorMessage": "该申请已归档" }