GET api/matcheventtypes

Lists all active event types in IBIS

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of MatchEventType objects

Collection of MatchEventType
NameDescriptionTypeAdditional information
MatchEventTypeID

The match event type's unique identifier

integer

None.

Name

The name of the match event type

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MatchEventTypeID": 1,
    "Name": "sample string 2"
  },
  {
    "MatchEventTypeID": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMatchEventType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IbisApi.Models">
  <MatchEventType>
    <MatchEventTypeID>1</MatchEventTypeID>
    <Name>sample string 2</Name>
  </MatchEventType>
  <MatchEventType>
    <MatchEventTypeID>1</MatchEventTypeID>
    <Name>sample string 2</Name>
  </MatchEventType>
</ArrayOfMatchEventType>