GET api/Account/GetUserInfo

No documentation available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Fullname": "sample string 2",
  "StreetName": "sample string 3",
  "Zipcode": "sample string 4",
  "Phone": "sample string 5",
  "Gender": "sample string 6",
  "BirthDate": "2024-03-29T16:18:41.1341812+01:00",
  "NewsLetter": true,
  "Email": "sample string 8"
}

application/xml, text/xml

Sample:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Boliga.Web.API.Models">
  <BirthDate>2024-03-29T16:18:41.1341812+01:00</BirthDate>
  <Email>sample string 8</Email>
  <Fullname>sample string 2</Fullname>
  <Gender>sample string 6</Gender>
  <NewsLetter>true</NewsLetter>
  <Phone>sample string 5</Phone>
  <StreetName>sample string 3</StreetName>
  <UserName>sample string 1</UserName>
  <Zipcode>sample string 4</Zipcode>
</UserInfoViewModel>