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": "cb76e644-ec8d-44bb-92da-a0e9d2e22097",
"DriverID": "bb23b52b-3ba5-48a4-ad13-8a6776424982",
"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>cb76e644-ec8d-44bb-92da-a0e9d2e22097</ClientID> <DriverID>bb23b52b-3ba5-48a4-ad13-8a6776424982</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": "3b0166c7-4d5b-47aa-bdef-0b432ee1a691",
"TaskName": "sample string 2",
"TaskOn": "2025-12-25T18:54:23.237049+04:00",
"RoutePointID": "5a4ef606-0392-40db-b3c3-17a55c5aafa6",
"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>5a4ef606-0392-40db-b3c3-17a55c5aafa6</RoutePointID> <TaskID>3b0166c7-4d5b-47aa-bdef-0b432ee1a691</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2025-12-25T18:54:23.237049+04:00</TaskOn> </QRCodePoint>