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": "1789a79a-a682-42d2-9b9a-b8400e383705",
"DriverID": "cf07731e-414a-432e-b076-e24d66a3d864",
"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>1789a79a-a682-42d2-9b9a-b8400e383705</ClientID> <DriverID>cf07731e-414a-432e-b076-e24d66a3d864</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": "6d36b6f4-1baf-4da3-8eea-ce8e7ee6a7f6",
"TaskName": "sample string 2",
"TaskOn": "2026-03-26T03:23:52.3969213+04:00",
"RoutePointID": "ae0dae20-3c7b-435e-96a9-3cdf5aae3a8c",
"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>ae0dae20-3c7b-435e-96a9-3cdf5aae3a8c</RoutePointID> <TaskID>6d36b6f4-1baf-4da3-8eea-ce8e7ee6a7f6</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-03-26T03:23:52.3969213+04:00</TaskOn> </QRCodePoint>