POST api/WXProgramHR/CheckEmployee
判断是否存在该微信账号的面试信息
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
CheckEmpResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
姓名 |
string |
None. |
| needsPlanId |
招聘计划id |
integer |
None. |
| postName |
面试岗位 |
string |
None. |
| re_empstatus |
-1: 无面试信息数据, 0: 录入面试信息;1:面试成功;10:面试失败; 11:面试中 2:提交入职登记表;20:放弃入职;3入职办理中(弃用);30:入职办理失败;4: 录用(录用时分配账号对接钉钉) |
integer |
None. |
| is_data_completed |
是否全部填写面试登记表 |
integer |
None. |
| msg |
消息 |
string |
None. |
| result |
是否成功 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"needsPlanId": 2,
"postName": "sample string 3",
"re_empstatus": 4,
"is_data_completed": 5,
"msg": "sample string 6",
"result": true
}
application/xml, text/xml
Sample:
<CheckEmpResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi"> <msg>sample string 6</msg> <result>true</result> <is_data_completed>5</is_data_completed> <name>sample string 1</name> <needsPlanId>2</needsPlanId> <postName>sample string 3</postName> <re_empstatus>4</re_empstatus> </CheckEmpResponse>