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": "5c89e99f-b883-4ef9-beec-5dc315b6e23d",
"DriverID": "9f43930a-e930-46a5-9799-ac661f29d84e",
"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>5c89e99f-b883-4ef9-beec-5dc315b6e23d</ClientID> <DriverID>9f43930a-e930-46a5-9799-ac661f29d84e</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": "68e78c8c-42c2-4e22-be7a-586880e9001a",
"TaskName": "sample string 2",
"TaskOn": "2026-05-09T16:44:04.5586346+04:00",
"RoutePointID": "39be6912-ea54-473f-b77d-191ce8ec26f5",
"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>39be6912-ea54-473f-b77d-191ce8ec26f5</RoutePointID> <TaskID>68e78c8c-42c2-4e22-be7a-586880e9001a</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-05-09T16:44:04.5586346+04:00</TaskOn> </QRCodePoint>