POST api/ClubManagement/Setting
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| Settings | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"cType": "sample string 1",
"nId": 2,
"cTitle": "sample string 3",
"cPrefix": "sample string 4",
"cSuffix": "sample string 5",
"nContent": 6,
"cDescription": "sample string 7",
"bCurrent": true,
"bResetable": true,
"bActive": true,
"nFinId": 11,
"nCompanyId": 12
}
application/xml, text/xml
Sample:
<Setting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabHDManagement.Models"> <bActive>true</bActive> <bCurrent>true</bCurrent> <bResetable>true</bResetable> <cDescription>sample string 7</cDescription> <cPrefix>sample string 4</cPrefix> <cSuffix>sample string 5</cSuffix> <cTitle>sample string 3</cTitle> <cType>sample string 1</cType> <nCompanyId>12</nCompanyId> <nContent>6</nContent> <nFinId>11</nFinId> <nId>2</nId> </Setting>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Data": null,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabHDManagement.Models"> <Data i:nil="true" /> <Message>sample string 2</Message> <Status>sample string 1</Status> </ResponseData>