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": "85b8f5e1-3960-4d4e-a9f6-896b1adfd388",
"DriverID": "d68fb4f1-35e6-4079-abd6-e80ad9d7b205",
"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>85b8f5e1-3960-4d4e-a9f6-896b1adfd388</ClientID> <DriverID>d68fb4f1-35e6-4079-abd6-e80ad9d7b205</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": "7b5803ab-eb3a-446b-9263-b7f26ee6edc6",
"TaskName": "sample string 2",
"TaskOn": "2026-07-09T14:56:58.225419+04:00",
"RoutePointID": "18dd9754-6f3b-4d2d-b4f9-c901c9dedee9",
"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>18dd9754-6f3b-4d2d-b4f9-c901c9dedee9</RoutePointID> <TaskID>7b5803ab-eb3a-446b-9263-b7f26ee6edc6</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-07-09T14:56:58.225419+04:00</TaskOn> </QRCodePoint>