POST api/WXProgramHR/AddInterviewDataFamily

保存家庭信息

Request Information

URI Parameters

None.

Body Parameters

FamilyInfo
NameDescriptionTypeAdditional information
name1

string

None.

guanxi1

string

None.

danwei1

string

None.

phone1

string

None.

code

code

string

None.

appid

appid

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name1": "sample string 1",
  "guanxi1": "sample string 2",
  "danwei1": "sample string 3",
  "phone1": "sample string 4",
  "code": "sample string 5",
  "appid": "sample string 6"
}

application/xml, text/xml

Sample:
<FamilyInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi">
  <appid>sample string 6</appid>
  <code>sample string 5</code>
  <danwei1>sample string 3</danwei1>
  <guanxi1>sample string 2</guanxi1>
  <name1>sample string 1</name1>
  <phone1>sample string 4</phone1>
</FamilyInfo>

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

Response Information

Resource Description

BaseResponse
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:
<BaseResponse 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>
</BaseResponse>