GET User/GetUser?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

LoggedUserData
NameDescriptionTypeAdditional information
UserID

integer

None.

Name

string

None.

PhonePrefix

string

None.

Phone

string

None.

Email

string

None.

LoginType

integer

None.

LoginTypeValue

string

None.

IsCorporate

boolean

None.

ActiveAddressID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "Name": "sample string 2",
  "PhonePrefix": "sample string 3",
  "Phone": "sample string 4",
  "Email": "sample string 5",
  "LoginType": 6,
  "LoginTypeValue": "sample string 7",
  "IsCorporate": true,
  "ActiveAddressID": 9
}

application/xml, text/xml

Sample:
<LoginModelDTO.LoggedUserData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CoreLayer.DTOs">
  <ActiveAddressID>9</ActiveAddressID>
  <Email>sample string 5</Email>
  <IsCorporate>true</IsCorporate>
  <LoginType>6</LoginType>
  <LoginTypeValue>sample string 7</LoginTypeValue>
  <Name>sample string 2</Name>
  <Phone>sample string 4</Phone>
  <PhonePrefix>sample string 3</PhonePrefix>
  <UserID>1</UserID>
</LoginModelDTO.LoggedUserData>