GET api/EventTypes?include={include}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
include

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of EventType
NameDescriptionTypeAdditional information
Id

integer

None.

Type

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Type": "sample string 2"
  },
  {
    "Id": 1,
    "Type": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DOMDM.WebApi.Models">
  <EventType>
    <Id>1</Id>
    <Type>sample string 2</Type>
  </EventType>
  <EventType>
    <Id>1</Id>
    <Type>sample string 2</Type>
  </EventType>
</ArrayOfEventType>