GET api/Account/UserInfo

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Web_API.UserInfoViewModel
NameDescriptionTypeAdditional information
Email

string

None.

HasRegistered

boolean

None.

LoginProvider

string

None.

CanViewHelpVideos

boolean

None.

DefaultConnectionId

integer

None.

IsStore

boolean

None.

IdentifierId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "HasRegistered": true,
  "LoginProvider": "sample string 3",
  "CanViewHelpVideos": true,
  "DefaultConnectionId": 5,
  "IsStore": true,
  "IdentifierId": "sample string 7"
}

application/xml, text/xml

Sample:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_API">
  <CanViewHelpVideos>true</CanViewHelpVideos>
  <DefaultConnectionId>5</DefaultConnectionId>
  <Email>sample string 1</Email>
  <HasRegistered>true</HasRegistered>
  <IdentifierId>sample string 7</IdentifierId>
  <IsStore>true</IsStore>
  <LoginProvider>sample string 3</LoginProvider>
</UserInfoViewModel>