POST api/Part/PostLogMissingPart

Documentation for 'PostLogMissingPart'.

Request Information

Parameters

NameDescriptionAdditional information
PartSearchParameters
Documentation for 'PartSearchParameters'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "PartID": 1,
  "PartNumber": "sample string 2",
  "ChildPartNumber": "sample string 3",
  "Manufacturer": "sample string 4",
  "BrandID": 5,
  "BrandName": "sample string 6",
  "IsInterchange": true,
  "IsExactMatch": true
}

application/xml, text/xml

Sample:
<PartSearchParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WixDataWebApi.Models">
  <BrandID>5</BrandID>
  <BrandName>sample string 6</BrandName>
  <ChildPartNumber>sample string 3</ChildPartNumber>
  <IsExactMatch>true</IsExactMatch>
  <IsInterchange>true</IsInterchange>
  <Manufacturer>sample string 4</Manufacturer>
  <PartID>1</PartID>
  <PartNumber>sample string 2</PartNumber>
</PartSearchParameters>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>