POST api/clock/info
return a clock info based on a person id and a date
Request Information
URI Parameters
None.
Body Parameters
GetClockLogBinder| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonId | integer |
None. |
|
| Date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"PersonId": 1,
"Date": "2025-10-29 12:36:22"
}
application/xml, text/xml
Sample:
<GetClockLogBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding"> <Date>2025-10-29T17:36:22.3176961-07:00</Date> <PersonId>1</PersonId> </GetClockLogBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
return a clock info based on a person id and a date
API_Data_ClockPair| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Error | ErrorInfo |
None. |
|
| Data | ClockPair |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Error": {
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
},
"Data": {
"PersonId": 1,
"ItemDate": "2025-10-29 17:36:22",
"ClockOn": {
"When": "2025-10-29 12:36:22",
"IsModified": true,
"LastModifiedBy": 3,
"IsAutoGenerated": false
},
"ClockOff": {
"When": "2025-10-29 12:36:22",
"IsModified": true,
"LastModifiedBy": 3,
"IsAutoGenerated": false
},
"LastModifiedTime": "2025-10-29 12:36:22"
}
}
application/xml, text/xml
Sample:
<API_Data_ClockPair xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding">
<d2p1:ClockOff>
<d2p1:IsModified>true</d2p1:IsModified>
<d2p1:LastModifiedBy>3</d2p1:LastModifiedBy>
<d2p1:When>2025-10-29T17:36:22.3333344-07:00</d2p1:When>
</d2p1:ClockOff>
<d2p1:ClockOn>
<d2p1:IsModified>true</d2p1:IsModified>
<d2p1:LastModifiedBy>3</d2p1:LastModifiedBy>
<d2p1:When>2025-10-29T17:36:22.3333344-07:00</d2p1:When>
</d2p1:ClockOn>
<d2p1:IfOnline>3</d2p1:IfOnline>
<d2p1:ItemDate>2025-10-29T17:36:22.3333344-07:00</d2p1:ItemDate>
<d2p1:LastModifiedTime>2025-10-29T17:36:22.3333344-07:00</d2p1:LastModifiedTime>
<d2p1:PersonId>1</d2p1:PersonId>
</Data>
<Error>
<ErrorCode>1</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</Error>
<Success>true</Success>
</API_Data_ClockPair>