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": "ba2e1f18-b55d-4828-9117-be954cd2d6e6",
"PartnerID": "0e17c36a-6c9c-4f4f-a132-b8a536b25be2",
"VehicleID": "4015d23a-8629-4ed4-a9e4-3f7c24dada4e",
"IMEINo": "sample string 4",
"GroupID": "db29e9be-e49f-4d08-9c8c-4be35c576559",
"OrderID": "bdf456c5-f00a-4283-bfbc-45f602fb21fd"
}
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>ba2e1f18-b55d-4828-9117-be954cd2d6e6</ClientID> <GroupID>db29e9be-e49f-4d08-9c8c-4be35c576559</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>bdf456c5-f00a-4283-bfbc-45f602fb21fd</OrderID> <PartnerID>0e17c36a-6c9c-4f4f-a132-b8a536b25be2</PartnerID> <VehicleID>4015d23a-8629-4ed4-a9e4-3f7c24dada4e</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>