POST api/XmhHr/ReturnInterviewerInfo

返回待面试人员信息

Request Information

URI Parameters

None.

Body Parameters

InterviewerInfoDto
NameDescriptionTypeAdditional information
peoId

面试者id

integer

None.

openId

openId/token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "peoId": 1,
  "openId": "sample string 2"
}

application/xml, text/xml

Sample:
<InterviewerInfoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.HrWxModels">
  <openId>sample string 2</openId>
  <peoId>1</peoId>
</InterviewerInfoDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'InterviewerInfoDto'.

Response Information

Resource Description

BaseOut
NameDescriptionTypeAdditional 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>