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": "5d7e201b-dc75-431e-abab-b3fd3dcf7a69",
"DriverID": "cba126e2-c6e5-48ee-9959-3a56bc6060a5",
"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>5d7e201b-dc75-431e-abab-b3fd3dcf7a69</ClientID> <DriverID>cba126e2-c6e5-48ee-9959-3a56bc6060a5</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": "ffe1ebeb-b76f-4ab4-a3f6-8e4c90dd9adc",
"TaskName": "sample string 2",
"TaskOn": "2025-12-15T10:21:31.9870223+04:00",
"RoutePointID": "b6f9b038-b6dd-484b-947e-30d17a5edcc4",
"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>b6f9b038-b6dd-484b-947e-30d17a5edcc4</RoutePointID> <TaskID>ffe1ebeb-b76f-4ab4-a3f6-8e4c90dd9adc</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2025-12-15T10:21:31.9870223+04:00</TaskOn> </QRCodePoint>