POST v3/search/getfilter

Get a filter item list

Request Information

Parameters

NameDescriptionAdditional information
inVO

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "type": 2
}

application/xml, text/xml

Sample:
<GetFilterInVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input.Search">
  <Id>sample string 1</Id>
  <Type>2</Type>
</GetFilterInVO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "text": "sample string 1",
    "value": "sample string 2"
  },
  {
    "text": "sample string 1",
    "value": "sample string 2"
  },
  {
    "text": "sample string 1",
    "value": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetFilterOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Search">
  <GetFilterOutVO>
    <Text>sample string 1</Text>
    <Value>sample string 2</Value>
  </GetFilterOutVO>
  <GetFilterOutVO>
    <Text>sample string 1</Text>
    <Value>sample string 2</Value>
  </GetFilterOutVO>
  <GetFilterOutVO>
    <Text>sample string 1</Text>
    <Value>sample string 2</Value>
  </GetFilterOutVO>
</ArrayOfGetFilterOutVO>