POST api/customerfeedbacktype
Request Information
URI Parameters
None.
Body Parameters
CustomerFeedbackType| Name | Description | Type | Additional information |
|---|---|---|---|
| SlNo | integer |
None. |
|
| CustomerFeedbackTypeID | integer |
None. |
|
| FeedbackType | string |
Required String length: inclusive between 0 and 50 |
|
| IsActive | boolean |
Required |
|
| UserID | string |
Required String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"SlNo": 1,
"CustomerFeedbackTypeID": 2,
"FeedbackType": "sample string 3",
"IsActive": true,
"UserID": "sample string 5"
}
application/xml, text/xml
Sample:
<CustomerFeedbackType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GOPWebAPI.Models"> <CustomerFeedbackTypeID>2</CustomerFeedbackTypeID> <FeedbackType>sample string 3</FeedbackType> <IsActive>true</IsActive> <SlNo>1</SlNo> <UserID>sample string 5</UserID> </CustomerFeedbackType>
multipart/form-data
Sample:
<CustomerFeedbackType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GOPWebAPI.Models"><CustomerFeedbackTypeID>2</CustomerFeedbackTypeID><FeedbackType>sample string 3</FeedbackType><IsActive>true</IsActive><SlNo>1</SlNo><UserID>sample string 5</UserID></CustomerFeedbackType>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |