POST Api/QRCode/GetQRCodeStatus
Request Information
URI Parameters
None.
Body Parameters
ScanQRCodeParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | globally unique identifier |
None. |
|
| DriverID | globally unique identifier |
None. |
|
| QRCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientID": "53dd0159-6ea2-41e2-90d0-c7fb21842626",
"DriverID": "514b83bf-f517-4aaf-8ff0-17a797426436",
"QRCode": "sample string 3"
}
application/xml, text/xml
Sample:
<ScanQRCodeParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity.Tasks"> <ClientID>53dd0159-6ea2-41e2-90d0-c7fb21842626</ClientID> <DriverID>514b83bf-f517-4aaf-8ff0-17a797426436</DriverID> <QRCode>sample string 3</QRCode> </ScanQRCodeParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
QRCodePoint| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskID | globally unique identifier |
None. |
|
| TaskName | string |
None. |
|
| TaskOn | date |
None. |
|
| RoutePointID | globally unique identifier |
None. |
|
| QRScanStatus | QRScanStatus |
None. |
Response Formats
application/json, text/json
Sample:
{
"TaskID": "6b755778-01cd-4098-8b5e-1aed96a6e89d",
"TaskName": "sample string 2",
"TaskOn": "2026-06-24T16:09:40.2280959+04:00",
"RoutePointID": "007a0e0a-3624-415b-8112-5414bb757d58",
"QRScanStatus": 0
}
application/xml, text/xml
Sample:
<QRCodePoint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity.Tasks"> <QRScanStatus>None</QRScanStatus> <RoutePointID>007a0e0a-3624-415b-8112-5414bb757d58</RoutePointID> <TaskID>6b755778-01cd-4098-8b5e-1aed96a6e89d</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-06-24T16:09:40.2280959+04:00</TaskOn> </QRCodePoint>