POST Api/QRCode

Request Information

URI Parameters

None.

Body Parameters

ScanQRCodeParameter
NameDescriptionTypeAdditional information
ClientID

globally unique identifier

None.

DriverID

globally unique identifier

None.

QRCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientID": "cd1ebf73-7cd1-42b5-8506-1cd9b0888638",
  "DriverID": "ef3340d4-c530-49c7-8fce-71d8853c3efe",
  "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>cd1ebf73-7cd1-42b5-8506-1cd9b0888638</ClientID>
  <DriverID>ef3340d4-c530-49c7-8fce-71d8853c3efe</DriverID>
  <QRCode>sample string 3</QRCode>
</ScanQRCodeParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

QRCodePoint
NameDescriptionTypeAdditional 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": "59b61f3c-c3e2-47b8-8045-ab13eddf7e6d",
  "TaskName": "sample string 2",
  "TaskOn": "2025-05-20T21:28:49.6501549+04:00",
  "RoutePointID": "8197f7e1-c7d0-4941-a17a-9d3817aa4be9",
  "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>8197f7e1-c7d0-4941-a17a-9d3817aa4be9</RoutePointID>
  <TaskID>59b61f3c-c3e2-47b8-8045-ab13eddf7e6d</TaskID>
  <TaskName>sample string 2</TaskName>
  <TaskOn>2025-05-20T21:28:49.6501549+04:00</TaskOn>
</QRCodePoint>