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": "5d7faa29-b62f-42c8-8bd0-b2fe6133eb64",
"PartnerID": "a03a3025-3830-498e-a791-ed1a8bcaf8c8",
"VehicleID": "12f9ec90-cfcd-4e02-8c07-01fdf1d6d7f8",
"IMEINo": "sample string 4",
"GroupID": "71bfe425-5147-40e2-b642-59e8954cfcc3",
"OrderID": "53f0c0a3-7020-48be-86f4-32f9939e04c8"
}
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>5d7faa29-b62f-42c8-8bd0-b2fe6133eb64</ClientID> <GroupID>71bfe425-5147-40e2-b642-59e8954cfcc3</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>53f0c0a3-7020-48be-86f4-32f9939e04c8</OrderID> <PartnerID>a03a3025-3830-498e-a791-ed1a8bcaf8c8</PartnerID> <VehicleID>12f9ec90-cfcd-4e02-8c07-01fdf1d6d7f8</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>