POST api/Features/GetLineItemFromHostData

Returns Features for the specified hostData

Request Information

Parameters

NameDescriptionAdditional information
value
Contains the HostData for a single line item

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "HostData": "sample string 1",
  "Title": "sample string 2"
}

application/xml, text/xml

Sample:
<LineItemHostData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <HostData>sample string 1</HostData>
  <Title>sample string 2</Title>
</LineItemHostData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Features for the specified line item in hostData

Response body formats

application/json, text/json

Sample:
{
  "SolutionData": "sample string 1",
  "HostData": "sample string 2",
  "Designation": "sample string 3",
  "Qty": 4,
  "Title": "sample string 5",
  "ListPrice": "sample string 6"
}

application/xml, text/xml

Sample:
<FeaturesResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SolutionData>sample string 1</SolutionData>
  <HostData>sample string 2</HostData>
  <Designation>sample string 3</Designation>
  <Qty>4</Qty>
  <Title>sample string 5</Title>
  <ListPrice>sample string 6</ListPrice>
</FeaturesResult>