GET api/QRClockInOut?deviceId={deviceId}&qrcode={qrcode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
deviceId

string

Required

qrcode

string

Required

Body Parameters

None.

Response Information

Resource Description

QRClockInOut
NameDescriptionTypeAdditional 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": "2024-05-11T13:58:49.7251225+08:00",
  "ClockOutTime": "2024-05-11T13:58:49.7251225+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>2024-05-11T13:58:49.7251225+08:00</ClockInTime>
  <ClockOutTime>2024-05-11T13:58:49.7251225+08:00</ClockOutTime>
  <QRCode>sample string 1</QRCode>
  <status>sample string 4</status>
</QRClockInOut>