GET api/Users/Logs?clientID={clientID}&descending={descending}
Retrieve Check-In/Check-Out Logs, based on the input client
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientID | integer |
Required |
|
| descending | boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
GetCheckInCheckOutLogsResponse
GetCheckInCheckOutLogsResponse| Name | Description | Type | Additional 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:36:44.1572153+10:00",
"Type": 0,
"Notes": "sample string 3"
},
{
"UserID": 1,
"LogTime": "2025-11-09T21:36:44.1572153+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:36:44.1572153+10:00",
"BuildDateUTC": "2025-11-09T21:36:44.1572153+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 3,
"Hotfix": 7,
"Beta": false,
"Version": "1.3.7"
}
}
application/xml, text/xml
Sample:
<GetCheckInCheckOutLogsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RimikAPI.Models.Responses">
<Messages xmlns:d2p1="http://schemas.datacontract.org/2004/07/RimikAPI.Services">
<d2p1:Common.Message>
<d2p1:CodeDesc>2</d2p1:CodeDesc>
<d2p1:MessageCode>1</d2p1:MessageCode>
<d2p1:MessageText>sample string 3</d2p1:MessageText>
<d2p1:RecordNumber>4</d2p1:RecordNumber>
<d2p1:Severity>Information</d2p1:Severity>
</d2p1:Common.Message>
<d2p1:Common.Message>
<d2p1:CodeDesc>2</d2p1:CodeDesc>
<d2p1:MessageCode>1</d2p1:MessageCode>
<d2p1:MessageText>sample string 3</d2p1:MessageText>
<d2p1:RecordNumber>4</d2p1:RecordNumber>
<d2p1:Severity>Information</d2p1:Severity>
</d2p1:Common.Message>
</Messages>
<ServerInformation xmlns:d2p1="http://schemas.datacontract.org/2004/07/RimikAPI.Services.Metadata">
<d2p1:BuildDateUTC>2025-11-09T21:36:44.1572153+10:00</d2p1:BuildDateUTC>
<d2p1:CurrentTimeUTC>2025-11-09T21:36:44.1572153+10:00</d2p1:CurrentTimeUTC>
</ServerInformation>
<VersionInformation xmlns:d2p1="http://schemas.datacontract.org/2004/07/RimikAPI.Services.Metadata" />
<Logs xmlns:d2p1="http://schemas.datacontract.org/2004/07/RimikAPI.Models">
<d2p1:APIStructs.CheckInCheckOutLog>
<d2p1:LogTime>2025-11-09T21:36:44.1572153+10:00</d2p1:LogTime>
<d2p1:Notes>sample string 3</d2p1:Notes>
<d2p1:Type>Invalid</d2p1:Type>
<d2p1:UserID>1</d2p1:UserID>
</d2p1:APIStructs.CheckInCheckOutLog>
<d2p1:APIStructs.CheckInCheckOutLog>
<d2p1:LogTime>2025-11-09T21:36:44.1572153+10:00</d2p1:LogTime>
<d2p1:Notes>sample string 3</d2p1:Notes>
<d2p1:Type>Invalid</d2p1:Type>
<d2p1:UserID>1</d2p1:UserID>
</d2p1:APIStructs.CheckInCheckOutLog>
</Logs>
</GetCheckInCheckOutLogsResponse>