查询日历事件
POST
/RecruitV6/api/v1/Calendar/GetByOwnerAndTime
一次查询最多50人
错误码示例
错误码:417 ,错误信息:业务逻辑错误,解决方式:根据message中的提示修改相关传入数据
错误码:500,错误信息:系统异常,解决方式:请联系北森技术人员
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.italent.cn/RecruitV6/api/v1/Calendar/GetByOwnerAndTime' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventType":1,
"ownerIds":[101482196],
"start":"2021-06-20T01:00:00",
"end":"2021-06-25T01:00:00"
}'
响应示例响应示例
{
"data": [
{
"id": "string",
"ownerId": 0,
"foreignEventID": "string",
"startTime": "2019-08-24T14:15:22Z",
"endTime": "2019-08-24T14:15:22Z",
"title": "string",
"customizeInfo": [
{
"key": "string",
"value": "string"
}
]
}
],
"code": 0,
"message": "string"
}
请求参数
Body 参数application/json
返回响应
修改于 2021-10-13 10:54:25