GET api/Features/Get?bom_nbr={bom_nbr}&ln_nbr={ln_nbr}&co_rev_nbr={co_rev_nbr}&sna_loc={sna_loc}&performParse={performParse}

Returns features for the specified q2c quote or order If xml features exist they are returned, otherwise the legacy .fet string is returned

Request Information

Parameters

NameDescriptionAdditional information
bom_nbr
q2c bom number

Define this parameter in the request URI.

ln_nbr
q2c line number

Define this parameter in the request URI.

co_rev_nbr
No documentation available.

Define this parameter in the request URI.

sna_loc
sales office number

Define this parameter in the request URI.

performParse
if true, attempts to parse if no features were found

Define this parameter in the request URI.

Response Information

FeaturesResult entity

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>