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": "dfdf4489-1275-4f00-873f-59460340a205",
"DriverID": "cd5fd0ea-1b9e-42a2-89fc-397927485eef",
"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>dfdf4489-1275-4f00-873f-59460340a205</ClientID> <DriverID>cd5fd0ea-1b9e-42a2-89fc-397927485eef</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": "65b2810f-b96d-4113-a6f2-7b883bb846c4",
"TaskName": "sample string 2",
"TaskOn": "2026-03-26T03:22:13.7836688+04:00",
"RoutePointID": "280ee2e3-c6ba-4250-ae65-47e6ceba489b",
"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>280ee2e3-c6ba-4250-ae65-47e6ceba489b</RoutePointID> <TaskID>65b2810f-b96d-4113-a6f2-7b883bb846c4</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-03-26T03:22:13.7836688+04:00</TaskOn> </QRCodePoint>