传入Offer信息,创建一个Offer。需要与您企业对接的客户成功经理协助开启该功能
HTTP请求
POST https://api.mokahr.com/api-platform/v1/create-offer
请求body参数
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
applicationId | 是 | integer | 要更新offer审批结果的申请id |
salaryNumber | 否 | integer | 候选人薪资 |
salaryType | 否 | integer | 薪资类型 |
checkinDate | 否 | string | 入职时间 |
locationId | 否 | integer | 入职地点id |
contactUserName | 否 | string | 联系人姓名 |
contactPhone | 否 | string | 联系人电话 |
contactEmail | 否 | string | 联系人邮箱 |
customFields | 否 | array | 自定义字段 |
customFields[].id | 否 | string | 自定义字段名称(注:Id和name参数必须传其一) |
customFields[].name | 否 | string | 自定义字段名称(注:Id和name参数必须传其一) |
customFields[].value | 否 | string | 自定义字段值 |
creatorEmail | 否 | string | 创建人邮箱 |
creatorNumber | 否 | string | 创建人工号 |
toCandidateAttachment | 否 | array | 发送给候选人的附件key(通过公共API附件上传接口获取),数量不能超过5个 |
toApproverAttachment | 否 | array | 发送给审批人的附件key(通过公共API附件上传接口获取),数量不能超过5个 |
hcId | 否 | integer | 关联headcount ID |
jobRankId | 否 | integer | 职位级别id(获取企业职位级别接口获取) |
departmentCode | 否 | string | 入职部门code |
isCreateOfferAttachment | 否 | boolean | false:不创建offer附件,true:创建默认offer附件 |
templateId | 否 | integer | offer附件模板id |
请求样例
$ curl https://api.mokahr.com/api-platform/v1/create-offer \
-u 'your_api_key:' \
-X POST \
-H 'Content-Type: application/json' \
-d ' { "applicationId": 12, "salaryNumber": 1000, "salaryType": 1, "checkinDate": "2018-08-06T16:00:00.000Z", "contactUserName": "张三", "contactEmail": "zhangsan@mokahr.com", "contactPhone": "18612345678", "locationId": 1, "customFields": [ { "name": "字段1", "value": "value1" }, { "name": "字段2", "value": 2 } ] } '
2
3
4
5
返回样例
{ "success": true } or { "success": false, "errorMessage": "错误信息" }