POST Api/QRCode/GetQRCodeStatus
Request Information
URI Parameters
None.
Body Parameters
ScanQRCodeParameterName | 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": "727354b9-c0f9-41f4-97d8-4c03c41e129d", "DriverID": "befc5358-78fc-4def-8797-260ec96d73de", "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>727354b9-c0f9-41f4-97d8-4c03c41e129d</ClientID> <DriverID>befc5358-78fc-4def-8797-260ec96d73de</DriverID> <QRCode>sample string 3</QRCode> </ScanQRCodeParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
QRCodePointName | 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": "7f6b2781-4544-4f31-95b5-b28171f28d4a", "TaskName": "sample string 2", "TaskOn": "2025-07-07T09:49:42.220502+04:00", "RoutePointID": "4f85de1e-deec-491f-9ec8-35b2f547279b", "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>4f85de1e-deec-491f-9ec8-35b2f547279b</RoutePointID> <TaskID>7f6b2781-4544-4f31-95b5-b28171f28d4a</TaskID> <TaskName>sample string 2</TaskName> <TaskOn>2025-07-07T09:49:42.220502+04:00</TaskOn> </QRCodePoint>