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": "d0c853fc-0c53-43a0-acec-208a31b3bd55",
"PartnerID": "9c1e9a3c-a3c7-4d1f-a89d-fe3731efcb32",
"VehicleID": "ecc7de4b-4abe-4209-9710-d1a0d781e3dd",
"IMEINo": "sample string 4",
"GroupID": "11f87a78-3b3f-43e0-abe7-ef505982674d",
"OrderID": "49c34348-5ea5-43ab-be28-48a01c132bd8"
}
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>d0c853fc-0c53-43a0-acec-208a31b3bd55</ClientID> <GroupID>11f87a78-3b3f-43e0-abe7-ef505982674d</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>49c34348-5ea5-43ab-be28-48a01c132bd8</OrderID> <PartnerID>9c1e9a3c-a3c7-4d1f-a89d-fe3731efcb32</PartnerID> <VehicleID>ecc7de4b-4abe-4209-9710-d1a0d781e3dd</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>