POST api/Comp/SaveComplaintCategory
Request Information
URI Parameters
None.
Body Parameters
ComplaintSaveInputParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| Complaintid | integer |
None. |
|
| CompliantCategory | string |
None. |
|
| DepartmentID | integer |
None. |
|
| Active | boolean |
None. |
|
| CreatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Complaintid": 1,
"CompliantCategory": "sample string 2",
"DepartmentID": 3,
"Active": true,
"CreatedBy": 5
}
application/xml, text/xml
Sample:
<ComplaintSaveInputParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenterAPI.Models"> <Active>true</Active> <Complaintid>1</Complaintid> <CompliantCategory>sample string 2</CompliantCategory> <CreatedBy>5</CreatedBy> <DepartmentID>3</DepartmentID> </ComplaintSaveInputParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.