GET v2/ReportEventTypes
Retrieve the list of defined report event types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Lhp.EquipmentIntelligence.WebApi.Client.Models.ReportEventType| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportEventTypeId |
Unique identifier of the ReportEventType |
integer |
None. |
| Name |
Friendly name for the report event type. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ReportEventTypeId": 1,
"Name": "sample string 2"
},
{
"ReportEventTypeId": 1,
"Name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfReportEventType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ReportEventType>
<ReportEventTypeId>1</ReportEventTypeId>
<Name>sample string 2</Name>
</ReportEventType>
<ReportEventType>
<ReportEventTypeId>1</ReportEventTypeId>
<Name>sample string 2</Name>
</ReportEventType>
</ArrayOfReportEventType>