POST Api/Vehicle/GetSensorSummary
Request Information
URI Parameters
None.
Body Parameters
VehicleParameterName | 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": "6f4324a5-5840-45d4-b773-9edbbb71ae83", "PartnerID": "c95d9aaf-002e-4401-a18e-fb30d76625eb", "VehicleID": "82d3f52e-3ae0-4f13-a3a7-c33f2068a80f", "IMEINo": "sample string 4", "GroupID": "3440414d-3877-423e-a7d3-50f5ddf57532", "OrderID": "0852f196-97cd-4503-884b-9ed5af5ae83c" }
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>6f4324a5-5840-45d4-b773-9edbbb71ae83</ClientID> <GroupID>3440414d-3877-423e-a7d3-50f5ddf57532</GroupID> <IMEINo>sample string 4</IMEINo> <OrderID>0852f196-97cd-4503-884b-9ed5af5ae83c</OrderID> <PartnerID>c95d9aaf-002e-4401-a18e-fb30d76625eb</PartnerID> <VehicleID>82d3f52e-3ae0-4f13-a3a7-c33f2068a80f</VehicleID> </VehicleParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SensorsViewModelName | 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>