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": "a2f65aed-4b03-4b79-bda0-7c3743744ea9",
"DriverID": "e0964199-c69f-41f4-9178-e362778d03b4",
"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>a2f65aed-4b03-4b79-bda0-7c3743744ea9</ClientID> <DriverID>e0964199-c69f-41f4-9178-e362778d03b4</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": "c9fb0665-47cc-482c-b423-eaf9d677d671",
"TaskName": "sample string 2",
"TaskOn": "2026-06-24T02:59:35.0537602+04:00",
"RoutePointID": "5ce35b5a-c560-45af-a934-eb0c2d6b7dec",
"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>5ce35b5a-c560-45af-a934-eb0c2d6b7dec</RoutePointID> <TaskID>c9fb0665-47cc-482c-b423-eaf9d677d671</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-06-24T02:59:35.0537602+04:00</TaskOn> </QRCodePoint>