POST api/EventTournamentCategories/CRUD
Add/Update/Delete eventcoretypes
Request Information
URI Parameters
None.
Body Parameters
String Array of eventcoretypes And Information(Mandatory)
Collection of EventTournamentCategoriesInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| TournamentCategoryId | integer |
None. |
|
| Name | string |
None. |
|
| CategoryDesc | string |
None. |
|
| CategoryCode | string |
None. |
|
| TournamentCategoryGroupId | integer |
None. |
|
| CalendarOrder | integer |
None. |
|
| IsActive | boolean |
None. |
|
| Deleted | integer |
None. |
|
| Logo | string |
None. |
|
| WTTEventTierName | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"TournamentCategoryId": 1,
"Name": "sample string 2",
"CategoryDesc": "sample string 3",
"CategoryCode": "sample string 4",
"TournamentCategoryGroupId": 5,
"CalendarOrder": 1,
"IsActive": true,
"Deleted": 1,
"Logo": "sample string 7",
"WTTEventTierName": "sample string 8"
},
{
"TournamentCategoryId": 1,
"Name": "sample string 2",
"CategoryDesc": "sample string 3",
"CategoryCode": "sample string 4",
"TournamentCategoryGroupId": 5,
"CalendarOrder": 1,
"IsActive": true,
"Deleted": 1,
"Logo": "sample string 7",
"WTTEventTierName": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfEventTournamentCategoriesInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
<EventTournamentCategoriesInfo>
<CalendarOrder>1</CalendarOrder>
<CategoryCode>sample string 4</CategoryCode>
<CategoryDesc>sample string 3</CategoryDesc>
<Deleted>1</Deleted>
<IsActive>true</IsActive>
<Logo>sample string 7</Logo>
<Name>sample string 2</Name>
<TournamentCategoryGroupId>5</TournamentCategoryGroupId>
<TournamentCategoryId>1</TournamentCategoryId>
<WTTEventTierName>sample string 8</WTTEventTierName>
</EventTournamentCategoriesInfo>
<EventTournamentCategoriesInfo>
<CalendarOrder>1</CalendarOrder>
<CategoryCode>sample string 4</CategoryCode>
<CategoryDesc>sample string 3</CategoryDesc>
<Deleted>1</Deleted>
<IsActive>true</IsActive>
<Logo>sample string 7</Logo>
<Name>sample string 2</Name>
<TournamentCategoryGroupId>5</TournamentCategoryGroupId>
<TournamentCategoryId>1</TournamentCategoryId>
<WTTEventTierName>sample string 8</WTTEventTierName>
</EventTournamentCategoriesInfo>
</ArrayOfEventTournamentCategoriesInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>