POST User/checkAccount

验证账号

Request Information

URI Parameters

None.

Body Parameters

userBindingQuery
NameDescriptionTypeAdditional information
wId

integer

None.

accountType

integer

None.

loginAccount

string

None.

pmddwUserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "wId": 1,
  "accountType": 2,
  "loginAccount": "sample string 3",
  "pmddwUserId": 4
}

application/xml, text/xml

Sample:
<userBindingQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pmddwApi.Models.Result">
  <accountType>2</accountType>
  <loginAccount>sample string 3</loginAccount>
  <pmddwUserId>4</pmddwUserId>
  <wId>1</wId>
</userBindingQuery>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

验证账号

commonResultOfObject
NameDescriptionTypeAdditional information
success

boolean

None.

code

integer

None.

singInfo

string

None.

userId

string

None.

unionid

string

None.

UID

integer

None.

counts

integer

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "code": 2,
  "singInfo": "sample string 3",
  "userId": "sample string 4",
  "unionid": "sample string 5",
  "UID": 6,
  "counts": 7,
  "data": {}
}

application/xml, text/xml

Sample:
<commonResultOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pmddwApi.Models.Result">
  <UID>6</UID>
  <code>2</code>
  <counts>7</counts>
  <data />
  <singInfo>sample string 3</singInfo>
  <success>true</success>
  <unionid>sample string 5</unionid>
  <userId>sample string 4</userId>
</commonResultOfanyType>