GET api/EventCategories
List all Event Categories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of list_event_categoryName | Description | Type | Additional information |
---|---|---|---|
CategoryId | integer |
None. |
|
CategoryName | string |
None. |
|
EventTypeId | string |
None. |
|
Gender | string |
None. |
|
IsParalympic | boolean |
None. |
|
IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CategoryId": 1, "CategoryName": "sample string 2", "EventTypeId": "sample string 3", "Gender": "sample string 4", "IsParalympic": true, "IsActive": true }, { "CategoryId": 1, "CategoryName": "sample string 2", "EventTypeId": "sample string 3", "Gender": "sample string 4", "IsParalympic": true, "IsActive": true } ]
application/xml, text/xml
Sample:
<ArrayOflist_event_category xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <list_event_category> <CategoryId>1</CategoryId> <CategoryName>sample string 2</CategoryName> <EventTypeId>sample string 3</EventTypeId> <Gender>sample string 4</Gender> <IsActive>true</IsActive> <IsParalympic>true</IsParalympic> </list_event_category> <list_event_category> <CategoryId>1</CategoryId> <CategoryName>sample string 2</CategoryName> <EventTypeId>sample string 3</EventTypeId> <Gender>sample string 4</Gender> <IsActive>true</IsActive> <IsParalympic>true</IsParalympic> </list_event_category> </ArrayOflist_event_category>