GET v1/AssetReports/{id}/GetDataElementsForReceivedReportId

Returns the data elements definitions for the data elements in the referenced received report

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the received report to get the data element list for

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Lhp.EquipmentIntelligence.WebApi.Models.V1.DataElementModel
NameDescriptionTypeAdditional information
Name

Name of the data element.

string

None.

DataElementId

Unique identifier of this data element definition.

integer

None.

ManufacturerParameterName

When provided indicates the name of the source data field from the telematics unit.

string

None.

MeasurementUnitName

Full name of the measurement unit the data is provided in.

string

None.

MeasurementUnitAbbreviation

Abbreviation of the measurement unit the data is provided in.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "DataElementId": 2,
    "ManufacturerParameterName": "sample string 3",
    "MeasurementUnitName": "sample string 4",
    "MeasurementUnitAbbreviation": "sample string 5"
  },
  {
    "Name": "sample string 1",
    "DataElementId": 2,
    "ManufacturerParameterName": "sample string 3",
    "MeasurementUnitName": "sample string 4",
    "MeasurementUnitAbbreviation": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDataElementModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DataElementModel>
    <Name>sample string 1</Name>
    <DataElementId>2</DataElementId>
    <ManufacturerParameterName>sample string 3</ManufacturerParameterName>
    <MeasurementUnitName>sample string 4</MeasurementUnitName>
    <MeasurementUnitAbbreviation>sample string 5</MeasurementUnitAbbreviation>
  </DataElementModel>
  <DataElementModel>
    <Name>sample string 1</Name>
    <DataElementId>2</DataElementId>
    <ManufacturerParameterName>sample string 3</ManufacturerParameterName>
    <MeasurementUnitName>sample string 4</MeasurementUnitName>
    <MeasurementUnitAbbreviation>sample string 5</MeasurementUnitAbbreviation>
  </DataElementModel>
</ArrayOfDataElementModel>