GET api/Feedback/GetFeedbacksByStartEndDate?StartDate={StartDate}&EndDate={EndDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate | date |
Required |
|
| EndDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of utblFeedbackViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedbackId | integer |
None. |
|
| QuestionTypeName | string |
None. |
|
| ScreeningId | integer |
None. |
|
| TransDate | date |
None. |
|
| UserId | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FeedbackId": 1,
"QuestionTypeName": "sample string 2",
"ScreeningId": 1,
"TransDate": "2025-10-28T00:58:04.2868686+05:30",
"UserId": "sample string 4"
},
{
"FeedbackId": 1,
"QuestionTypeName": "sample string 2",
"ScreeningId": 1,
"TransDate": "2025-10-28T00:58:04.2868686+05:30",
"UserId": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfutblFeedbackViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operation.CustomModels">
<utblFeedbackViewModel>
<FeedbackId>1</FeedbackId>
<QuestionTypeName>sample string 2</QuestionTypeName>
<ScreeningId>1</ScreeningId>
<TransDate>2025-10-28T00:58:04.2868686+05:30</TransDate>
<UserId>sample string 4</UserId>
</utblFeedbackViewModel>
<utblFeedbackViewModel>
<FeedbackId>1</FeedbackId>
<QuestionTypeName>sample string 2</QuestionTypeName>
<ScreeningId>1</ScreeningId>
<TransDate>2025-10-28T00:58:04.2868686+05:30</TransDate>
<UserId>sample string 4</UserId>
</utblFeedbackViewModel>
</ArrayOfutblFeedbackViewModel>