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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
QuestionTypeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of utblMstSuggestionCategory
NameDescriptionTypeAdditional information
SuggestionCategoryId

integer

None.

QuestionTypeId

integer

None.

SuggestionCategoryName

string

None.

TransDate

date

None.

UserId

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SuggestionCategoryId": 1,
    "QuestionTypeId": 2,
    "SuggestionCategoryName": "sample string 3",
    "TransDate": "2025-10-28T00:55:52.6433216+05:30",
    "UserId": "sample string 5"
  },
  {
    "SuggestionCategoryId": 1,
    "QuestionTypeId": 2,
    "SuggestionCategoryName": "sample string 3",
    "TransDate": "2025-10-28T00:55:52.6433216+05:30",
    "UserId": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfutblMstSuggestionCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.Models">
  <utblMstSuggestionCategory>
    <QuestionTypeId>2</QuestionTypeId>
    <SuggestionCategoryId>1</SuggestionCategoryId>
    <SuggestionCategoryName>sample string 3</SuggestionCategoryName>
    <TransDate>2025-10-28T00:55:52.6433216+05:30</TransDate>
    <UserId>sample string 5</UserId>
  </utblMstSuggestionCategory>
  <utblMstSuggestionCategory>
    <QuestionTypeId>2</QuestionTypeId>
    <SuggestionCategoryId>1</SuggestionCategoryId>
    <SuggestionCategoryName>sample string 3</SuggestionCategoryName>
    <TransDate>2025-10-28T00:55:52.6433216+05:30</TransDate>
    <UserId>sample string 5</UserId>
  </utblMstSuggestionCategory>
</ArrayOfutblMstSuggestionCategory>