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": "c97c8a90-b64b-4093-b005-1a3d608ec01a",
"PartnerID": "83582734-7215-401e-a690-802eed9b4b2a",
"VehicleID": "35ee61af-27de-4698-b244-39ec7d3f42c2",
"IMEINo": "sample string 4",
"GroupID": "7c0323c2-72b8-4663-b8a5-ef832e57ddca",
"OrderID": "8bc254eb-cbaa-4095-a5e2-732b976b6361"
}
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>c97c8a90-b64b-4093-b005-1a3d608ec01a</ClientID> <GroupID>7c0323c2-72b8-4663-b8a5-ef832e57ddca</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>8bc254eb-cbaa-4095-a5e2-732b976b6361</OrderID> <PartnerID>83582734-7215-401e-a690-802eed9b4b2a</PartnerID> <VehicleID>35ee61af-27de-4698-b244-39ec7d3f42c2</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>