GET OneStop/Groups/ServiceCall/UserStockSearch?stockLocationID={stockLocationID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
stockLocationID

integer

Required

Body Parameters

None.

Response Information

Resource Description

StockItemSummaryDTO
NameDescriptionTypeAdditional information
StockItemTypeDescription

string

None.

Manufacturer

string

None.

OEMPartNumber

string

None.

OEMPartCode

string

None.

SupplierPartNumber

string

None.

Description

string

None.

GUID

globally unique identifier

None.

StockItemID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "StockItemTypeDescription": "sample string 1",
  "Manufacturer": "sample string 2",
  "OEMPartNumber": "sample string 3",
  "OEMPartCode": "sample string 4",
  "SupplierPartNumber": "sample string 5",
  "Description": "sample string 6",
  "GUID": "698568a3-8136-41cf-9151-049d52cfff6b",
  "StockItemID": 8
}

application/xml, text/xml

Sample:
<StockItemSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OneStopWebAPI.DTO">
  <Description>sample string 6</Description>
  <GUID>698568a3-8136-41cf-9151-049d52cfff6b</GUID>
  <Manufacturer>sample string 2</Manufacturer>
  <OEMPartCode>sample string 4</OEMPartCode>
  <OEMPartNumber>sample string 3</OEMPartNumber>
  <StockItemID>8</StockItemID>
  <StockItemTypeDescription>sample string 1</StockItemTypeDescription>
  <SupplierPartNumber>sample string 5</SupplierPartNumber>
</StockItemSummaryDTO>