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": "102d957c-dd75-41d1-b79d-52347ff85b2f",
"PartnerID": "8ebd52a6-85d1-4b43-a1d0-de85b2bae1d3",
"VehicleID": "e6c1bcb1-6b16-4f0f-b075-51ce9cf871d3",
"IMEINo": "sample string 4",
"GroupID": "380c3938-9b8b-4b70-8560-e5f0ddae6e94",
"OrderID": "623061fc-90a5-42ab-a576-07b92eaa378e"
}
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>102d957c-dd75-41d1-b79d-52347ff85b2f</ClientID> <GroupID>380c3938-9b8b-4b70-8560-e5f0ddae6e94</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>623061fc-90a5-42ab-a576-07b92eaa378e</OrderID> <PartnerID>8ebd52a6-85d1-4b43-a1d0-de85b2bae1d3</PartnerID> <VehicleID>e6c1bcb1-6b16-4f0f-b075-51ce9cf871d3</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>