GET api/feedbacklist
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of FeedbackModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| USER_ID | integer |
None. |
|
| MSG | string |
None. |
|
| RATING | string |
None. |
|
| IMG_URL | string |
None. |
|
| REPORT_DT | date |
None. |
|
| AID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"USER_ID": 2,
"MSG": "sample string 3",
"RATING": "sample string 4",
"IMG_URL": "sample string 5",
"REPORT_DT": "2026-01-09T13:55:45.1498938+00:00",
"AID": 7
},
{
"ID": 1,
"USER_ID": 2,
"MSG": "sample string 3",
"RATING": "sample string 4",
"IMG_URL": "sample string 5",
"REPORT_DT": "2026-01-09T13:55:45.1498938+00:00",
"AID": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfFeedbackModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models">
<FeedbackModel>
<AID>7</AID>
<ID>1</ID>
<IMG_URL>sample string 5</IMG_URL>
<MSG>sample string 3</MSG>
<RATING>sample string 4</RATING>
<REPORT_DT>2026-01-09T13:55:45.1498938+00:00</REPORT_DT>
<USER_ID>2</USER_ID>
</FeedbackModel>
<FeedbackModel>
<AID>7</AID>
<ID>1</ID>
<IMG_URL>sample string 5</IMG_URL>
<MSG>sample string 3</MSG>
<RATING>sample string 4</RATING>
<REPORT_DT>2026-01-09T13:55:45.1498938+00:00</REPORT_DT>
<USER_ID>2</USER_ID>
</FeedbackModel>
</ArrayOfFeedbackModel>