POST api/StrictRules
Request Information
URI Parameters
None.
Body Parameters
StrictRule| Name | Description | Type | Additional information |
|---|---|---|---|
| Category | string |
Required String length: inclusive between 0 and 6 |
|
| CKT | integer |
Required |
|
| Type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Category": "sample string 1",
"CKT": 1,
"Type": "sample string 2"
}
application/xml, text/xml
Sample:
<StrictRule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Core.Models"> <CKT>1</CKT> <Category>sample string 1</Category> <Type>sample string 2</Type> </StrictRule>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GenericResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<GenericResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Web.Models"> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> </GenericResponse>