POST Api/Vehicle/GetSensorSummary
Request Information
URI Parameters
None.
Body Parameters
VehicleParameter| Name | 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": "b96813fa-91d4-4e95-bbdd-2df8c7a6150e",
"PartnerID": "5922994a-c2f5-4634-baf8-ed35a25a8752",
"VehicleID": "f80a9ea7-bfb7-45a8-9c4f-35e518fa0d45",
"IMEINo": "sample string 4",
"GroupID": "c6769ae0-ebfe-4ee6-9d56-577cc16edf93",
"OrderID": "4caca84e-f58d-40f0-8cac-c3938bcab9d4"
}
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>b96813fa-91d4-4e95-bbdd-2df8c7a6150e</ClientID> <GroupID>c6769ae0-ebfe-4ee6-9d56-577cc16edf93</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>4caca84e-f58d-40f0-8cac-c3938bcab9d4</OrderID> <PartnerID>5922994a-c2f5-4634-baf8-ed35a25a8752</PartnerID> <VehicleID>f80a9ea7-bfb7-45a8-9c4f-35e518fa0d45</VehicleID> </VehicleParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SensorsViewModel| Name | 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>