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": "91091b43-fea3-4268-896e-e402b4b52a6e",
"DriverID": "c105a63f-f5c4-4650-b346-9784f0440302",
"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>91091b43-fea3-4268-896e-e402b4b52a6e</ClientID> <DriverID>c105a63f-f5c4-4650-b346-9784f0440302</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": "894b2e71-65cd-43db-a10b-df0ba6b9e11d",
"TaskName": "sample string 2",
"TaskOn": "2026-06-06T18:34:57.1179494+04:00",
"RoutePointID": "7ffa78b5-c230-4f8c-8a23-af7d0ac23e55",
"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>7ffa78b5-c230-4f8c-8a23-af7d0ac23e55</RoutePointID> <TaskID>894b2e71-65cd-43db-a10b-df0ba6b9e11d</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-06-06T18:34:57.1179494+04:00</TaskOn> </QRCodePoint>