StockServices
Click here for a complete list of operations.
StockPriceRequest
Stock Status Check by ISBN or UPC and Customer ID
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /StockCheckWS/StockCheckWS.asmx HTTP/1.1 Host: edi.btol.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://edi.btol.com/StockPriceRequest" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <StockPriceRequest xmlns="http://edi.btol.com"> <SystemID>string</SystemID> <Password>string</Password> <CustID>string</CustID> <ItemID>string</ItemID> <Quantity>string</Quantity> </StockPriceRequest> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <StockPriceRequestResponse xmlns="http://edi.btol.com"> <StockPriceRequestResult> <Message>string</Message> <ItemID>string</ItemID> <ItemIDType>string</ItemIDType> <ReplacementItemID>string</ReplacementItemID> <ItemSource>string</ItemSource> <Title>string</Title> <Author>string</Author> <StreetDate>string</StreetDate> <StreetDateDescription>string</StreetDateDescription> <Returnable>string</Returnable> <Edition>string</Edition> <Publisher>string</Publisher> <ItemPricing> <NetPrice>double</NetPrice> <ListPrice>double</ListPrice> <DiscountPercent>double</DiscountPercent> <Surcharge>double</Surcharge> <SurChargeDescription>string</SurChargeDescription> </ItemPricing> <ItemStatus> <Code>string</Code> <Description>string</Description> </ItemStatus> <ItemFormat> <Code>string</Code> <Description>string</Description> </ItemFormat> <Warehouse01> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse01> <Warehouse02> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse02> <Warehouse03> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse03> <Warehouse04> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse04> <Warehouse05> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse05> </StockPriceRequestResult> </StockPriceRequestResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /StockCheckWS/StockCheckWS.asmx HTTP/1.1 Host: edi.btol.com Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <StockPriceRequest xmlns="http://edi.btol.com"> <SystemID>string</SystemID> <Password>string</Password> <CustID>string</CustID> <ItemID>string</ItemID> <Quantity>string</Quantity> </StockPriceRequest> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <StockPriceRequestResponse xmlns="http://edi.btol.com"> <StockPriceRequestResult> <Message>string</Message> <ItemID>string</ItemID> <ItemIDType>string</ItemIDType> <ReplacementItemID>string</ReplacementItemID> <ItemSource>string</ItemSource> <Title>string</Title> <Author>string</Author> <StreetDate>string</StreetDate> <StreetDateDescription>string</StreetDateDescription> <Returnable>string</Returnable> <Edition>string</Edition> <Publisher>string</Publisher> <ItemPricing> <NetPrice>double</NetPrice> <ListPrice>double</ListPrice> <DiscountPercent>double</DiscountPercent> <Surcharge>double</Surcharge> <SurChargeDescription>string</SurChargeDescription> </ItemPricing> <ItemStatus> <Code>string</Code> <Description>string</Description> </ItemStatus> <ItemFormat> <Code>string</Code> <Description>string</Description> </ItemFormat> <Warehouse01> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse01> <Warehouse02> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse02> <Warehouse03> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse03> <Warehouse04> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse04> <Warehouse05> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse05> </StockPriceRequestResult> </StockPriceRequestResponse> </soap12:Body> </soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /StockCheckWS/StockCheckWS.asmx/StockPriceRequest?SystemID=string&Password=string&CustID=string&ItemID=string&Quantity=string HTTP/1.1 Host: edi.btol.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <StockCheck xmlns="http://edi.btol.com"> <Message>string</Message> <ItemID>string</ItemID> <ItemIDType>string</ItemIDType> <ReplacementItemID>string</ReplacementItemID> <ItemSource>string</ItemSource> <Title>string</Title> <Author>string</Author> <StreetDate>string</StreetDate> <StreetDateDescription>string</StreetDateDescription> <Returnable>string</Returnable> <Edition>string</Edition> <Publisher>string</Publisher> <ItemPricing> <NetPrice>double</NetPrice> <ListPrice>double</ListPrice> <DiscountPercent>double</DiscountPercent> <Surcharge>double</Surcharge> <SurChargeDescription>string</SurChargeDescription> </ItemPricing> <ItemStatus> <Code>string</Code> <Description>string</Description> </ItemStatus> <ItemFormat> <Code>string</Code> <Description>string</Description> </ItemFormat> <Warehouse01> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse01> <Warehouse02> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse02> <Warehouse03> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse03> <Warehouse04> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse04> <Warehouse05> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse05> </StockCheck>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /StockCheckWS/StockCheckWS.asmx/StockPriceRequest HTTP/1.1 Host: edi.btol.com Content-Type: application/x-www-form-urlencoded Content-Length: length SystemID=string&Password=string&CustID=string&ItemID=string&Quantity=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <StockCheck xmlns="http://edi.btol.com"> <Message>string</Message> <ItemID>string</ItemID> <ItemIDType>string</ItemIDType> <ReplacementItemID>string</ReplacementItemID> <ItemSource>string</ItemSource> <Title>string</Title> <Author>string</Author> <StreetDate>string</StreetDate> <StreetDateDescription>string</StreetDateDescription> <Returnable>string</Returnable> <Edition>string</Edition> <Publisher>string</Publisher> <ItemPricing> <NetPrice>double</NetPrice> <ListPrice>double</ListPrice> <DiscountPercent>double</DiscountPercent> <Surcharge>double</Surcharge> <SurChargeDescription>string</SurChargeDescription> </ItemPricing> <ItemStatus> <Code>string</Code> <Description>string</Description> </ItemStatus> <ItemFormat> <Code>string</Code> <Description>string</Description> </ItemFormat> <Warehouse01> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse01> <Warehouse02> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse02> <Warehouse03> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse03> <Warehouse04> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse04> <Warehouse05> <Code>string</Code> <Location>string</Location> <OnHandQuantity>double</OnHandQuantity> <OnOrderQuantity>double</OnOrderQuantity> </Warehouse05> </StockCheck>