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": "a7fa542d-2ae9-46c1-9423-d50ec157a916",
"PartnerID": "8cbb56b6-3759-4f97-8bc3-ca3e174eeba4",
"VehicleID": "e764c420-70f5-4910-851b-ca28083531c6",
"IMEINo": "sample string 4",
"GroupID": "74c2ff83-33fb-4e42-980a-c944a567e89c",
"OrderID": "c19fa9a1-49a3-474c-9373-4d08f4906cbc"
}
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>a7fa542d-2ae9-46c1-9423-d50ec157a916</ClientID> <GroupID>74c2ff83-33fb-4e42-980a-c944a567e89c</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>c19fa9a1-49a3-474c-9373-4d08f4906cbc</OrderID> <PartnerID>8cbb56b6-3759-4f97-8bc3-ca3e174eeba4</PartnerID> <VehicleID>e764c420-70f5-4910-851b-ca28083531c6</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>