GET 17.0/app/user/record/{id}

Description

Gets a specific User's details with the corresponding ID

URI Parameters

Name Description Type Additional information
id

The ID of the User to retrieve details from

integer

Required

None.

None.

UserDetails

Name Description Type Additional information
ID

integer

None.

FirstNames

string

None.

LastName

string

None.

Title

integer

None.

Email

string

None.

MobileTelephone

string

None.

Username

string

None.

Password

string

None.

SiteID

integer

None.

StatusID

integer

None.

DepartmentId

integer

None.

ForeColor

integer

None.

BackColor

integer

None.

Photo

string

None.

Signature

string

None.

AllowSignatoryChange

boolean

None.

UserTypeId

integer

None.

SyncDiary

byte

None.

SyncDiaryLevel

byte

None.

application/json, text/json

Sample:
{
  "id": 1,
  "firstNames": "sample string 1",
  "lastName": "sample string 2",
  "title": 1,
  "email": "sample string 3",
  "mobileTelephone": "sample string 4",
  "username": "sample string 5",
  "password": "sample string 6",
  "siteID": 1,
  "statusID": 1,
  "departmentId": 1,
  "foreColor": 1,
  "backColor": 1,
  "photo": "sample string 7",
  "signature": "sample string 8",
  "allowSignatoryChange": true,
  "userTypeId": 1,
  "syncDiary": 64,
  "syncDiaryLevel": 64
}

application/xml, text/xml

Sample:
<UserDetails xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <FirstNames>sample string 1</FirstNames>
  <LastName>sample string 2</LastName>
  <Title>1</Title>
  <Email>sample string 3</Email>
  <MobileTelephone>sample string 4</MobileTelephone>
  <Username>sample string 5</Username>
  <Password>sample string 6</Password>
  <SiteID>1</SiteID>
  <StatusID>1</StatusID>
  <DepartmentId>1</DepartmentId>
  <ForeColor>1</ForeColor>
  <BackColor>1</BackColor>
  <Photo>sample string 7</Photo>
  <Signature>sample string 8</Signature>
  <AllowSignatoryChange>true</AllowSignatoryChange>
  <UserTypeId>1</UserTypeId>
  <SyncDiary>64</SyncDiary>
  <SyncDiaryLevel>64</SyncDiaryLevel>
</UserDetails>