https://webservices.vin65.com/V300/ProductService.cfc?wsdl
https://webservices.aus.vin65.com/V300/ProductService.cfc?wsdl
Use the SearchProducts() function to search for products in Vin65. Required fields are indicated by a '*'
Attribute | Data Type | Default | Description |
---|---|---|---|
WebsiteIDs | UUID List | Available for Enterprise Webservices Comma seperated list of WebsiteIDs in Enterprise Leave blank for all websites |
|
ProductID | UUID | UUID of the Vin65 Product | |
Title | String 255 | ||
SKU | String 50 | ||
Type |
Enumerated |
||
IsActive | Boolean | ||
DateModifiedFrom | DateTime | ||
DateModifiedTo | DateTime | ||
MaxRows | Integer | 100 | |
Page | Integer | 1 |
<soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="https://www.w3.org/2001/XMLSchema"> <soap:Body> <SearchProducts> <Request> <Security> <Username>//Your Username//</Username> <Password>//Your Password//</Password> </Security> <WebsiteIDs>02FC83E3-5EB4-4AA7-A64A-9710BFD9A12A</WebsiteIDs> <ProductID></ProductID> <SKU></SKU> <Type></Type> <IsActive>1</IsActive> <DateModifiedFrom>2011-01-01T12:21:43</DateModifiedFrom> <DateModifiedTo>2011-09-12T12:21:43</DateModifiedTo> <MaxRows>100</MaxRows> <Page>1</Page> </Request> </SearchProducts> </soap:Body> </soap:Envelope>
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="https://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <SearchProductsResponse> <SearchProductsReturn> <Errors></Errors> <IsSuccessful>true</IsSuccessful> <Products> <Products> <ProductID>87a72632-1cc4-81ae-75a1-ce9b32f638be</ProductID> <Title>Decanter</Title> <SKU>Vinturi Wine Decanter</SKU> <Brand>Pine Wines</Brand> <Price>94.00</Price> <SalePrice/> <Type>Product</Type> <Vintage/> <isActive>true</isActive> <WebsiteID>02FC83E3-5EB4-4AA7-A64A-9710BFD9A12A</WebsiteID> <DateModified>2012-04-13T21:27:49.153Z</DateModified> </Products> <Products> <ProductID>c9351da6-a936-4086-3619-93ff763536bf</ProductID> <Title>2009 Merlot</Title> <SKU>Merlot</SKU> <Brand/> <Price>99.00</Price> <SalePrice/> <Type>Wine</Type> <Vintage>2009</Vintage> <isActive>false</isActive> <WebsiteID>02FC83E3-5EB4-4AA7-A64A-9710BFD9A12A</WebsiteID> <DateModified>2012-04-13T22:00:12.497Z</DateModified> </Products> </Products> <RecordCount>2</RecordCount> </SearchProductsReturn> </SearchProductsResponse> </soapenv:Body> </soapenv:Envelope>