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": "5b8b1415-58bb-4932-8ee3-a9c2da91c211",
"DriverID": "d32d4d36-d60a-42fe-a97d-c8301dbf02c4",
"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>5b8b1415-58bb-4932-8ee3-a9c2da91c211</ClientID> <DriverID>d32d4d36-d60a-42fe-a97d-c8301dbf02c4</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": "05acb7d7-e51d-4da7-a14d-8c45b7f58dfb",
"TaskName": "sample string 2",
"TaskOn": "2026-02-14T07:05:01.9900272+04:00",
"RoutePointID": "8cf61f41-c18a-4252-a995-ad4755e6dce0",
"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>8cf61f41-c18a-4252-a995-ad4755e6dce0</RoutePointID> <TaskID>05acb7d7-e51d-4da7-a14d-8c45b7f58dfb</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-02-14T07:05:01.9900272+04:00</TaskOn> </QRCodePoint>