GET api/Dashboard/GetTopQuestionFailsWidget?accountId={accountId}&selectNumber={selectNumber}&startDate={startDate}&endDate={endDate}&roleId={roleId}&userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

integer

Required

selectNumber

integer

Required

startDate

string

Required

endDate

string

Required

roleId

integer

Required

userId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FollowUpTopQuestionFailsModel
NameDescriptionTypeAdditional information
TopicName

string

None.

Question

string

None.

TotalFails

integer

None.

TegId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TopicName": "sample string 1",
    "Question": "sample string 2",
    "TotalFails": 3,
    "TegId": 4
  },
  {
    "TopicName": "sample string 1",
    "Question": "sample string 2",
    "TotalFails": 3,
    "TegId": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfFollowUpTopQuestionFailsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Walsh.Model.Models.FollowUp">
  <FollowUpTopQuestionFailsModel>
    <Question>sample string 2</Question>
    <TegId>4</TegId>
    <TopicName>sample string 1</TopicName>
    <TotalFails>3</TotalFails>
  </FollowUpTopQuestionFailsModel>
  <FollowUpTopQuestionFailsModel>
    <Question>sample string 2</Question>
    <TegId>4</TegId>
    <TopicName>sample string 1</TopicName>
    <TotalFails>3</TotalFails>
  </FollowUpTopQuestionFailsModel>
</ArrayOfFollowUpTopQuestionFailsModel>