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": "0cbe6fb7-8057-4d40-b64e-8e90a1811698",
"PartnerID": "24312400-9a6e-4bd7-93fd-3e4f03271924",
"VehicleID": "03f99243-1b29-4646-b4b1-cabbb07005c6",
"IMEINo": "sample string 4",
"GroupID": "5c65ddca-029e-461d-a921-6189803dd68d",
"OrderID": "5a19da91-ebdd-4ccb-89d8-3d9672e6d1e7"
}
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>0cbe6fb7-8057-4d40-b64e-8e90a1811698</ClientID> <GroupID>5c65ddca-029e-461d-a921-6189803dd68d</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>5a19da91-ebdd-4ccb-89d8-3d9672e6d1e7</OrderID> <PartnerID>24312400-9a6e-4bd7-93fd-3e4f03271924</PartnerID> <VehicleID>03f99243-1b29-4646-b4b1-cabbb07005c6</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>