GET cascadingdropdown/{targetEntityType}/{targetValue}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
targetEntityType

string

Required

targetValue

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Option
NameDescriptionTypeAdditional information
Value

string

None.

Code

string

None.

Text

string

None.

Selected

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Value": "sample string 1",
    "Code": "sample string 2",
    "Text": "sample string 3",
    "Selected": true
  },
  {
    "Value": "sample string 1",
    "Code": "sample string 2",
    "Text": "sample string 3",
    "Selected": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FoodExport.Web.Services.Models">
  <Option>
    <Code>sample string 2</Code>
    <Selected>true</Selected>
    <Text>sample string 3</Text>
    <Value>sample string 1</Value>
  </Option>
  <Option>
    <Code>sample string 2</Code>
    <Selected>true</Selected>
    <Text>sample string 3</Text>
    <Value>sample string 1</Value>
  </Option>
</ArrayOfOption>