HTTP请求
PUT https://api.mokahr.com/api-platform/v1/applications/{applicationId}/resign
请求Path参数
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
applicationId | 是 | integer | 要标记已离职的候选人申请id |
请求body参数
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
reasonType | 否 | integer | 离职类型的归档原因id |
detail | 是 | string | 离职原因 |
time | 否 | string | 离职时间 (默认请求时间) |
否 | string | 操作人的邮箱 | |
talentPoolId | 否 | array | 操作人有权限的人才库ID(先用查询人才库列表接口,查询人才库id) |
isResignWriteJob | 否 | boolean | 是否回写离职信息 |
resignJobName | 否 | string | 离职职位 |
resignDepartment | 否 | string | 离职部门 |
reason | 否 | int | 离职原因 |
resignJobType | 否 | string | 离职职类 |
返回
返回body的JSON数据如下:
字段 | 描述 |
---|---|
success | boolean |
errorMessage | string |
code | string |
可能的错误信息
code | errorMessage | 说明 |
---|---|---|
0 | success | 成功 |
40040101 | applicationId.error | 候选人申请id错误(a.不存在该申请id;b.类型错误) |
40040102 | reason.error | 离职原因错误(类型错误) |
40040104 | talent_pool_Id.error | 人才库错误(a.不是离职人才库) |
40040105 | email.error | 用户邮箱错误(a.不存在该用户;b.邮箱错误) |
40040106 | user_permission.error | 用户无权限 |
请求样例
$ curl https://api.mokahr.com/api-platform/v1/applications/35392/resign \
-u 'your_api_key:' \
-X PUT \
-H 'Content-Type: application/json' \
-d ' { "type": 1, "detail":"世界那么大,我想去看看", "time": "2018-08-06T16:00:00.000Z" }
2
3
4
5
返回样例
{ "success": true } or { "success": false, "errorMessage": "找不到归档原因,归档信息错误", "code": 40040102 }