POST api/WXProgramHR/ReturnInterviewer
返回待面试人员
Request Information
URI Parameters
None.
Body Parameters
BaseRequest| Name | Description | Type | Additional 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:
Response Information
Resource Description
Collection of EntityIdModel| Name | Description | Type | Additional 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>