POST api/login/ChangeUserInfo

Request Information

URI Parameters

None.

Body Parameters

ChangeUserReq
NameDescriptionTypeAdditional information
companyName

string

None.

userName

string

None.

phone

string

None.

wechat

string

None.

wechatNickName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "companyName": "sample string 1",
  "userName": "sample string 2",
  "phone": "sample string 3",
  "wechat": "sample string 4",
  "wechatNickName": "sample string 5"
}

application/xml, text/xml

Sample:
<ChangeUserReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
  <companyName>sample string 1</companyName>
  <phone>sample string 3</phone>
  <userName>sample string 2</userName>
  <wechat>sample string 4</wechat>
  <wechatNickName>sample string 5</wechatNickName>
</ChangeUserReq>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/plain

Sample:

Sample not available.

Response Information

Resource Description

ResultMsg
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "code": 3
}

application/xml, text/xml

Sample:
<ResultMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.Model">
  <Code>3</Code>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ResultMsg>