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": "d31b4724-e751-4dd7-9785-d3d95f215627",
"DriverID": "03d82c09-7299-4d4f-9a0f-6e3c8cb5431c",
"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>d31b4724-e751-4dd7-9785-d3d95f215627</ClientID> <DriverID>03d82c09-7299-4d4f-9a0f-6e3c8cb5431c</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": "c7224737-0023-4c30-a25d-153c332cf1cc",
"TaskName": "sample string 2",
"TaskOn": "2026-03-25T01:28:05.8375835+04:00",
"RoutePointID": "7e7972fe-0051-44b8-8548-e348bd86f619",
"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>7e7972fe-0051-44b8-8548-e348bd86f619</RoutePointID> <TaskID>c7224737-0023-4c30-a25d-153c332cf1cc</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-03-25T01:28:05.8375835+04:00</TaskOn> </QRCodePoint>