GET api/Account/UserInfo

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

UserInfoViewModel
NameDescriptionTypeAdditional information
Email

string

None.

HasRegistered

boolean

None.

LoginProvider

string

None.

UserID

string

None.

IsAuthenticated

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "HasRegistered": true,
  "LoginProvider": "sample string 3",
  "UserID": "sample string 4",
  "IsAuthenticated": true
}

application/xml, text/xml

Sample:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MainService.Models">
  <Email>sample string 1</Email>
  <HasRegistered>true</HasRegistered>
  <IsAuthenticated>true</IsAuthenticated>
  <LoginProvider>sample string 3</LoginProvider>
  <UserID>sample string 4</UserID>
</UserInfoViewModel>