POST Api/Vehicle/GetSensorSummary
Request Information
URI Parameters
None.
Body Parameters
VehicleParameterName | Description | Type | Additional information |
---|---|---|---|
ClientID | globally unique identifier |
None. |
|
PartnerID | globally unique identifier |
None. |
|
VehicleID | globally unique identifier |
None. |
|
IMEINo | string |
None. |
|
GroupID | globally unique identifier |
None. |
|
OrderID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "ClientID": "58fdd3a2-c13b-40dd-8d54-a8b951cdac09", "PartnerID": "4d3b3cc7-b035-4f77-9565-1bf4b681d0eb", "VehicleID": "179146b5-eb55-46ce-a472-f193fef1d2a7", "IMEINo": "sample string 4", "GroupID": "a1c48f5a-3e33-45a0-945e-a4cf8caa52fd", "OrderID": "0b802bae-868b-4d85-90e1-71faded4a83e" }
application/xml, text/xml
Sample:
<VehicleParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity"> <ClientID>58fdd3a2-c13b-40dd-8d54-a8b951cdac09</ClientID> <GroupID>a1c48f5a-3e33-45a0-945e-a4cf8caa52fd</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>0b802bae-868b-4d85-90e1-71faded4a83e</OrderID> <PartnerID>4d3b3cc7-b035-4f77-9565-1bf4b681d0eb</PartnerID> <VehicleID>179146b5-eb55-46ce-a472-f193fef1d2a7</VehicleID> </VehicleParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SensorsViewModelName | Description | Type | Additional information |
---|---|---|---|
TemperatureSensor | Collection of TemperatureSensor |
None. |
Response Formats
application/json, text/json
Sample:
{ "TemperatureSensor": [ { "Name": "sample string 1", "Value": 2.1 }, { "Name": "sample string 1", "Value": 2.1 } ] }
application/xml, text/xml
Sample:
<SensorsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootDriver.Service.Models"> <TemperatureSensor> <TemperatureSensor> <Name>sample string 1</Name> <Value>2.1</Value> </TemperatureSensor> <TemperatureSensor> <Name>sample string 1</Name> <Value>2.1</Value> </TemperatureSensor> </TemperatureSensor> </SensorsViewModel>