GET api/Users/UserDetails?profileId={profileId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
profileId

string

Required

Body Parameters

None.

Response Information

Resource Description

UserModel
NameDescriptionTypeAdditional information
UserID

string

None.

UserBaseID

integer

None.

Username

string

None.

Password

string

None.

Name

string

None.

Surname

string

None.

Email

string

None.

Phone

string

None.

Height

integer

None.

Weight

integer

None.

Gender

string

None.

Country

string

None.

Response Formats

application/json, text/json

Sample:
{
  "UserID": "sample string 1",
  "UserBaseID": 2,
  "Username": "sample string 3",
  "Password": "sample string 4",
  "Name": "sample string 5",
  "Surname": "sample string 6",
  "Email": "sample string 7",
  "Phone": "sample string 8",
  "Height": 9,
  "Weight": 10,
  "Gender": "sample string 11",
  "Country": "sample string 12"
}

application/xml, text/xml

Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model_z_webAPIService.Models">
  <Country>sample string 12</Country>
  <Email>sample string 7</Email>
  <Gender>sample string 11</Gender>
  <Height>9</Height>
  <Name>sample string 5</Name>
  <Password>sample string 4</Password>
  <Phone>sample string 8</Phone>
  <Surname>sample string 6</Surname>
  <UserBaseID>2</UserBaseID>
  <UserID>sample string 1</UserID>
  <Username>sample string 3</Username>
  <Weight>10</Weight>
</UserModel>