HTTP请求
POST https://api.mokahr.com/api-platform/v1/headhunters/updateCompany
请求body(JSON)
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
id | 是 | number | 猎头公司id |
activated | 是 | boolean | 猎头公司状态 |
authorizedUserEmails | 否 | array[string] | 授权用户的邮箱 |
company | 是 | string | 猎头公司名称 |
contactEmail | 否 | string | 猎头公司联系人邮箱 |
contactName | 否 | string | 猎头公司联系人姓名 |
contactPhone | 否 | string | 猎头公司联系人手机号码 |
endDate | 否 | string | 猎头公司合同结束日期 |
needPermission | 否 | boolean | 猎头公司是否是授权猎头 |
notifiedUserEmails | 否 | array[string] | 猎头公司对接人 |
operatorEmail | 是 | string | 操作者email,必须为moka系统用户 |
rate | 否 | string | 猎头公司费率 |
protectTime | string | number | 猎头公司猎头保护期(天) |
rpoEnabled | 否 | boolean | 猎头公司是否开启rpo |
rpoProtectTime | 否 | number | 猎头公司批量导入候选人保护期(rpo) |
startDate | 否 | string | 猎头公司合同开始日期 |
telephone | 否 | string | 猎头公司联系人固定电话 |
telephonePrefixLocal | 否 | string | 固定电话区号 |
telephonePrefixInternational | 否 | string | 固话国际号码 |
返回
返回body的JSON数据如下:
字段 | 类型 | 描述 |
---|---|---|
code | number | 返回码:非 |
msg | number | 报错信息 |
data | object | |
data.id | number | 当前数据id |
请求样例
$ curl https://api.mokahr.com/api-platform/v1/headhunters/updateCompany
-u 'your-api-key:'
-X POST
-H 'content-type: application/json'
-d ' { "activated": "true", "authorizedUserEmails": [ "fengxiang@mokahr.com" ], "company": "20210917165739\u66f4\u65b0", "contactEmail": "20210917165739fengxiang11111@mokahr.com", "contactName": "\t\r\n\\~!@#$%^&*()_+<>?", "contactPhone": "13111111111", "endDate": "2021-08-22T00:00:00+08:00", "needPermission": true, "notifiedUserEmails": [ "fengxiang@mokahr.com" ], "operatorEmail": "fengxiang@mokahr.com", "orgId": "bytedance003", "protectTime": "10000", "rate": "99", "rpoEnabled": "true", "rpoProtectTime": "0", "startDate": "2021-08-31T00:00:00+08:00", "telephone": "12229211", "telephonePrefixLocal": "010", "telephonePrefixInternational": "86", "id": 410020302 } '
2
3
4
5
返回样例
{ "code": 200, "msg": "success", "data": { "id": 410020302 } }