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": "4220d4cb-6ab2-42cb-9c30-e6d4e87a0274",
"PartnerID": "47c097c8-d9d0-41cb-b540-01323735e22e",
"VehicleID": "76bcf940-d80f-4158-9d02-d07047f9c3c0",
"IMEINo": "sample string 4",
"GroupID": "91f3b141-7af7-48ef-b402-1c1802303961",
"OrderID": "0b9f3978-b507-4265-b14a-91ea63451762"
}
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>4220d4cb-6ab2-42cb-9c30-e6d4e87a0274</ClientID> <GroupID>91f3b141-7af7-48ef-b402-1c1802303961</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>0b9f3978-b507-4265-b14a-91ea63451762</OrderID> <PartnerID>47c097c8-d9d0-41cb-b540-01323735e22e</PartnerID> <VehicleID>76bcf940-d80f-4158-9d02-d07047f9c3c0</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>