POST api/XmhHr/RemoveInterviewData
面试官删除面试人员
Request Information
URI Parameters
None.
Body Parameters
RemoveInterviewDto| Name | Description | Type | Additional information |
|---|---|---|---|
| peo_id |
应聘人id |
Collection of integer |
None. |
| openId |
openId/token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"peo_id": [
1,
2
],
"openId": "sample string 1"
}
application/xml, text/xml
Sample:
<RemoveInterviewDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.HrWxModels">
<openId>sample string 1</openId>
<peo_id xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</peo_id>
</RemoveInterviewDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseOut| Name | Description | Type | Additional information |
|---|---|---|---|
| errcode |
错误编码 2:error 401:鉴权失败;200:成功;500:内部错误; |
ErrCode |
None. |
| message |
消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"errcode": 2,
"message": "sample string 1"
}
application/xml, text/xml
Sample:
<BaseOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.HrWxModels"> <errcode>Error</errcode> <message>sample string 1</message> </BaseOut>