GET Api/Account/UserInfo

Получение данных пользователя.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "HasRegistered": true,
  "LoginProvider": "sample string 3"
}

application/xml, text/xml

Sample:
<UserInfoApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.ApiModels.Account">
  <HasRegistered>true</HasRegistered>
  <LoginProvider>sample string 3</LoginProvider>
  <UserName>sample string 1</UserName>
</UserInfoApiModel>