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": "d3e9d811-a344-40ec-a3b8-423252ac344b",
"DriverID": "85972013-e4e6-4d18-a02b-a2ffbd55711e",
"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>d3e9d811-a344-40ec-a3b8-423252ac344b</ClientID> <DriverID>85972013-e4e6-4d18-a02b-a2ffbd55711e</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": "ac3dd059-3b36-4a3e-b622-5058602ddac3",
"TaskName": "sample string 2",
"TaskOn": "2026-08-28T11:03:59.8280325+04:00",
"RoutePointID": "6ebcc6ac-e8ab-411e-a4f1-c29036459374",
"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>6ebcc6ac-e8ab-411e-a4f1-c29036459374</RoutePointID> <TaskID>ac3dd059-3b36-4a3e-b622-5058602ddac3</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-08-28T11:03:59.8280325+04:00</TaskOn> </QRCodePoint>