查询推荐人信息
POST
/RecruitV6/api/v1/Recommend/GetReferrerInfo
最多只支持查询100条
员工号、邮箱、手机号三选一即可
支持多选,查询优先级 员工号〉邮箱〉手机号
错误码示例
错误码:417,错误信息:业务逻辑错误,解决方式:根据message中的提示修改相关传入数据
错误码:500,错误信息:系统异常,解决方式:请联系北森技术人员
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.italent.cn/RecruitV6/api/v1/Recommend/GetReferrerInfo' \
--header 'Content-Type: application/json' \
--data-raw '{
"referrerInfos": [{
"employeeId": "",
"mail": "liaoxiaolu127796@beisen.com",
"phone": "13656565656"
}, {
"employeeId": "zxb666",
"mail": "zxb127796@beisen.com",
"phone": ""
}]
}'
响应示例响应示例
{
"data": [
{
"referrerId": "string",
"referrerName": "string",
"referrerType": 0,
"beisenUserId": 0,
"referrerPhone": "string",
"referrerEmail": "string",
"referrerEmployeeId": "string",
"bonusBalance": "string",
"pointsBalance": "string",
"accumulationBonus": "string",
"accumulationPoints": "string",
"bindingStatus": 0,
"departmentName": "string"
}
],
"code": 0,
"message": "string"
}
请求参数
Body 参数application/json
返回响应
修改于 2021-10-13 10:54:25