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": "8100a99f-6b28-4d34-b634-1356b942317d",
"PartnerID": "7ea88879-8207-46f3-96d7-21e30e0028d4",
"VehicleID": "975f5ad0-789f-4c2b-b39c-dd928268d64d",
"IMEINo": "sample string 4",
"GroupID": "815c3f05-8ccc-4f9b-aac7-0dad2234bbf8",
"OrderID": "953d83e7-81b9-4b7e-8e06-02df679161a5"
}
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>8100a99f-6b28-4d34-b634-1356b942317d</ClientID> <GroupID>815c3f05-8ccc-4f9b-aac7-0dad2234bbf8</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>953d83e7-81b9-4b7e-8e06-02df679161a5</OrderID> <PartnerID>7ea88879-8207-46f3-96d7-21e30e0028d4</PartnerID> <VehicleID>975f5ad0-789f-4c2b-b39c-dd928268d64d</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>