POST api/feedback/save
Request Information
URI Parameters
None.
Body Parameters
Feedback| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedbackID | integer |
None. |
|
| Name | string |
None. |
|
| string |
None. |
||
| Comments | string |
None. |
|
| SubmittedOn | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FeedbackID": 1,
"Name": "sample string 2",
"Email": "sample string 3",
"Comments": "sample string 4",
"SubmittedOn": "2025-12-12T01:20:46.9747288+05:30"
}
application/xml, text/xml
Sample:
<Feedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FeedbackAPI.Models"> <Comments>sample string 4</Comments> <Email>sample string 3</Email> <FeedbackID>1</FeedbackID> <Name>sample string 2</Name> <SubmittedOn>2025-12-12T01:20:46.9747288+05:30</SubmittedOn> </Feedback>
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.