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.

Response Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "hasRegistered": true,
  "loginProvider": "sample string 3"
}

text/html

Sample:
{"email":"sample string 1","hasRegistered":true,"loginProvider":"sample string 3"}

application/xml, text/xml

Sample:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaxDay.Models">
  <email>sample string 1</email>
  <hasRegistered>true</hasRegistered>
  <loginProvider>sample string 3</loginProvider>
</UserInfoViewModel>