GET api/InboundMessage/GetInBoundDropdownFilters

Get dropdown data from model

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

InboundDropdownFilter
NameDescriptionTypeAdditional information
CategoriesList

Collection of Category

None.

Response Formats

application/json, text/json

Sample:
{
  "CategoriesList": [
    {
      "CategoryId": 1,
      "CategoryText": "sample string 2",
      "CategoryValue": "sample string 3",
      "SubCategoryList": [
        {
          "SubCategoryId": 1,
          "CategoryMappingId": 1,
          "SubCategoryText": "sample string 1",
          "SubCategoryValue": "sample string 2"
        },
        {
          "SubCategoryId": 1,
          "CategoryMappingId": 1,
          "SubCategoryText": "sample string 1",
          "SubCategoryValue": "sample string 2"
        }
      ]
    },
    {
      "CategoryId": 1,
      "CategoryText": "sample string 2",
      "CategoryValue": "sample string 3",
      "SubCategoryList": [
        {
          "SubCategoryId": 1,
          "CategoryMappingId": 1,
          "SubCategoryText": "sample string 1",
          "SubCategoryValue": "sample string 2"
        },
        {
          "SubCategoryId": 1,
          "CategoryMappingId": 1,
          "SubCategoryText": "sample string 1",
          "SubCategoryValue": "sample string 2"
        }
      ]
    }
  ]
}

application/xml, text/xml

Sample:
<InboundDropdownFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECEMessageCenterCommon.Models.Inbound">
  <CategoriesList>
    <Category>
      <CategoryId>1</CategoryId>
      <CategoryText>sample string 2</CategoryText>
      <CategoryValue>sample string 3</CategoryValue>
      <SubCategoryList>
        <SubCategories>
          <CategoryMappingId>1</CategoryMappingId>
          <SubCategoryId>1</SubCategoryId>
          <SubCategoryText>sample string 1</SubCategoryText>
          <SubCategoryValue>sample string 2</SubCategoryValue>
        </SubCategories>
        <SubCategories>
          <CategoryMappingId>1</CategoryMappingId>
          <SubCategoryId>1</SubCategoryId>
          <SubCategoryText>sample string 1</SubCategoryText>
          <SubCategoryValue>sample string 2</SubCategoryValue>
        </SubCategories>
      </SubCategoryList>
    </Category>
    <Category>
      <CategoryId>1</CategoryId>
      <CategoryText>sample string 2</CategoryText>
      <CategoryValue>sample string 3</CategoryValue>
      <SubCategoryList>
        <SubCategories>
          <CategoryMappingId>1</CategoryMappingId>
          <SubCategoryId>1</SubCategoryId>
          <SubCategoryText>sample string 1</SubCategoryText>
          <SubCategoryValue>sample string 2</SubCategoryValue>
        </SubCategories>
        <SubCategories>
          <CategoryMappingId>1</CategoryMappingId>
          <SubCategoryId>1</SubCategoryId>
          <SubCategoryText>sample string 1</SubCategoryText>
          <SubCategoryValue>sample string 2</SubCategoryValue>
        </SubCategories>
      </SubCategoryList>
    </Category>
  </CategoriesList>
</InboundDropdownFilter>