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": "efeb634d-1bdb-4c3d-a641-801c2c13031e",
"DriverID": "0bc02768-2f98-4e8a-8b7a-97748beff9d8",
"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>efeb634d-1bdb-4c3d-a641-801c2c13031e</ClientID> <DriverID>0bc02768-2f98-4e8a-8b7a-97748beff9d8</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": "e64d5c90-9ee9-4ef1-9088-05a12b6f4ba7",
"TaskName": "sample string 2",
"TaskOn": "2025-12-15T10:25:05.1837767+04:00",
"RoutePointID": "23ec7d50-53ad-4adf-b18e-e7a72ea48bc5",
"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>23ec7d50-53ad-4adf-b18e-e7a72ea48bc5</RoutePointID> <TaskID>e64d5c90-9ee9-4ef1-9088-05a12b6f4ba7</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2025-12-15T10:25:05.1837767+04:00</TaskOn> </QRCodePoint>