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