POST Api/QRCode
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": "9dbf9f46-04f3-4dd8-bd11-c77f2ca5eb88",
"DriverID": "e80274ba-b68d-4aea-bab9-b63832cfd098",
"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>9dbf9f46-04f3-4dd8-bd11-c77f2ca5eb88</ClientID> <DriverID>e80274ba-b68d-4aea-bab9-b63832cfd098</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": "ba1f4813-0edc-4409-9eea-9621db33131f",
"TaskName": "sample string 2",
"TaskOn": "2026-02-04T07:11:15.4258011+04:00",
"RoutePointID": "98246a6b-799a-4a4e-b08e-21cd96e3432a",
"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>98246a6b-799a-4a4e-b08e-21cd96e3432a</RoutePointID> <TaskID>ba1f4813-0edc-4409-9eea-9621db33131f</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-02-04T07:11:15.4258011+04:00</TaskOn> </QRCodePoint>