POST api/ProductAttribute/GetGenericDropDown

Request Information

URI Parameters

None.

Body Parameters

AttributeRequestIDsRequest
NameDescriptionTypeAdditional information
ProductAttributeNameId

integer

None.

ParentAttributeIds

Collection of integer

None.

RequestedUserID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductAttributeNameId": 1,
  "ParentAttributeIds": [
    1,
    2
  ],
  "RequestedUserID": 1
}

application/xml, text/xml

Sample:
<AttributeRequestIDsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Request">
  <RequestedUserID>1</RequestedUserID>
  <ParentAttributeIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
  </ParentAttributeIds>
  <ProductAttributeNameId>1</ProductAttributeNameId>
</AttributeRequestIDsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DropDownModel
NameDescriptionTypeAdditional information
DropDownData

Collection of DropDownData

None.

ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "DropDownData": [
    {
      "ID": 1,
      "Name": "sample string 2"
    },
    {
      "ID": 1,
      "Name": "sample string 2"
    }
  ],
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<DropDownModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <ResponseCode>1</ResponseCode>
  <ResponseText>sample string 2</ResponseText>
  <DropDownData>
    <DropDownData>
      <ID>1</ID>
      <Name>sample string 2</Name>
    </DropDownData>
    <DropDownData>
      <ID>1</ID>
      <Name>sample string 2</Name>
    </DropDownData>
  </DropDownData>
</DropDownModel>