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": "bf22e59d-4a5b-4ab1-8dbb-11b040f3827b",
"DriverID": "ecce9f84-576e-4bf1-9e12-971da27f6358",
"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>bf22e59d-4a5b-4ab1-8dbb-11b040f3827b</ClientID> <DriverID>ecce9f84-576e-4bf1-9e12-971da27f6358</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": "f64c256e-a56c-4719-bdae-8aa6e34f7288",
"TaskName": "sample string 2",
"TaskOn": "2026-04-18T14:56:25.4692777+04:00",
"RoutePointID": "ef18b1f1-d0db-4023-898f-18ba59cd7dc2",
"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>ef18b1f1-d0db-4023-898f-18ba59cd7dc2</RoutePointID> <TaskID>f64c256e-a56c-4719-bdae-8aa6e34f7288</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-04-18T14:56:25.4692777+04:00</TaskOn> </QRCodePoint>