GET api/users/user/{userId}

Get a user by id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

A user id.

integer

Required

Body Parameters

None.

Response Information

Resource Description

User
NameDescriptionTypeAdditional information
UserId

User Id.

integer

None.

OrgId

Orginisation Id.

integer

None.

Username

Username.

string

None.

Firstname

Firstname.

string

None.

Lastname

Lastname.

string

None.

IsArchived

If user archived or active.

boolean

None.

Email

Email address.

string

None.

DateOfBirth

Date of birth.

date

None.

ProfilePhotoUrl

Profile photo temporary url.

string

None.

DateCreated

Date user was created on.

date

None.

LastActivity

Last user activity.

date

None.

IsStaff

If user is a staff member.

boolean

None.

AdvancedID

ASSO ID.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "OrgId": 2,
  "Username": "sample string 3",
  "Firstname": "sample string 4",
  "Lastname": "sample string 5",
  "IsArchived": true,
  "Email": "sample string 7",
  "DateOfBirth": "2024-09-21T03:00:50.6737057+00:00",
  "ProfilePhotoUrl": "sample string 9",
  "DateCreated": "2024-09-21T03:00:50.6737057+00:00",
  "LastActivity": "2024-09-21T03:00:50.6737057+00:00",
  "IsStaff": true,
  "AdvancedID": "sample string 13"
}

application/xml, text/xml

Sample:
<User xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UserId>1</UserId>
  <OrgId>2</OrgId>
  <Username>sample string 3</Username>
  <Firstname>sample string 4</Firstname>
  <Lastname>sample string 5</Lastname>
  <IsArchived>true</IsArchived>
  <Email>sample string 7</Email>
  <DateOfBirth>2024-09-21T03:00:50.6737057+00:00</DateOfBirth>
  <ProfilePhotoUrl>sample string 9</ProfilePhotoUrl>
  <DateCreated>2024-09-21T03:00:50.6737057+00:00</DateCreated>
  <LastActivity>2024-09-21T03:00:50.6737057+00:00</LastActivity>
  <IsStaff>true</IsStaff>
  <AdvancedID>sample string 13</AdvancedID>
</User>