POST api/WXProgramHR/CheckInterviewData

判断是否全部填写面试信息

Request Information

URI Parameters

None.

Body Parameters

BaseRequest
NameDescriptionTypeAdditional information
code

code

string

None.

appid

appid

string

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "appid": "sample string 2"
}

application/xml, text/xml

Sample:
<BaseRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi">
  <appid>sample string 2</appid>
  <code>sample string 1</code>
</BaseRequest>

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 'BaseRequest'.

Response Information

Resource Description

CheckInterviewResponse
NameDescriptionTypeAdditional 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:
<CheckInterviewResponse 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>
</CheckInterviewResponse>