GET api/Feedback/GetTotalScreeningReportByQuestionTypeId?QuestionTypeId={QuestionTypeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
QuestionTypeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

FeedbackCountViewModel
NameDescriptionTypeAdditional information
FeedbackSeverityCountList

Collection of FeedbackSeverity

None.

TotalFeedbacks

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "FeedbackSeverityCountList": [
    {
      "Severity": "sample string 1",
      "SeverityCount": 2
    },
    {
      "Severity": "sample string 1",
      "SeverityCount": 2
    }
  ],
  "TotalFeedbacks": 1
}

application/xml, text/xml

Sample:
<FeedbackCountViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.CustomModels">
  <FeedbackSeverityCountList>
    <FeedbackSeverity>
      <Severity>sample string 1</Severity>
      <SeverityCount>2</SeverityCount>
    </FeedbackSeverity>
    <FeedbackSeverity>
      <Severity>sample string 1</Severity>
      <SeverityCount>2</SeverityCount>
    </FeedbackSeverity>
  </FeedbackSeverityCountList>
  <TotalFeedbacks>1</TotalFeedbacks>
</FeedbackCountViewModel>