POST api/WXProgramHR/SubmitInterviewResult
面试官提交面试结果
Request Information
URI Parameters
None.
Body Parameters
InterviewResultRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| peo_id |
应聘人 |
integer |
None. |
| isSuccess |
0:未通过 1:通过 |
integer |
None. |
| area1 | string |
None. |
|
| area2 | string |
None. |
|
| area3 | string |
None. |
|
| code |
code |
string |
None. |
| appid |
appid |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"peo_id": 1,
"isSuccess": 2,
"area1": "sample string 3",
"area2": "sample string 4",
"area3": "sample string 5",
"code": "sample string 6",
"appid": "sample string 7"
}
application/xml, text/xml
Sample:
<InterviewResultRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models"> <appid xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi">sample string 7</appid> <code xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi">sample string 6</code> <area1>sample string 3</area1> <area2>sample string 4</area2> <area3>sample string 5</area3> <isSuccess>2</isSuccess> <peo_id>1</peo_id> </InterviewResultRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| msg |
消息 |
string |
None. |
| result |
是否成功 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"msg": "sample string 1",
"result": true
}
application/xml, text/xml
Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi"> <msg>sample string 1</msg> <result>true</result> </BaseResponse>