GET api/feedback/above/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Feedback| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedbackID | integer |
None. |
|
| Name | string |
None. |
|
| string |
None. |
||
| Comments | string |
None. |
|
| SubmittedOn | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FeedbackID": 1,
"Name": "sample string 2",
"Email": "sample string 3",
"Comments": "sample string 4",
"SubmittedOn": "2025-12-12T01:23:46.4769576+05:30"
},
{
"FeedbackID": 1,
"Name": "sample string 2",
"Email": "sample string 3",
"Comments": "sample string 4",
"SubmittedOn": "2025-12-12T01:23:46.4769576+05:30"
}
]
application/xml, text/xml
Sample:
<ArrayOfFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FeedbackAPI.Models">
<Feedback>
<Comments>sample string 4</Comments>
<Email>sample string 3</Email>
<FeedbackID>1</FeedbackID>
<Name>sample string 2</Name>
<SubmittedOn>2025-12-12T01:23:46.4769576+05:30</SubmittedOn>
</Feedback>
<Feedback>
<Comments>sample string 4</Comments>
<Email>sample string 3</Email>
<FeedbackID>1</FeedbackID>
<Name>sample string 2</Name>
<SubmittedOn>2025-12-12T01:23:46.4769576+05:30</SubmittedOn>
</Feedback>
</ArrayOfFeedback>