GET Api/RoutePointItem/GetByID?clientID={clientID}&taskID={taskID}&routePointID={routePointID}&itemID={itemID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientID | globally unique identifier |
Required |
|
taskID | globally unique identifier |
Required |
|
routePointID | globally unique identifier |
Required |
|
itemID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
RoutePointItemViewModelName | Description | Type | Additional information |
---|---|---|---|
ClientID | globally unique identifier |
None. |
|
TaskID | globally unique identifier |
None. |
|
RoutePointID | globally unique identifier |
None. |
|
ItemName | string |
None. |
|
ID | globally unique identifier |
None. |
|
ItemCategoryID | globally unique identifier |
None. |
|
ItemCategoryName | string |
None. |
|
Qty | decimal number |
None. |
|
VatPer | decimal number |
None. |
|
Total | decimal number |
None. |
|
TemperatureSensor | string |
None. |
|
Note | string |
None. |
|
ImageURL | string |
None. |
|
ItemClassificationID | globally unique identifier |
None. |
|
ItemClassificationName | string |
None. |
|
Price | decimal number |
None. |
|
TemperatureSensorID | integer |
None. |
|
TemperatureSensorName | string |
None. |
|
TemperatureSensorValue | decimal number |
None. |
|
DeliveryRoutePointID | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{ "ClientID": "d36edbd3-5cb5-40d6-962b-cd5c80889959", "TaskID": "cde77756-5272-4943-a9cf-0d8511fc8861", "RoutePointID": "9a9cd453-89ea-4d01-89b2-0724cac2db17", "ItemName": "sample string 4", "ID": "a068318b-64cf-4843-8f4c-e275b561d5cf", "ItemCategoryID": "4e0bf2c3-3f8a-43c3-96dd-c2421016dcb5", "ItemCategoryName": "sample string 7", "Qty": 8.1, "VatPer": 9.1, "Total": 10.1, "TemperatureSensor": "sample string 11", "Note": "sample string 12", "ImageURL": "sample string 13", "ItemClassificationID": "8b27f4e3-9b15-4652-b694-515eb842e305", "ItemClassificationName": "sample string 15", "Price": 16.1, "TemperatureSensorID": 17, "TemperatureSensorName": "sample string 18", "TemperatureSensorValue": 19.1, "DeliveryRoutePointID": "9b21e715-139c-4de0-91ba-7ff74c6ba0ea" }
application/xml, text/xml
Sample:
<RoutePointItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootDriver.Service.Models"> <ClientID>d36edbd3-5cb5-40d6-962b-cd5c80889959</ClientID> <DeliveryRoutePointID>9b21e715-139c-4de0-91ba-7ff74c6ba0ea</DeliveryRoutePointID> <ID>a068318b-64cf-4843-8f4c-e275b561d5cf</ID> <ImageURL>sample string 13</ImageURL> <ItemCategoryID>4e0bf2c3-3f8a-43c3-96dd-c2421016dcb5</ItemCategoryID> <ItemCategoryName>sample string 7</ItemCategoryName> <ItemClassificationID>8b27f4e3-9b15-4652-b694-515eb842e305</ItemClassificationID> <ItemClassificationName>sample string 15</ItemClassificationName> <ItemName>sample string 4</ItemName> <Note>sample string 12</Note> <Price>16.1</Price> <Qty>8.1</Qty> <RoutePointID>9a9cd453-89ea-4d01-89b2-0724cac2db17</RoutePointID> <TaskID>cde77756-5272-4943-a9cf-0d8511fc8861</TaskID> <TemperatureSensor>sample string 11</TemperatureSensor> <TemperatureSensorID>17</TemperatureSensorID> <TemperatureSensorName>sample string 18</TemperatureSensorName> <TemperatureSensorValue>19.1</TemperatureSensorValue> <Total>10.1</Total> <VatPer>9.1</VatPer> </RoutePointItemViewModel>