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": "1887b941-e163-464f-b035-b6baac39d227",
"PartnerID": "04e5d5d7-af44-4f97-8035-7876a1d74dcf",
"VehicleID": "2d831332-ff37-4dce-8929-349bed4713d9",
"IMEINo": "sample string 4",
"GroupID": "c61c8161-5301-4e1a-a450-5a0a5fa29dbc",
"OrderID": "62fa1cf0-58ff-4417-99db-812860fdb689"
}
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>1887b941-e163-464f-b035-b6baac39d227</ClientID> <GroupID>c61c8161-5301-4e1a-a450-5a0a5fa29dbc</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>62fa1cf0-58ff-4417-99db-812860fdb689</OrderID> <PartnerID>04e5d5d7-af44-4f97-8035-7876a1d74dcf</PartnerID> <VehicleID>2d831332-ff37-4dce-8929-349bed4713d9</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
},
{
"Name": "sample string 1",
"Value": 2.1
}
]
}
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>
</TemperatureSensor>
<TemperatureSensor>
<Name>sample string 1</Name>
<Value>2.1</Value>
</TemperatureSensor>
</TemperatureSensor>
</SensorsViewModel>