GET api/Users/Logs?clientID={clientID}&descending={descending}

Retrieve Check-In/Check-Out Logs, based on the input client

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientID

integer

Required

descending

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

GetCheckInCheckOutLogsResponse

GetCheckInCheckOutLogsResponse
NameDescriptionTypeAdditional information
Logs

Array of Check-In/Check-Out Logs

Collection of CheckInCheckOutLog

None.

Messages

Array of messages

Collection of Message

None.

ServerInformation

Relevant information regarding the Server

ServerInformation

None.

VersionInformation

Relevant information regarding the API's version

VersionInformation

None.

Response Formats

application/json, text/json, text/html

Sample:
{
  "Logs": [
    {
      "UserID": 1,
      "LogTime": "2025-11-09T21:33:42.2934703+10:00",
      "Type": 0,
      "Notes": "sample string 3"
    },
    {
      "UserID": 1,
      "LogTime": "2025-11-09T21:33:42.2934703+10:00",
      "Type": 0,
      "Notes": "sample string 3"
    }
  ],
  "Messages": [
    {
      "Severity": 0,
      "MessageCode": 1,
      "CodeDesc": 2,
      "MessageText": "sample string 3",
      "RecordNumber": 4
    },
    {
      "Severity": 0,
      "MessageCode": 1,
      "CodeDesc": 2,
      "MessageText": "sample string 3",
      "RecordNumber": 4
    }
  ],
  "ServerInformation": {
    "CurrentTimeUTC": "2025-11-09T21:33:42.2934703+10:00",
    "BuildDateUTC": "2025-11-09T21:33:42.2934703+10:00"
  },
  "VersionInformation": {
    "Major": 1,
    "Minor": 8,
    "Hotfix": 0,
    "Beta": true,
    "Version": "1.8.0.BETA"
  }
}