GET api/product?manufacturerNumber={manufacturerNumber}&stripDescriptionHTML={stripDescriptionHTML}

Get detailed product information for a specified manufacturer number.

Request Information

Parameters

NameDescriptionAdditional information
manufacturerNumber
The product's manufacturer number.

Define this parameter in the request URI.

stripDescriptionHTML
Remove all the HTML from the product description

Define this parameter in the request URI.

Response Information

Detailed product information for the specified manufacturer number.

Response body formats

application/json, text/json

Sample:
{
  "Sku": "sample string 1",
  "Upc": "sample string 2",
  "ManufacturerNumber": "sample string 3",
  "Name": "sample string 4",
  "Description": "sample string 5",
  "WholesalePrice": 1.0,
  "Msrp": 1.0,
  "MinimumAdvertisedPrice": 1.0,
  "AvailableQuantity": 1,
  "QuantityOnHand": 1,
  "Weight": 1.0,
  "Height": 1.0,
  "Length": 1.0,
  "Width": 1.0,
  "Manufacturer": "sample string 6",
  "DateCreated": "2024-04-26T13:19:12.7721007-04:00",
  "DateModified": "2024-04-26T13:19:12.7721007-04:00",
  "Discontinued": true,
  "Video": "sample string 10",
  "Sellable": true,
  "DateDiscontinued": "2024-04-26T13:19:12.7721007-04:00",
  "Categories": [
    {
      "Id": 1,
      "Name": "sample string 2"
    },
    {
      "Id": 1,
      "Name": "sample string 2"
    },
    {
      "Id": 1,
      "Name": "sample string 2"
    }
  ],
  "Attributes": [
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Sku>sample string 1</Sku>
  <Upc>sample string 2</Upc>
  <ManufacturerNumber>sample string 3</ManufacturerNumber>
  <Name>sample string 4</Name>
  <Description>sample string 5</Description>
  <WholesalePrice>1</WholesalePrice>
  <Msrp>1</Msrp>
  <MinimumAdvertisedPrice>1</MinimumAdvertisedPrice>
  <AvailableQuantity>1</AvailableQuantity>
  <QuantityOnHand>1</QuantityOnHand>
  <Weight>1</Weight>
  <Height>1</Height>
  <Length>1</Length>
  <Width>1</Width>
  <Manufacturer>sample string 6</Manufacturer>
  <DateCreated>2024-04-26T13:19:12.7721007-04:00</DateCreated>
  <DateModified>2024-04-26T13:19:12.7721007-04:00</DateModified>
  <Discontinued>true</Discontinued>
  <Video>sample string 10</Video>
  <Sellable>true</Sellable>
  <DateDiscontinued>2024-04-26T13:19:12.7721007-04:00</DateDiscontinued>
  <Categories>
    <Category>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </Category>
    <Category>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </Category>
    <Category>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </Category>
  </Categories>
  <Attributes>
    <Attribute>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </Attribute>
    <Attribute>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </Attribute>
    <Attribute>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </Attribute>
  </Attributes>
</Product>