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": "ab573f61-688e-447e-9ce2-a6513f4caa01",
"DriverID": "9747a551-17e4-4038-b84f-d798f7a8a405",
"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>ab573f61-688e-447e-9ce2-a6513f4caa01</ClientID> <DriverID>9747a551-17e4-4038-b84f-d798f7a8a405</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": "da766c19-6257-47d2-9e2c-ed83c87759a6",
"TaskName": "sample string 2",
"TaskOn": "2026-02-04T07:07:03.4495789+04:00",
"RoutePointID": "14e31153-2964-43c7-be1d-e5358452a4ad",
"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>14e31153-2964-43c7-be1d-e5358452a4ad</RoutePointID> <TaskID>da766c19-6257-47d2-9e2c-ed83c87759a6</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-02-04T07:07:03.4495789+04:00</TaskOn> </QRCodePoint>