POST api/SystemOfPlay/CRUD
Add/Update/Delete TournamentPhases
Request Information
URI Parameters
None.
Body Parameters
String Array of SystemOfPlay And Information(Mandatory)
Collection of SystemOfPlayInfoName | Description | Type | Additional information |
---|---|---|---|
SystemOfPlayId | integer |
None. |
|
Name | string |
None. |
|
IsActive | boolean |
None. |
|
IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[ { "SystemOfPlayId": 1, "Name": "sample string 2", "IsActive": true, "IsDeleted": true }, { "SystemOfPlayId": 1, "Name": "sample string 2", "IsActive": true, "IsDeleted": true } ]
application/xml, text/xml
Sample:
<ArrayOfSystemOfPlayInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1"> <SystemOfPlayInfo> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <Name>sample string 2</Name> <SystemOfPlayId>1</SystemOfPlayId> </SystemOfPlayInfo> <SystemOfPlayInfo> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <Name>sample string 2</Name> <SystemOfPlayId>1</SystemOfPlayId> </SystemOfPlayInfo> </ArrayOfSystemOfPlayInfo>
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>