GET api/EventCategory?UUID={UUID}

Return list of event category

Request Information

Parameters

NameDescriptionAdditional information
UUID
the id of the device

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfEnumWrapper xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Reservation.Api.Models">
  <EnumWrapper>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </EnumWrapper>
  <EnumWrapper>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </EnumWrapper>
  <EnumWrapper>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </EnumWrapper>
</ArrayOfEnumWrapper>