GET api/users/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

User
NameDescriptionTypeAdditional information
UserID

integer

None.

Title

string

None.

FirstName

string

None.

Surname

string

None.

JobTitle

string

None.

LastLoggedIn

date

None.

Active

boolean

None.

UserTypeId

integer

None.

AspNetUserID

string

None.

DisplayOrder

integer

None.

AccessToken

string

None.

RefreshToken

string

None.

Email

string

None.

Signature

string

None.

Telephone

string

None.

Created

date

None.

Modified

date

None.

FilterTotalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "UserID": 2,
  "Title": "sample string 3",
  "FirstName": "sample string 4",
  "Surname": "sample string 5",
  "JobTitle": "sample string 6",
  "LastLoggedIn": "2025-12-07T06:52:51.6908355+00:00",
  "Active": true,
  "UserTypeId": 9,
  "AspNetUserID": "sample string 10",
  "DisplayOrder": 11,
  "AccessToken": "sample string 12",
  "RefreshToken": "sample string 13",
  "Email": "sample string 14",
  "Signature": "sample string 15",
  "Telephone": "sample string 16",
  "Created": "2025-12-07T06:52:51.6908355+00:00",
  "Modified": "2025-12-07T06:52:51.6908355+00:00",
  "FilterTotalCount": 19
}

application/xml, text/xml

Sample:
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SRElectrical.Framework.Entities">
  <AccessToken>sample string 12</AccessToken>
  <Active>true</Active>
  <AspNetUserID>sample string 10</AspNetUserID>
  <Created>2025-12-07T06:52:51.6908355+00:00</Created>
  <DisplayOrder>11</DisplayOrder>
  <Email>sample string 14</Email>
  <FilterTotalCount>19</FilterTotalCount>
  <FirstName>sample string 4</FirstName>
  <JobTitle>sample string 6</JobTitle>
  <LastLoggedIn>2025-12-07T06:52:51.6908355+00:00</LastLoggedIn>
  <Modified>2025-12-07T06:52:51.6908355+00:00</Modified>
  <RefreshToken>sample string 13</RefreshToken>
  <Signature>sample string 15</Signature>
  <Surname>sample string 5</Surname>
  <Telephone>sample string 16</Telephone>
  <Title>sample string 3</Title>
  <UserID>2</UserID>
  <UserTypeId>9</UserTypeId>
</User>