POST api/TournamentAgeCategory/CRUD
Add/Update/Delete Visa Types
Request Information
URI Parameters
None.
Body Parameters
String Array of Visa Types Names And Information(Mandatory)
Collection of TournamentAgeCategoryInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| TournamentAgeCategoryId | integer | None. | |
| TournamentAgeCategoryName | string | None. | |
| TournamentAgeCategoryDescription | string | None. | |
| AgeLimitStart | integer | None. | |
| AgeLimitEnd | integer | None. | |
| IsActive | boolean | None. | |
| Deleted | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "TournamentAgeCategoryId": 1,
    "TournamentAgeCategoryName": "sample string 2",
    "TournamentAgeCategoryDescription": "sample string 3",
    "AgeLimitStart": 4,
    "AgeLimitEnd": 5,
    "IsActive": true,
    "Deleted": 1
  },
  {
    "TournamentAgeCategoryId": 1,
    "TournamentAgeCategoryName": "sample string 2",
    "TournamentAgeCategoryDescription": "sample string 3",
    "AgeLimitStart": 4,
    "AgeLimitEnd": 5,
    "IsActive": true,
    "Deleted": 1
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfTournamentAgeCategoryInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <TournamentAgeCategoryInfo>
    <AgeLimitEnd>5</AgeLimitEnd>
    <AgeLimitStart>4</AgeLimitStart>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <TournamentAgeCategoryDescription>sample string 3</TournamentAgeCategoryDescription>
    <TournamentAgeCategoryId>1</TournamentAgeCategoryId>
    <TournamentAgeCategoryName>sample string 2</TournamentAgeCategoryName>
  </TournamentAgeCategoryInfo>
  <TournamentAgeCategoryInfo>
    <AgeLimitEnd>5</AgeLimitEnd>
    <AgeLimitStart>4</AgeLimitStart>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <TournamentAgeCategoryDescription>sample string 3</TournamentAgeCategoryDescription>
    <TournamentAgeCategoryId>1</TournamentAgeCategoryId>
    <TournamentAgeCategoryName>sample string 2</TournamentAgeCategoryName>
  </TournamentAgeCategoryInfo>
</ArrayOfTournamentAgeCategoryInfo>
        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>