GET api/QRClockInOut?deviceId={deviceId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| deviceId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
QRClockInOut| Name | Description | Type | Additional information |
|---|---|---|---|
| QRCode | string |
None. |
|
| ClockInTime | date |
None. |
|
| ClockOutTime | date |
None. |
|
| status | string |
None. |
|
| Branch | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"QRCode": "sample string 1",
"ClockInTime": "2025-11-18T00:19:40.9189429+08:00",
"ClockOutTime": "2025-11-18T00:19:40.9189429+08:00",
"status": "sample string 4",
"Branch": "sample string 5"
}
text/xml
Sample:
<QRClockInOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models"> <Branch>sample string 5</Branch> <ClockInTime>2025-11-18T00:19:40.9189429+08:00</ClockInTime> <ClockOutTime>2025-11-18T00:19:40.9189429+08:00</ClockOutTime> <QRCode>sample string 1</QRCode> <status>sample string 4</status> </QRClockInOut>