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": "0a65460c-4128-4a62-9a76-9fc086787d7d",
"PartnerID": "eb8b1fce-9deb-4fc6-bc3d-7078cc1f5e8e",
"VehicleID": "7d88806c-7f0f-4c27-b2f5-9fa70aa71be9",
"IMEINo": "sample string 4",
"GroupID": "f7d9e8a9-6e33-4aff-a77e-c03f6036d3e2",
"OrderID": "c55cf3a9-9b98-4c04-8a0d-6277f67782d4"
}
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>0a65460c-4128-4a62-9a76-9fc086787d7d</ClientID> <GroupID>f7d9e8a9-6e33-4aff-a77e-c03f6036d3e2</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>c55cf3a9-9b98-4c04-8a0d-6277f67782d4</OrderID> <PartnerID>eb8b1fce-9deb-4fc6-bc3d-7078cc1f5e8e</PartnerID> <VehicleID>7d88806c-7f0f-4c27-b2f5-9fa70aa71be9</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>