GET location/{apiKey}/getpartstocknumbers

Request Information

URI Parameters

NameDescriptionTypeAdditional information
apiKey

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PartStockNumber
NameDescriptionTypeAdditional information
PartID

integer

None.

StockNumber

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PartID": 1,
    "StockNumber": "sample string 2"
  },
  {
    "PartID": 1,
    "StockNumber": "sample string 2"
  }
]

text/xml

Sample:
<ArrayOfPartStockNumber xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPI.API.Models">
  <PartStockNumber>
    <PartID>1</PartID>
    <StockNumber>sample string 2</StockNumber>
  </PartStockNumber>
  <PartStockNumber>
    <PartID>1</PartID>
    <StockNumber>sample string 2</StockNumber>
  </PartStockNumber>
</ArrayOfPartStockNumber>