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": "d925766e-808b-4b93-8fa5-568ba71550dc",
"PartnerID": "e0b92c48-81f3-4b93-aae9-3c6b8aef4ed8",
"VehicleID": "1c543ed6-2a9b-45e2-a981-f6ce48408cae",
"IMEINo": "sample string 4",
"GroupID": "242abb90-dd03-4240-9237-f5dd06e132aa",
"OrderID": "00a3e580-75de-4ab2-bea3-bce3aa25ab4d"
}
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>d925766e-808b-4b93-8fa5-568ba71550dc</ClientID> <GroupID>242abb90-dd03-4240-9237-f5dd06e132aa</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>00a3e580-75de-4ab2-bea3-bce3aa25ab4d</OrderID> <PartnerID>e0b92c48-81f3-4b93-aae9-3c6b8aef4ed8</PartnerID> <VehicleID>1c543ed6-2a9b-45e2-a981-f6ce48408cae</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,
"ValueString": "sample string 3"
},
{
"Name": "sample string 1",
"Value": 2.1,
"ValueString": "sample string 3"
}
]
}
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>
<ValueString>sample string 3</ValueString>
</TemperatureSensor>
<TemperatureSensor>
<Name>sample string 1</Name>
<Value>2.1</Value>
<ValueString>sample string 3</ValueString>
</TemperatureSensor>
</TemperatureSensor>
</SensorsViewModel>