POST api/WXProgramHR/ReturnInterviewer

返回待面试人员

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

Collection of EntityIdModel
NameDescriptionTypeAdditional information
id

integer

None.

name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2"
  },
  {
    "id": 1,
    "name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEntityIdModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models">
  <EntityIdModel>
    <id>1</id>
    <name>sample string 2</name>
  </EntityIdModel>
  <EntityIdModel>
    <id>1</id>
    <name>sample string 2</name>
  </EntityIdModel>
</ArrayOfEntityIdModel>