If you have any question left, please drop a note with the discussion link of this page.
Products Methods
From Wiki.zanox.com
Products contain the image, price, description and several other parameters of an advertisers product item. The SOAP product methods enable the retrieval of these product items from the Zanox advertisers.
Products can only be retrieved via the SOAP API.
Contents |
GetProduct
Example Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://api.zanox.com/namespace/2008-05-21/"> <soapenv:Header/> <soapenv:Body> <ns:GetProduct> <ns:zupId>584c3841d8a4426284fd4f0c783c14d8</ns:zupId> <ns:applicationId>1234567890987654321</ns:applicationId> </ns:GetProduct> </soapenv:Body> </soapenv:Envelope>
Example Response
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> <env:Header/> <env:Body> <GetProductResponse xmlns="http://api.zanox.com/namespace/2008-05-21/"> <return> <productsResult> <productItem id="584c3841d8a4426284fd4f0c783c14d8"> <name>Apple MacBook 13,3 C2D T8300 - 2,4GHz, 2GB, 250GB, ComboDri</name> <modified>2008-05-13T15:46:48+02:00</modified> <manufacturer>Apple</manufacturer> <program id="860">T-Online Shop</program> <currency>EUR</currency> <price>1349.95</price> <image> <small>http://www.t-online-shop.de/res/product_100/cnet_resource41715.jpg</small> <medium>http://www.t-online-shop.de/res/product_200/cnet_resource41715.jpg</medium> </image> <url> <adspace id="784330">http://ad.zanox.com/ppc/?3277071C2052109857S784330&ULP=[[41715]]</adspace> <adspace id="784334">http://ad.zanox.com/ppc/?3277071C2052109857S784334&ULP=[[41715]]</adspace> </url> </productItem> </productsResult> </return> </GetProductResponse> </env:Body> </env:Envelope>
Explanation of Response Items
Explanation of the response items for GetProduct
GetProducts
Example Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://api.zanox.com/namespace/2008-05-21/"> <soapenv:Header/> <soapenv:Body> <ns:GetProducts> <ns:programId>860</ns:programId> <ns:adspaceId>784330</ns:adspaceId> <ns:modifiedDate>2008-03-03</ns:modifiedDate> <ns:page>1</ns:page> <ns:items>1</ns:items> <ns:applicationId>1234567890987654321</ns:applicationId> </ns:GetProducts> </soapenv:Body> </soapenv:Envelope>
Example Response
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> <env:Header/> <env:Body> <GetProductsResponse xmlns="http://api.zanox.com/namespace/2008-05-21/"> <return> <page>1</page> <items>1</items> <total>16492</total> <productsResult> <productItem id="ef407c1e60b2825ccc06d426ec40c66b"> <name>Canon HC 3200 Silber - Alu-Systemkoffer für XL-2</name> <modified>2008-05-27T19:47:18+02:00</modified> <manufacturer>Canon</manufacturer> <program id="860">T-Online Shop</program> <currency>EUR</currency> <price>528.9</price> <image> <small>http://www.t-online-shop.de/res/product_100/resource_26079.jpg</small> <medium>http://www.t-online-shop.de/res/product_200/resource_26080.jpg</medium> </image> <url> <adspace id="784330">http://ad.zanox.com/ppc/?3277071C2052109857S784330&ULP=[[10242]]</adspace> </url> </productItem> </productsResult> </return> </GetProductsResponse> </env:Body> </env:Envelope>
Explanation of Response Items
Explanation of the response items for GetProducts
SearchProducts
Example Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://api.zanox.com/namespace/2008-05-21/"> <soapenv:Header/> <soapenv:Body> <ns:SearchProducts> <ns:query>wii fit yoga</ns:query> <ns:region>DE</ns:region> <ns:minPrice>1</ns:minPrice> <ns:maxPrice>1000</ns:maxPrice> <ns:adspaceId>784330</ns:adspaceId> <ns:page>1</ns:page> <ns:items>10</ns:items> <ns:applicationId>1234567890987654321</ns:applicationId> </ns:SearchProducts> </soapenv:Body> </soapenv:Envelope>
Example Response
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> <env:Header/> <env:Body> <SearchProductsResponse xmlns="http://api.zanox.com/namespace/2008-05-21/"> <return> <page>1</page> <items>3</items> <total>383207</total> <query>wii fit yoga</query> <productsResult> <productItem id="d1df2f4ef1d4c424239b33146e3ab0ce"> <name>Anna Trökes: Yoga Fitness</name> <modified>2008-08-11T11:53:01+02:00</modified> <description>Feel good</description> <program id="2281">Libri.de</program> <currency>EUR</currency> <price>9.9</price> <image> <small>http://media.libri.de/shop/coverscans/626/6264018_6264018_small.jpg</small> <medium>http://media.libri.de/shop/coverscans/626/6264018_6264018_small.jpg</medium> </image> <url> <adspace id="784330">http://ad.zanox.com/ppc/?4922939C1457578548S784330&ULP=[[productDetails?artiId=6264018&adCode=032Q20N02Y02T]]</adspace> </url> </productItem> <productItem id="61937a55536cfceeff4a468b68e5076f">...</productItem> <productItem id="81cfb87ecbf8d1415910d4a63d33240b">... </productItem> </productsResult> </return> </SearchProductsResponse> </env:Body> </env:Envelope>