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.

application/json, text/json

Sample:
{
  "id": 1,
  "firstNames": "sample string 2",
  "lastName": "sample string 3",
  "title": 4,
  "email": "sample string 5",
  "mobileTelephone": "sample string 6",
  "username": "sample string 7",
  "password": "sample string 8",
  "siteID": 9,
  "statusID": 10,
  "departmentId": 11,
  "foreColor": 12,
  "backColor": 13,
  "photo": "sample string 14",
  "signature": "sample string 15",
  "allowSignatoryChange": true
}

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 2</FirstNames>
  <LastName>sample string 3</LastName>
  <Title>4</Title>
  <Email>sample string 5</Email>
  <MobileTelephone>sample string 6</MobileTelephone>
  <Username>sample string 7</Username>
  <Password>sample string 8</Password>
  <SiteID>9</SiteID>
  <StatusID>10</StatusID>
  <DepartmentId>11</DepartmentId>
  <ForeColor>12</ForeColor>
  <BackColor>13</BackColor>
  <Photo>sample string 14</Photo>
  <Signature>sample string 15</Signature>
  <AllowSignatoryChange>true</AllowSignatoryChange>
</UserDetails>