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": "9b358e58-113e-489d-b7be-30d7ea9da246",
"DriverID": "78366c40-0548-4733-b2c1-c23986386223",
"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>9b358e58-113e-489d-b7be-30d7ea9da246</ClientID> <DriverID>78366c40-0548-4733-b2c1-c23986386223</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": "1e6ecbc1-414c-4cef-b46f-480329d7a809",
"TaskName": "sample string 2",
"TaskOn": "2026-09-22T10:08:14.9786172+04:00",
"RoutePointID": "17d52205-674d-430a-a195-df1f2a5c2067",
"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>17d52205-674d-430a-a195-df1f2a5c2067</RoutePointID> <TaskID>1e6ecbc1-414c-4cef-b46f-480329d7a809</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2026-09-22T10:08:14.9786172+04:00</TaskOn> </QRCodePoint>