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": "b4b05bb2-3ad7-4102-b8cf-3ce1bb0cdbfb",
"PartnerID": "ffdfd1d1-dff0-4581-8805-70b9d78cdc9c",
"VehicleID": "25e683d8-7a4a-412d-945a-a9931c4e5732",
"IMEINo": "sample string 4",
"GroupID": "2de91321-d955-4ea0-b03b-bd06ba849003",
"OrderID": "4bdfd0c5-a989-4eff-9510-0ac235348872"
}
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>b4b05bb2-3ad7-4102-b8cf-3ce1bb0cdbfb</ClientID> <GroupID>2de91321-d955-4ea0-b03b-bd06ba849003</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>4bdfd0c5-a989-4eff-9510-0ac235348872</OrderID> <PartnerID>ffdfd1d1-dff0-4581-8805-70b9d78cdc9c</PartnerID> <VehicleID>25e683d8-7a4a-412d-945a-a9931c4e5732</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>