GET api/Catalog/GetListValues

Documentation for 'GetListValues'.

Request Information

Parameters

NameDescriptionAdditional information
CatalogManager
Documentation for 'CatalogManager'.

Define this parameter in the request URI.

SelectedDropDown
Documentation for 'SelectedDropDown'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "BindValue": "sample string 1",
    "Description": "sample string 2"
  },
  {
    "BindValue": "sample string 1",
    "Description": "sample string 2"
  },
  {
    "BindValue": "sample string 1",
    "Description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNameValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Catalog.BLL">
  <NameValue>
    <BindValue>sample string 1</BindValue>
    <Description>sample string 2</Description>
  </NameValue>
  <NameValue>
    <BindValue>sample string 1</BindValue>
    <Description>sample string 2</Description>
  </NameValue>
  <NameValue>
    <BindValue>sample string 1</BindValue>
    <Description>sample string 2</Description>
  </NameValue>
</ArrayOfNameValue>