GET api/Feedback/GetFeedbacks?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
|
| SearchTerm | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
FeedbackViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Feedbacks | Collection of utblFeedbackViewModel |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Feedbacks": [
{
"FeedbackId": 1,
"QuestionTypeName": "sample string 2",
"ScreeningId": 1,
"TransDate": "2025-10-28T01:03:14.1177319+05:30",
"UserId": "sample string 4"
},
{
"FeedbackId": 1,
"QuestionTypeName": "sample string 2",
"ScreeningId": 1,
"TransDate": "2025-10-28T01:03:14.1177319+05:30",
"UserId": "sample string 4"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<FeedbackViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operation.CustomModels">
<Feedbacks>
<utblFeedbackViewModel>
<FeedbackId>1</FeedbackId>
<QuestionTypeName>sample string 2</QuestionTypeName>
<ScreeningId>1</ScreeningId>
<TransDate>2025-10-28T01:03:14.1177319+05:30</TransDate>
<UserId>sample string 4</UserId>
</utblFeedbackViewModel>
<utblFeedbackViewModel>
<FeedbackId>1</FeedbackId>
<QuestionTypeName>sample string 2</QuestionTypeName>
<ScreeningId>1</ScreeningId>
<TransDate>2025-10-28T01:03:14.1177319+05:30</TransDate>
<UserId>sample string 4</UserId>
</utblFeedbackViewModel>
</Feedbacks>
<TotalRecords>1</TotalRecords>
</FeedbackViewModel>