+ All Categories
Home > Documents > Walter Meier (Manufacturing) Inc. API Documentation...

Walter Meier (Manufacturing) Inc. API Documentation...

Date post: 18-Jul-2020
Category:
Upload: others
View: 5 times
Download: 0 times
Share this document with a friend
28
All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Walter Meier (Manufacturing) Inc. API Documentation Contents Walter Meier (Manufacturing) Inc. API Documentation ........................................................................................................................ 1 Terms .................................................................................................................................................................................................. 2 Questions ............................................................................................................................................................................................ 3 What’s New......................................................................................................................................................................................... 4 Functions ............................................................................................................................................................................................. 5 GetAvailableInventory .................................................................................................................................................................... 5 GetAvailableInventoryXML ............................................................................................................................................................. 5 GetPricing........................................................................................................................................................................................ 5 GetPricingXML ................................................................................................................................................................................ 6 GetProductInfo ............................................................................................................................................................................... 7 GetProductInfoXML ........................................................................................................................................................................ 8 GetPromotions .............................................................................................................................................................................. 10 GetPromotionsXML....................................................................................................................................................................... 10 PlaceOrder .................................................................................................................................................................................... 11 PlaceOrder2 .................................................................................................................................................................................. 12 GetActiveParts .............................................................................................................................................................................. 13 GetOrderStatus ............................................................................................................................................................................. 13 Return XML Examples ....................................................................................................................................................................... 14 GetAvailableInventory .................................................................................................................................................................. 14 GetAvailableInventoryXML ........................................................................................................................................................... 14 GetPricing...................................................................................................................................................................................... 15 GetPricingXML .............................................................................................................................................................................. 16 GetProductInfo ............................................................................................................................................................................. 16 GetProductInfoXML ...................................................................................................................................................................... 22 GetPromotions .............................................................................................................................................................................. 25 GetPromotionsXML....................................................................................................................................................................... 27 GetActiveParts .................................................................................................................................................................................. 28 GetOrderStatus ................................................................................................................................................................................. 28
Transcript
Page 1: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

Walter Meier (Manufacturing) Inc. API Documentation

Contents Walter Meier (Manufacturing) Inc. API Documentation ........................................................................................................................ 1

Terms .................................................................................................................................................................................................. 2

Questions ............................................................................................................................................................................................ 3

What’s New ......................................................................................................................................................................................... 4

Functions ............................................................................................................................................................................................. 5

GetAvailableInventory .................................................................................................................................................................... 5

GetAvailableInventoryXML ............................................................................................................................................................. 5

GetPricing ........................................................................................................................................................................................ 5

GetPricingXML ................................................................................................................................................................................ 6

GetProductInfo ............................................................................................................................................................................... 7

GetProductInfoXML ........................................................................................................................................................................ 8

GetPromotions .............................................................................................................................................................................. 10

GetPromotionsXML....................................................................................................................................................................... 10

PlaceOrder .................................................................................................................................................................................... 11

PlaceOrder2 .................................................................................................................................................................................. 12

GetActiveParts .............................................................................................................................................................................. 13

GetOrderStatus ............................................................................................................................................................................. 13

Return XML Examples ....................................................................................................................................................................... 14

GetAvailableInventory .................................................................................................................................................................. 14

GetAvailableInventoryXML ........................................................................................................................................................... 14

GetPricing ...................................................................................................................................................................................... 15

GetPricingXML .............................................................................................................................................................................. 16

GetProductInfo ............................................................................................................................................................................. 16

GetProductInfoXML ...................................................................................................................................................................... 22

GetPromotions .............................................................................................................................................................................. 25

GetPromotionsXML....................................................................................................................................................................... 27

GetActiveParts .................................................................................................................................................................................. 28

GetOrderStatus ................................................................................................................................................................................. 28

Page 2: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

Terms API Key: A unique combination of letters and digits that has been issued to your company. If you don’t have one, you can request

one through the Distributor home page on partners.maam.waltermeier.com.

Dataset: This is an XML representation of a table of data.

Stock Number: The number Walter Meier (Manufacturing) Inc. uses to identify a specific machine or item.

Latest changes in the API are marked as New!

Page 3: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

Questions Q: Does anyone actually use this?

A: Yes. We do. This API is an extension of the web services we built to power our sites. The ProductInfoXML function is identical to

the one we use to get information for each product page.

Q: Why are two versions offered for each function?

A: Because our programmers didn’t have enough to do. Seriously, though, the custom XML methods are lighter weight, meaning

less data is transmitted, but they require custom programming to parse and use. This is useful for people utilizing PHP,

ColdFusion, or working with LINQ to XML in .NET.

The “dataset” methods send much more data, including schema information, which makes them easier to consume for people

familiar with using datasets in .NET. Which one you use is up to you. The information you get back is the same in either case.

(For what it’s worth, we use our own custom XML methods.)

Q: Can I send a semicolon (or other character) separated list instead of a comma separated list?

A: No. If you use a character other than a comma to separate a list, the function will fail.

Q: Can I suggest a new function?

A: Sure! Just use the feedback form on partners.maam.waltermeier.com. Our developers see everything people send us through

the feedback form.

Q: Can I use this to place Drop Ship orders?

A: Yes. You can place a warehouse OR Drop Ship orders using PlaceOrder2 function. This is a replacement for the PlaceOrder

function. If this is a warehouse order, send NULL for the DropShipInfo object.

Page 4: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

What’s New 1. Added PackQty (standard pack quantity) to Product Information returned by GetProductInfo and GetProductInfoXML

functions. 2. Added new function GetActiveParts that returns a list of active Stock Numbers. 3. Added new function GetOrderStatus that returns order status and shipping info for each item in the order.

Page 5: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

Functions

GetAvailableInventory

Parameters:

String: API Key

String: Stock Numbers –list of stock number separated by commas

Returns:

String: Part Number – Same as Stock Number

String: Description

Single: Available inventory in our Nashville warehouse

Single: Available inventory in our Washington warehouse

GetAvailableInventoryXML

Parameters:

String: API Key

String: Stock Numbers –list of stock number separated by commas

Returns:

String: Part Number

String: Description

Single: Available inventory in our Nashville warehouse

Single: Available inventory in our Washington warehouse

GetPricing

Parameters:

String: API Key

String: SoldTo – Your main account number

String: ShipTo – The account number for which you’re inquiring

String: Stock Number

Returns:

String: Part Number

String: Description

Double: Price – Your contract price. (-1 indicates a price is not available.)

Double: List Price (-1 indicates a price is not available.)

Single: Available stock in our Nashville warehouse

Single: Available stock in our Washington warehouse

String: Number of items in a package (returns Not Applicable if item has only 1 unit per “package”)

String: Obsolete status

Boolean: Returns 1 if item is a part. Returns 0 if item is an accessory or finished good.

String: Whether or not the item is in stock or not.

Page 6: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetPricingXML

Parameters:

String: API Key

String: SoldTo – Your main account number

String: ShipTo – The account number for which you’re inquiring

String: Stock Number

Returns:

String: Part Number

String: Description

Double: Price – Your contract price. (-1 indicates a price is not available.)

Double: List Price (-1 indicated a prices is not available.)

Single: Available stock in our Nashville warehouse

Single: Available stock in our Washington warehouse

String: Number of items in a package (returns Not Applicable if item has only 1 unit per “package”)

String: Obsolete status

Boolean: Returns 1 if item is a part. Returns 0 if item is an accessory or finished good.

String: Whether or not the item is in stock or not.

Page 7: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetProductInfo

Parameters:

String: API Key

String: Stock Numbers –list of stock number separated by commas

Returns:

String: Stock Number

String: Marketing banner – This is good marketing text

String: Description

String: ImageName – the name of the main image for the product

String: Manual – the file name for the manual. The URL for all manuals is

http://content.[brand].com/manuals/[filename].pdf

String: Whitepaper – the file name for the whitepaper. The URL for all whitepapers is

http://content.[brand].com/whitepapers/[filename].pdf

String: Easy2 – the URL for the Easy2 demo

String: Brand

String: New Product – Yes or No

String: Hierarchy – This is the hierarchy we use for classifying our products

String : WebBrochure – This is the URL for the sell sheet/brochure.

String: Warranty – Length of the warranty for the product

String:WebMetaTitle – The title we use on our web page. We suggest you use it, too.

String: WebMetaDescription – A description to put into the Meta Description tag on your website.

String: WebMetaKeywords – A set of keywords to put into your Meta Keywords tag.

String: Microsite – The URL to the microsite for the product, if applicable

Integer: PackQty – Standard pack quantity for the product. New!

Array: Details – A list of strings giving details abou the product

Array: Specifications

o Specification – Name/Value/UOM attribute combinations

String: Name – Name of the attribute

String: Value – Value of the attribute

String: UOM – Unit of Measure of the attribute, if applicable

Array: Accessories

o Accessory

String: Stock Number

String: Description

String: ImageName

String: Whitepaper

String: Brand

String: WarrantyText – HTML block with image of the correct warranty logo and text regarding warranty and service

options.

Array: ImageSet – main image is always the first in the set

o String: Image- URL for an image of the product

Page 8: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetProductInfoXML

Parameters:

String: API Key

String: Stock Numbers –list of stock number separated by commas

Returns:

String: Stock Number

String: Marketing banner – This is good marketing text

String: Description

String: ImageName – the name of the main image for the product

String: Manual – the file name for the manual. The URL for all manuals is

http://content.[brand].com/manuals/[filename].pdf

String: Whitepaper – the file name for the whitepaper. The URL for all whitepapers is

http://content.[brand].com/whitepapers/[filename].pdf

String: Easy2 – the URL for the Easy2 demo

String: Brand

String: New Product – Yes or No

String: Hierarchy – This is the hierarchy we use for classifying our products

String : WebBrochure – This is the URL for the sell sheet/brochure.

String: Warranty – Length of the warranty for the product

String:WebMetaTitle – The title we use on our web page. We suggest you use it, too.

String: WebMetaDescription – A description to put into the Meta Description tag on your website.

String: WebMetaKeywords – A set of keywords to put into your Meta Keywords tag.

String: Microsite – The URL to the microsite for the product, if applicable

Integer: PackQty – Standard pack quantity for the product. New!

Array: Details

o String: DetailValue

Array: Specifications

o Specification – Name/Value/UOM attribute combinations

String: Name – Name of the attribute

String: Value – Value of the attribute

String: UOM – Unit of Measure of the attribute, if applicable

Array: Accessories

o Accessory

String: Stock Number

String: Description

String: ImageName

String: Whitepaper

String: Brand

WarrantyInfo:

o String: WarrantyText – HTML block with image of the correct warranty logo and text regarding warranty and

service options.

Array: ImageSet – main image is always the first in the set

Page 9: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

o String: Image- URL for an image of the product

Page 10: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetPromotions

Parameters:

String: API Key

Integer: CatID

o 1 – Walter Meier

o 2 – JET Industrial

o 3 – JET Wood

o 4 – Wilton

o 5 – Powermatic

Returns:

Array: Promotions

o Promotion

String: Part_Number – Same as Stock Number

String: Model

String: Description

String: PromoName

String: PromoPage – Page number in the flyer where the item can be found

String: PromoPDF – URL to the flyer on our website

GetPromotionsXML

Parameters:

String: API Key

Integer: CatID

o 1 – Walter Meier

o 2 – JET Industrial

o 3 – JET Wood

o 4 – Wilton

o 5 – Powermatic

Returns:

Array: Promotions

o Promotion

String: Part_Number – Same as Stock Number

String: Model

String: Description

String: PromoName

String: PromoPage – Page number in the flyer where the item can be found

String: PromoPDF – URL to the flyer on our website

Page 11: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

PlaceOrder Deprecated. Use PlaceOrder2 instead.

Parameters:

String: API Key

String: SoldTo – Your main account number

String: ShipTo – The account number identifying where the items are to be shipped

String: PONumber – The Purchase Order number you’d like assigned to the order

String: AckEmail – The email address to which you’d like us to send the Purchase Order Acknowledgement .

String: ASNEmail – The email address to which you’d like us to send the Advance Shipping Notification information.

Array: ordItems

o OrderItem

String: StockNumber

Integer: Quantity

Returns: A message. If the message contains the word success, your order was placed. Otherwise, the message will contain

information as to why you order was declined.

Page 12: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

PlaceOrder2

Parameters:

String: API Key

String: SoldTo – Your main account number

String: ShipTo – The account number identifying where the items are to be shipped

String: PONumber – The Purchase Order number you’d like assigned to the order

String: AckEmail – The email address to which you’d like us to send the Purchase Order Acknowledgement.

String: ASNEmail – The email address to which you’d like us to send the Advance Shipping Notification information.

Array: ordItems

o OrderItem

String: StockNumber

Integer: Quantity

String: PromoCode – Promotion Code

DropShipInfo – Shipping Info

o String: FirstName – First Name

o String: LastName – Last Name

o String: CompanyName – Company Name

o String: Address1 – Address Line 1

o String: Address2 – Address Line 2

o String: City - City

o String: State - State

o String: ZipCode - ZipCode

o String: Country - Country

o String: ContactPhoneNumber – Contact Phone Number

o Boolen: LiftGateNeeded – Lift Gate requested

o Boolean: ResidentialDelivery – Residential Delivery requested.

Returns: A message. If the message contains the word success, your order was placed. Otherwise, the message will contain

information as to why you order was declined.

Page 13: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetActiveParts New!

Parameters:

String: API Key

Returns:

Array: PartNumbers

String: part_number – Same as Stock Number

GetOrderStatus New!

Parameters:

String: API Key

String: SoldTo

String: OrderNumber

Returns:

String: OrderNumber

String: PONumber

String: OrderDate

String: OrderStatus

Array: OrderItems

o OrderItem

String: StockNumber – Item Stock Number

String: Description – Item Description

Integer: ShipQty – Item Shipping Quantity

String: ShipDate – Shipping Date (blank if not shipped yet)

String: ShippedBy – Carrier Name (blank if not shipped yet)

String:ShipWebsite – Carrier Website (blank if not shipped yet)

String: TrackingNumber – Item Tracking Number (blank if not shipped yet)

String: TrackingURL – Item Tracking URL (blank if not shipped yet)

Page 14: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

Return XML Examples

GetAvailableInventory <?xml version="1.0" encoding="utf-8"?>

<DataSet xmlns="WMH.API">

<xs:schema id="AvailableInventory" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema"

xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">

<xs:element name="AvailableInventory" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">

<xs:complexType>

<xs:choice minOccurs="0" maxOccurs="unbounded">

<xs:element name="Inventory">

<xs:complexType>

<xs:sequence>

<xs:element name="part_number" type="xs:string" minOccurs="0" />

<xs:element name="Description" type="xs:string" minOccurs="0" />

<xs:element name="JNA" type="xs:string" minOccurs="0" />

<xs:element name="JWA" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:choice>

</xs:complexType>

</xs:element>

</xs:schema>

<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-

microsoft-com:xml-diffgram-v1">

<AvailableInventory xmlns="">

<Inventory diffgr:id="Inventory1" msdata:rowOrder="0" diffgr:hasChanges="inserted">

<part_number>1792000K</part_number>

<Description>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</Description>

<JNA>160.000</JNA>

<JWA>5.000</JWA>

</Inventory>

</AvailableInventory>

</diffgr:diffgram>

</DataSet>

GetAvailableInventoryXML <?xml version="1.0" encoding="utf-8"?>

<AvailableInventory>

<Inventory>

<part_number>1792000K</part_number>

<Description>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</Description>

<JNA>160.000</JNA>

<JWA>5.000</JWA>

</Inventory>

</AvailableInventory>

Page 15: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetPricing <?xml version="1.0" encoding="utf-8"?>

<DataSet xmlns="WMH.API">

<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema"

xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">

<xs:element name="PRICING">

<xs:complexType>

<xs:sequence>

<xs:element name="part_number" type="xs:string" minOccurs="0" />

<xs:element name="description" type="xs:string" minOccurs="0" />

<xs:element name="Price" type="xs:string" minOccurs="0" />

<xs:element name="ListPrice" type="xs:string" minOccurs="0" />

<xs:element name="JNA" type="xs:string" minOccurs="0" />

<xs:element name="JWA" type="xs:string" minOccurs="0" />

<xs:element name="RoundingProfile" type="xs:string" minOccurs="0" />

<xs:element name="Obsolete" type="xs:string" minOccurs="0" />

<xs:element name="isPart" type="xs:string" minOccurs="0" />

<xs:element name="Availability" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">

<xs:complexType>

<xs:choice minOccurs="0" maxOccurs="unbounded">

<xs:element ref="PRICING" />

</xs:choice>

</xs:complexType>

</xs:element>

</xs:schema>

<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-

microsoft-com:xml-diffgram-v1">

<NewDataSet xmlns="">

<PRICING diffgr:id="PRICING1" msdata:rowOrder="0" diffgr:hasChanges="inserted">

<part_number>1792000K</part_number>

<description>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</description>

<Price>-1.000000000000000e+000</Price>

<ListPrice>1.252000000000000e+003</ListPrice>

<JNA>160</JNA>

<JWA>5</JWA>

<RoundingProfile>Not Applicable</RoundingProfile>

<Obsolete>False</Obsolete>

<isPart>0</isPart>

<Availability>In Stock</Availability>

</PRICING>

</NewDataSet>

</diffgr:diffgram>

</DataSet>

Page 16: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetPricingXML <?xml version="1.0" encoding="utf-8"?>

<PRICING>

<part_number>1792000K</part_number>

<description>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</description>

<Price>-1.000000000000000e+000</Price>

<ListPrice>1.252000000000000e+003</ListPrice>

<JNA>160</JNA>

<JWA>5</JWA>

<RoundingProfile>Not Applicable</RoundingProfile>

<Obsolete>False</Obsolete>

<isPart>0</isPart>

<Availability>In Stock</Availability>

</PRICING>

GetProductInfo <?xml version="1.0" encoding="utf-8"?>

<DataSet xmlns="WMH.API">

<xs:schema id="ProductFeed" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema"

xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">

<xs:element name="ProductFeed" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">

<xs:complexType>

<xs:choice minOccurs="0" maxOccurs="unbounded">

<xs:element name="Product">

<xs:complexType>

<xs:sequence>

<xs:element name="StockNumber" type="xs:string" minOccurs="0" />

<xs:element name="Marketingbanner" type="xs:string" minOccurs="0" />

<xs:element name="Description" type="xs:string" minOccurs="0" />

<xs:element name="ImageName" type="xs:string" minOccurs="0" />

<xs:element name="Manual" type="xs:string" minOccurs="0" />

<xs:element name="Whitepaper" type="xs:string" minOccurs="0" />

<xs:element name="Easy2" type="xs:string" minOccurs="0" />

<xs:element name="Brand" type="xs:string" minOccurs="0" />

<xs:element name="NewProduct" type="xs:string" minOccurs="0" />

<xs:element name="Hierarchy" type="xs:string" minOccurs="0" />

<xs:element name="WebBrochure" type="xs:string" minOccurs="0" />

<xs:element name="Warranty" type="xs:string" minOccurs="0" />

<xs:element name="WebMetaTitle" type="xs:string" minOccurs="0" />

<xs:element name="WebMetaDescription" type="xs:string" minOccurs="0" />

<xs:element name="WebMetaKeywords" type="xs:string" minOccurs="0" />

<xs:element name="MicroSite" type="xs:string" minOccurs="0" />

<xs:element name="Details" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="Detail" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="DetailValue" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

Page 17: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

</xs:element>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="Specifications" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="Specification" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="Name" type="xs:string" minOccurs="0" />

<xs:element name="Value" type="xs:string" minOccurs="0" />

<xs:element name="UOM" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="Accessories" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="Accessory" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="StockNumber" type="xs:string" minOccurs="0" />

<xs:element name="Description" type="xs:string" minOccurs="0" />

<xs:element name="ImageName" type="xs:string" minOccurs="0" />

<xs:element name="Whitepaper" type="xs:string" minOccurs="0" />

<xs:element name="Brand" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="WarrantyInfo" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="WarrantyText" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="ImageSet" minOccurs="0" maxOccurs="unbounded">

<xs:complexType>

<xs:sequence>

<xs:element name="Image" nillable="true" minOccurs="0"

maxOccurs="unbounded">

<xs:complexType>

<xs:simpleContent msdata:ColumnName="Image_Text" msdata:Ordinal="0">

<xs:extension base="xs:string">

Page 18: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

</xs:extension>

</xs:simpleContent>

</xs:complexType>

</xs:element>

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:choice>

</xs:complexType>

</xs:element>

</xs:schema>

<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-

microsoft-com:xml-diffgram-v1">

<ProductFeed xmlns="">

<Product diffgr:id="Product1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenProduct_Id="0">

<StockNumber>1792000K</StockNumber>

<Marketingbanner>The award winning PM2000 table saw sets a new standard for innovation

with an array of patented features and massive body design. It boasts the heaviest cast iron base

in its class that virtually eliminates table vibration. The cast iron tables are oversized, and

the push button arbor lock is accessible from above the table top to eliminate the need for dual

arbor wrenches. The quick-release riving knife design helps reduce the chance of kickback. The

blade tilt scale has adjustable angle indicators for repetitive bevel cuts. Built-in retractable

omni-directional caster system mobilizes your table saw. A wide stance, heavy-duty trunnion and

concave teeth on the trunnion gears promote easier raising and tilting of saw blade. Poly-V drive

belt system results in quieter, more efficient power transfer from the motor to the arbor with

virtually no vibration and less heat build up. Built-in dust collection port with sloped cabinet

floor and convenient access to the inside of the saw cabinet make for simple clean-up. The saw

has a proprietary safety switch with magnetic interlock, and the stop button can be knee

activated.</Marketingbanner>

<Description>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</Description>

<ImageName>1792000K_main</ImageName>

<Manual>m_1792000K.pdf</Manual>

<Whitepaper>1792000.pdf</Whitepaper>

<Easy2>http://webapps.easy2.com/cm/masterflash/generic_index.asp?page_id=35745199</Easy2>

<Brand>Powermatic</Brand>

<NewProduct>Yes</NewProduct>

<Hierarchy>Woodworking, Table Saws, Cabinet Saws</Hierarchy>

<WebBrochure>http://content.wmhtoolgroup.com/sellsheets/1792000k_ss.pdf</WebBrochure>

<Warranty>5 Year</Warranty>

<WebMetaTitle>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</WebMetaTitle>

<WebMetaDescription>The Powermatic PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System in

Woodworking, Table saws, Cabinet Saws</WebMetaDescription>

<WebMetaKeywords>1792000K, PM2000, PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System,

Powermatic, Woodworking, Table saws, Cabinet Saws</WebMetaKeywords>

<MicroSite />

<PackQty>1</PackQty> New!

Page 19: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

<Details diffgr:id="Details1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenDetails_Id="0" msdata:hiddenProduct_Id="0">

<Detail diffgr:id="Detail1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenDetails_Id="0">

<DetailValue>Quick release riving knife greatly reduces binding/kickback

risk</DetailValue>

</Detail>

<Detail diffgr:id="Detail2" msdata:rowOrder="1" diffgr:hasChanges="inserted"

msdata:hiddenDetails_Id="0">

<DetailValue>Built-in retractable caster system (patent pending) for immediate shop

mobility</DetailValue>

</Detail>

[Details truncated.]

</Details>

<Specifications diffgr:id="Specifications1" msdata:rowOrder="0"

diffgr:hasChanges="inserted" msdata:hiddenSpecifications_Id="0" msdata:hiddenProduct_Id="0">

<Specification diffgr:id="Specification1" msdata:rowOrder="0"

diffgr:hasChanges="inserted" msdata:hiddenSpecifications_Id="0">

<Name>Arbor Diameter (in.)</Name>

<Value>5/8</Value>

<UOM />

</Specification>

<Specification diffgr:id="Specification2" msdata:rowOrder="1"

diffgr:hasChanges="inserted" msdata:hiddenSpecifications_Id="0">

<Name>Arbor Speed (RPM)</Name>

<Value>4300</Value>

<UOM />

</Specification>

<Specification diffgr:id="Specification3" msdata:rowOrder="2"

diffgr:hasChanges="inserted" msdata:hiddenSpecifications_Id="0">

<Name>Blade Diameter (in.)</Name>

<Value>10</Value>

<UOM />

</Specification>

<Specification diffgr:id="Specification4" msdata:rowOrder="3"

diffgr:hasChanges="inserted" msdata:hiddenSpecifications_Id="0">

<Name>Brand</Name>

<Value>Powermatic</Value>

<UOM />

</Specification>

<Specification diffgr:id="Specification5" msdata:rowOrder="4"

diffgr:hasChanges="inserted" msdata:hiddenSpecifications_Id="0">

<Name>Distance Between Sliding Table and Blade (in.)</Name>

<Value>n.a.</Value>

<UOM />

</Specification>

[Specifications truncated]

</Specifications>

<Accessories diffgr:id="Accessories1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenAccessories_Id="0" msdata:hiddenProduct_Id="0">

Page 20: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

<Accessory diffgr:id="Accessory1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenAccessories_Id="0">

<StockNumber>1791786</StockNumber>

<Description>PM2000NCI: No Clearance Insert for PM2000</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

<Accessory diffgr:id="Accessory2" msdata:rowOrder="1" diffgr:hasChanges="inserted"

msdata:hiddenAccessories_Id="0">

<StockNumber>1791787</StockNumber>

<Description>PM2000LPR: Low Profile Riving Knife for PM2000</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

<Accessory diffgr:id="Accessory3" msdata:rowOrder="2" diffgr:hasChanges="inserted"

msdata:hiddenAccessories_Id="0">

<StockNumber>1791788</StockNumber>

<Description>PM2000DI: Dado Insert for PM2000</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

[Accessories truncated.]

</Accessories>

<WarrantyInfo diffgr:id="WarrantyInfo1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenProduct_Id="0">

<WarrantyText>&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;a href

="http://www.powermatic.com/About.aspx?nav=warranty"&gt;&lt;IMG border=0

src="http://s7d2.scene7.com/is/image/WMHToolGroup/Powermatic_Warranty_5yr?qlt=95,1&amp;amp;hei=20

0&amp;amp;wid=200"&gt;&lt;/a&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face=Verdana size=4&gt;WARRANTY AND

SERVICE&lt;/FONT&gt;&lt;BR&gt;&lt;BR&gt;&lt;FONT face=Verdana size=2&gt;WMH Tool Group, Inc.,

warrants every product it sells. If one of our tools needs service or repair, one of our

Authorized Service Centers located throughout the United States can give you quick service. In

most cases, any of these WMH Tool Group Authorized Service Centers can authorize warranty repair,

assist you in obtaining parts, or perform routine maintenance and major repair on your

POWERMATIC® tools. For the name of an Authorized Service Center in your area call 1-800-274-

6848.&lt;/br&gt;For more informaton click &lt;a href

="http://www.powermatic.com/About.aspx?nav=warranty"&gt; HERE&lt;/a&gt;

&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</WarrantyText>

</WarrantyInfo>

<ImageSet diffgr:id="ImageSet1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0" msdata:hiddenProduct_Id="0">

<Image diffgr:id="Image1" msdata:rowOrder="0" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_main</Image>

<Image diffgr:id="Image2" msdata:rowOrder="1" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det1</Image>

<Image diffgr:id="Image3" msdata:rowOrder="2" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det10</Image>

Page 21: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

<Image diffgr:id="Image4" msdata:rowOrder="3" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det11</Image>

<Image diffgr:id="Image5" msdata:rowOrder="4" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det2</Image>

<Image diffgr:id="Image6" msdata:rowOrder="5" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det3</Image>

<Image diffgr:id="Image7" msdata:rowOrder="6" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det4</Image>

<Image diffgr:id="Image8" msdata:rowOrder="7" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det5</Image>

<Image diffgr:id="Image9" msdata:rowOrder="8" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det6</Image>

<Image diffgr:id="Image10" msdata:rowOrder="9" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det7</Image>

<Image diffgr:id="Image11" msdata:rowOrder="10" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det8</Image>

<Image diffgr:id="Image12" msdata:rowOrder="11" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det9</Image>

<Image diffgr:id="Image13" msdata:rowOrder="12" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_beauty1</Image

>

<Image diffgr:id="Image14" msdata:rowOrder="13" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_beauty2</Image

>

<Image diffgr:id="Image15" msdata:rowOrder="14" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_beauty3</Image

>

<Image diffgr:id="Image16" msdata:rowOrder="15" diffgr:hasChanges="inserted"

msdata:hiddenImageSet_Id="0">http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_r</Image>

</ImageSet>

</Product>

</ProductFeed>

</diffgr:diffgram>

</DataSet>

Page 22: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetProductInfoXML <?xml version="1.0" encoding="utf-8"?>

<ProductFeed>

<Product>

<StockNumber>1792000K</StockNumber>

<Marketingbanner>The award winning PM2000 table saw sets a new standard for innovation with

an array of patented features and massive body design. It boasts the heaviest cast iron base in

its class that virtually eliminates table vibration. The cast iron tables are oversized, and the

push button arbor lock is accessible from above the table top to eliminate the need for dual

arbor wrenches. The quick-release riving knife design helps reduce the chance of kickback. The

blade tilt scale has adjustable angle indicators for repetitive bevel cuts. Built-in retractable

omni-directional caster system mobilizes your table saw. A wide stance, heavy-duty trunnion and

concave teeth on the trunnion gears promote easier raising and tilting of saw blade. Poly-V drive

belt system results in quieter, more efficient power transfer from the motor to the arbor with

virtually no vibration and less heat build up. Built-in dust collection port with sloped cabinet

floor and convenient access to the inside of the saw cabinet make for simple clean-up. The saw

has a proprietary safety switch with magnetic interlock, and the stop button can be knee

activated.</Marketingbanner>

<Description>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</Description>

<ImageName>1792000K_main</ImageName>

<Manual>m_1792000K.pdf</Manual>

<Whitepaper>1792000.pdf</Whitepaper>

<Easy2>http://webapps.easy2.com/cm/masterflash/generic_index.asp?page_id=35745199</Easy2>

<Brand>Powermatic</Brand>

<NewProduct>Yes</NewProduct>

<Hierarchy>Woodworking, Table Saws, Cabinet Saws</Hierarchy>

<WebBrochure>http://content.wmhtoolgroup.com/sellsheets/1792000k_ss.pdf</WebBrochure>

<Warranty>5 Year</Warranty>

<WebMetaTitle>PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System</WebMetaTitle>

<WebMetaDescription>The Powermatic PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System in

Woodworking, Table saws, Cabinet Saws</WebMetaDescription>

<WebMetaKeywords>1792000K, PM2000, PM2000, 3HP 1PH Table Saw, w/ 50" Accu-Fence System,

Powermatic, Woodworking, Table saws, Cabinet Saws</WebMetaKeywords>

<MicroSite />

<PackQty>1</PackQty> New!

<Details>

<Detail>

<DetailValue>Quick release riving knife greatly reduces binding/kickback

risk</DetailValue>

</Detail>

<Detail>

<DetailValue>Built-in retractable caster system (patent pending) for immediate shop

mobility</DetailValue>

</Detail>

<Detail>

<DetailValue>Push button arbor lock (patent pending) for rapid blade change</DetailValue>

</Detail>

<Detail>

<DetailValue>Poly-V drive belt system delivers efficient, quiet operation</DetailValue>

</Detail>

[Details truncated.]

Page 23: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

</Details>

<Specifications>

<Specification>

<Name>Arbor Diameter (in.)</Name>

<Value>5/8</Value>

<UOM />

</Specification>

<Specification>

<Name>Arbor Speed (RPM)</Name>

<Value>4300</Value>

<UOM />

</Specification>

<Specification>

<Name>Blade Diameter (in.)</Name>

<Value>10</Value>

<UOM />

</Specification>

<Specification>

<Name>Brand</Name>

<Value>Powermatic</Value>

<UOM />

</Specification>

[Specifications truncated.]

</Specifications>

<Accessories>

<Accessory>

<StockNumber>1791786</StockNumber>

<Description>PM2000NCI: No Clearance Insert for PM2000</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

<Accessory>

<StockNumber>1791787</StockNumber>

<Description>PM2000LPR: Low Profile Riving Knife for PM2000</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

<Accessory>

<StockNumber>1791788</StockNumber>

<Description>PM2000DI: Dado Insert for PM2000</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

<Accessory>

<StockNumber>1791791</StockNumber>

<Description>PM2000-TKRK: .079" Riving Knife</Description>

<ImageName>0</ImageName>

<Whitepaper />

Page 24: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

<Brand>Powermatic</Brand>

</Accessory>

<Accessory>

<StockNumber>1791792</StockNumber>

<Description>PM2000-TKLPRK: .079" Low Profile RK</Description>

<ImageName>0</ImageName>

<Whitepaper />

<Brand>Powermatic</Brand>

</Accessory>

[Accessories truncated.]

</Accessories>

<WarrantyInfo>

<WarrantyText>&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;a href

="http://www.powermatic.com/About.aspx?nav=warranty"&gt;&lt;IMG border=0

src="http://s7d2.scene7.com/is/image/WMHToolGroup/Powermatic_Warranty_5yr?qlt=95,1&amp;amp;hei=20

0&amp;amp;wid=200"&gt;&lt;/a&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face=Verdana size=4&gt;WARRANTY AND

SERVICE&lt;/FONT&gt;&lt;BR&gt;&lt;BR&gt;&lt;FONT face=Verdana size=2&gt;WMH Tool Group, Inc.,

warrants every product it sells. If one of our tools needs service or repair, one of our

Authorized Service Centers located throughout the United States can give you quick service. In

most cases, any of these WMH Tool Group Authorized Service Centers can authorize warranty repair,

assist you in obtaining parts, or perform routine maintenance and major repair on your

POWERMATIC® tools. For the name of an Authorized Service Center in your area call 1-800-274-

6848.&lt;/br&gt;For more informaton click &lt;a href

="http://www.powermatic.com/About.aspx?nav=warranty"&gt; HERE&lt;/a&gt;

&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</WarrantyText>

</WarrantyInfo>

<ImageSet>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_main</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det1</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det10</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det11</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det2</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det3</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det4</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det5</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det6</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det7</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det8</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_det9</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_beauty1</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_beauty2</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_beauty3</Image>

<Image>http://s7d2.scene7.com/is/image/WMHToolGroup/1792000K_r</Image>

</ImageSet>

</Product>

</ProductFeed>

Page 25: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetPromotions <?xml version="1.0" encoding="utf-8"?>

<DataSet xmlns="WMH.API">

<xs:schema id="Promotions" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema"

xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">

<xs:element name="Promotions" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">

<xs:complexType>

<xs:choice minOccurs="0" maxOccurs="unbounded">

<xs:element name="Promotion">

<xs:complexType>

<xs:sequence>

<xs:element name="Part_number" type="xs:string" minOccurs="0" />

<xs:element name="Model" type="xs:string" minOccurs="0" />

<xs:element name="Description" type="xs:string" minOccurs="0" />

<xs:element name="PromoName" type="xs:string" minOccurs="0" />

<xs:element name="PromoPage" type="xs:string" minOccurs="0" />

<xs:element name="PromoPDF" type="xs:string" minOccurs="0" />

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:choice>

</xs:complexType>

</xs:element>

</xs:schema>

<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-

microsoft-com:xml-diffgram-v1">

<Promotions xmlns="">

<Promotion diffgr:id="Promotion1" msdata:rowOrder="0" diffgr:hasChanges="inserted">

<Part_number>1280100C</Part_number>

<Model>PM2700</Model>

<Description>PM2700 Shaper, 3HP 1PH 230V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

<Promotion diffgr:id="Promotion2" msdata:rowOrder="1" diffgr:hasChanges="inserted">

<Part_number>1280101C</Part_number>

<Model>PM2700</Model>

<Description>PM2700 Shaper, 5HP 1PH 230V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

<Promotion diffgr:id="Promotion3" msdata:rowOrder="2" diffgr:hasChanges="inserted">

<Part_number>1280102C</Part_number>

<Model>PM2700</Model>

<Description>PM2700 Shaper, 5HP 3PH 230/460V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

Page 26: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

<Promotion diffgr:id="Promotion4" msdata:rowOrder="3" diffgr:hasChanges="inserted">

<Part_number>1352001</Part_number>

<Model>3520B</Model>

<Description>3520B Lathe, 2HP, 1 or 3PH, 220V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

[Promotions truncated.]

</Promotions>

</diffgr:diffgram>

</DataSet>

Page 27: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetPromotionsXML <?xml version="1.0" encoding="utf-8"?>

<Promotions>

<Promotion>

<Part_number>1280100C</Part_number>

<Model>PM2700</Model>

<Description>PM2700 Shaper, 3HP 1PH 230V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

<Promotion>

<Part_number>1280101C</Part_number>

<Model>PM2700</Model>

<Description>PM2700 Shaper, 5HP 1PH 230V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

<Promotion>

<Part_number>1280102C</Part_number>

<Model>PM2700</Model>

<Description>PM2700 Shaper, 5HP 3PH 230/460V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

<Promotion>

<Part_number>1352001</Part_number>

<Model>3520B</Model>

<Description>3520B Lathe, 2HP, 1 or 3PH, 220V</Description>

<PromoName>POWER UP - Sales Event</PromoName>

<PromoPage>3</PromoPage>

<PromoPDF>http://content.wmhtoolgroup.com/promotions/3t08/3t08_pow_promo_flyer.pdf</PromoPDF>

</Promotion>

[Promotions truncated.]

</Promotions>

Page 28: Walter Meier (Manufacturing) Inc. API Documentation Contentscontent.wiltontool.com/waltermeier-api.pdf · All content copyright Walter Meier (Manufacturing) Inc. ® 2011 Questions

All content copyright Walter Meier (Manufacturing) Inc. ® 2011

GetActiveParts New! <PartNumbers>

<part_number>10006</part_number>

<part_number>10011</part_number>

<part_number>10016</part_number>

<part_number>10021</part_number>

<part_number>10026</part_number>

<part_number>10031</part_number>

<part_number>10036</part_number>

<part_number>10056</part_number>

<part_number>10066</part_number> [Part Numbers truncated.]

</PartNumbers>

GetOrderStatus New! <OrderStatus>

<OrderNumber>000XXXXXXX</OrderNumber>

<PONumber>TEST001</PONumber>

<OrderDate>03/14/2011</OrderDate>

<OrderStatus>Complete</OrderStatus>

<OrderItems>

<OrderItem>

<StockNumber>708482K</StockNumber>

<Description>JPS-10: 10" ProShop 1-3/4HP 30" CW</Description>

<ShipQty>1</ShipQty>

<ShipDate>03/14/2011</ShipDate>

<ShippedBy>VOLUNTEER EXPRESS INC</ShippedBy>

<ShipWebsite>http://volunteerexpress.com/</ShipWebsite>

<TrackingNumber>XXXXXXXX</TrackingNumber>

<TrackingURL>http://volunteerexpress.com/</TrackingURL>

</OrderItem> [Order Items truncated.]

</OrderItems>

</OrderStatus>


Recommended