POST api/FeedBack/UserFeedbackAdd
Request Information
URI Parameters
None.
Body Parameters
clsFeedBack| Name | Description | Type | Additional information |
|---|---|---|---|
| mobileno | string |
None. |
|
| fullname | string |
None. |
|
| feedbackreasonId | string |
None. |
|
| remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"mobileno": "sample string 1",
"fullname": "sample string 2",
"feedbackreasonId": "sample string 3",
"remarks": "sample string 4"
}
application/xml, text/xml
Sample:
<clsFeedBack xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KPWebApi.Models"> <feedbackreasonId>sample string 3</feedbackreasonId> <fullname>sample string 2</fullname> <mobileno>sample string 1</mobileno> <remarks>sample string 4</remarks> </clsFeedBack>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Status | integer |
None. |
|
| RegistrationId | string |
None. |
|
| TransId | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Status": 2,
"RegistrationId": "sample string 3",
"TransId": 4.1
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KPWebApi.Models"> <Message>sample string 1</Message> <RegistrationId>sample string 3</RegistrationId> <Status>2</Status> <TransId>4.1</TransId> </Response>