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": "13ebbc2c-b557-42a9-8d60-b6746dc5d517",
"DriverID": "29b917e5-b217-4115-9c2b-5559442a0c4d",
"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>13ebbc2c-b557-42a9-8d60-b6746dc5d517</ClientID> <DriverID>29b917e5-b217-4115-9c2b-5559442a0c4d</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": "81c7222b-119d-449a-9414-719468cf4ce6",
"TaskName": "sample string 2",
"TaskOn": "2026-09-18T03:39:29.7737053+04:00",
"RoutePointID": "a889074f-a416-42d4-84df-92e252a2b3f4",
"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>a889074f-a416-42d4-84df-92e252a2b3f4</RoutePointID> <TaskID>81c7222b-119d-449a-9414-719468cf4ce6</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-09-18T03:39:29.7737053+04:00</TaskOn> </QRCodePoint>