POST Api/RoutePointItem/Update
Request Information
URI Parameters
None.
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{ "ClientID": "55e399e5-d6e0-4427-9a30-76822c15350e", "TaskID": "a1233644-2eca-4d42-8a7a-6cb0c69e6f46", "RoutePointID": "18bf0a9c-cc20-45cc-93d7-17c49ca09f30", "ItemName": "sample string 4", "ID": "39362af0-03c0-47e5-8317-72f7ba9fc771", "ItemCategoryID": "6b7e2d55-2bde-429a-9e85-119deb5b5757", "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": "ce354bb3-058f-43bc-a17b-abc8ed8719c2", "ItemClassificationName": "sample string 15", "Price": 16.1, "TemperatureSensorID": 17, "TemperatureSensorName": "sample string 18", "TemperatureSensorValue": 19.1, "DeliveryRoutePointID": "3ee73507-66b1-4ed8-aed5-1b9c8ff90eed" }
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>55e399e5-d6e0-4427-9a30-76822c15350e</ClientID> <DeliveryRoutePointID>3ee73507-66b1-4ed8-aed5-1b9c8ff90eed</DeliveryRoutePointID> <ID>39362af0-03c0-47e5-8317-72f7ba9fc771</ID> <ImageURL>sample string 13</ImageURL> <ItemCategoryID>6b7e2d55-2bde-429a-9e85-119deb5b5757</ItemCategoryID> <ItemCategoryName>sample string 7</ItemCategoryName> <ItemClassificationID>ce354bb3-058f-43bc-a17b-abc8ed8719c2</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>18bf0a9c-cc20-45cc-93d7-17c49ca09f30</RoutePointID> <TaskID>a1233644-2eca-4d42-8a7a-6cb0c69e6f46</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>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultName | Description | Type | Additional information |
---|---|---|---|
IsValid | boolean |
None. |
|
Message | Collection of string |
None. |
|
ResponseCodes | Collection of integer |
None. |
|
Id | globally unique identifier |
None. |
|
Value | string |
None. |
|
RecordOn | date |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsValid": true, "Message": [ "sample string 1", "sample string 2" ], "ResponseCodes": [ 1, 2 ], "Id": "fea0dfdb-6198-47d0-b3a8-25ada38f6502", "Value": "sample string 3", "RecordOn": "2025-05-20T21:58:03.8483906+04:00" }
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity"> <Id>fea0dfdb-6198-47d0-b3a8-25ada38f6502</Id> <IsValid>true</IsValid> <Message xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </Message> <RecordOn>2025-05-20T21:58:03.8483906+04:00</RecordOn> <ResponseCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </ResponseCodes> <Value>sample string 3</Value> </Result>