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": "ee105412-0822-4358-a9a8-cf7e5e67ee11",
"DriverID": "7e1a59ac-75bc-4de1-a6db-a0bb888e1385",
"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>ee105412-0822-4358-a9a8-cf7e5e67ee11</ClientID> <DriverID>7e1a59ac-75bc-4de1-a6db-a0bb888e1385</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": "d817ef8c-10c8-4a39-a097-25ad25e1402f",
"TaskName": "sample string 2",
"TaskOn": "2026-06-06T18:36:48.5733988+04:00",
"RoutePointID": "8e51559c-e2de-4d67-babe-3379765021ae",
"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>8e51559c-e2de-4d67-babe-3379765021ae</RoutePointID> <TaskID>d817ef8c-10c8-4a39-a097-25ad25e1402f</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-06-06T18:36:48.5733988+04:00</TaskOn> </QRCodePoint>