POST api/Common/GetDropDown

Request Information

URI Parameters

None.

Body Parameters

EL_DropDown
NameDescriptionTypeAdditional information
DropDownType

string

None.

TransactionID

integer

None.

DependencyID

integer

None.

WithSelect

boolean

None.

UserID

integer

None.

ID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "DropDownType": "sample string 1",
  "TransactionID": 2,
  "DependencyID": 3,
  "WithSelect": true,
  "UserID": 5,
  "ID": 6
}

application/xml, text/xml

Sample:
<EL_DropDown xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ISS.General.Library.EL">
  <ID>6</ID>
  <DependencyID>3</DependencyID>
  <DropDownType>sample string 1</DropDownType>
  <TransactionID>2</TransactionID>
  <UserID>5</UserID>
  <WithSelect>true</WithSelect>
</EL_DropDown>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Dictionary of string [key] and Object [value]

Response Formats

application/json, text/json

Sample:
[
  {
    "sample string 1": {},
    "sample string 3": {}
  },
  {
    "sample string 1": {},
    "sample string 3": {}
  }
]

application/xml, text/xml

Sample:
<ArrayOfArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <ArrayOfKeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 1</Key>
      <Value />
    </KeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 3</Key>
      <Value />
    </KeyValueOfstringanyType>
  </ArrayOfKeyValueOfstringanyType>
  <ArrayOfKeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 1</Key>
      <Value />
    </KeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 3</Key>
      <Value />
    </KeyValueOfstringanyType>
  </ArrayOfKeyValueOfstringanyType>
</ArrayOfArrayOfKeyValueOfstringanyType>