{"id":79596,"date":"2017-04-05T11:39:42","date_gmt":"2017-04-05T11:39:42","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=79596"},"modified":"2017-04-05T11:42:03","modified_gmt":"2017-04-05T11:42:03","slug":"export-prestashop-products-amazon-seller-central-using-amazon-mws","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/","title":{"rendered":"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)"},"content":{"rendered":"<p>In this blog we\u00a0will learn about some important\u00a0points that must be\u00a0followed when we\u00a0want to export products to Amazon Seller Central using Amazon MWS.<\/p>\n<p>Suppose we\u00a0have a prestashop site and also have a\u00a0seller account at amazon. Now we\u00a0want to export our prestashop catalog products to our amazon seller central.<\/p>\n<p>So there are some points that must be followed when we\u00a0will export our products.<\/p>\n<ol>\n<li>For exporting product from prestashop to amazon, our product must have a valid UPC barcode, <span class=\"label-tooltip\" title=\"\">EAN-13 barcode or ISBN code.<\/span><\/li>\n<li>We\u00a0can also export product by any ASIN number\u00a0of any amazon product.<\/li>\n<li>Now\u00a0we have to create a XML file with our product details i.e. product title, product description etc.<\/li>\n<li>After XML file creation, we\u00a0have to call submitFeed operation of Amazon MWS\u00a0with\u00a0Feed Type \u00a0_POST_PRODUCT_DATA_<\/li>\n<\/ol>\n<p>Format of XML file for exporting products &#8211;<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"iso-8859-1\"?&gt;\r\n&lt;AmazonEnvelope xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\n    xsi:noNamespaceSchemaLocation=\"amzn-envelope.xsd\"&gt;\r\n  &lt;Header&gt;\r\n    &lt;DocumentVersion&gt;1.01&lt;\/DocumentVersion&gt;\r\n    &lt;MerchantIdentifier&gt;M_EXAMPLE_123456&lt;\/MerchantIdentifier&gt;\r\n  &lt;\/Header&gt;\r\n  &lt;MessageType&gt;Product&lt;\/MessageType&gt;\r\n  &lt;PurgeAndReplace&gt;false&lt;\/PurgeAndReplace&gt;\r\n  &lt;Message&gt;\r\n    &lt;MessageID&gt;1&lt;\/MessageID&gt;\r\n    &lt;OperationType&gt;Update&lt;\/OperationType&gt;\r\n    &lt;Product&gt;\r\n      &lt;SKU&gt;56789&lt;\/SKU&gt;\r\n      &lt;StandardProductID&gt;\r\n        &lt;Type&gt;UPC&lt;\/Type&gt;\r\n        &lt;Value&gt;215452154215&lt;\/Value&gt;\r\n      &lt;\/StandardProductID&gt;\r\n      &lt;DescriptionData&gt;\r\n        &lt;Title&gt;Example Product Title&lt;\/Title&gt;\r\n        &lt;Description&gt;This is an example product description.&lt;\/Description&gt;\r\n      &lt;\/DescriptionData&gt;\r\n    &lt;\/Product&gt;\r\n  &lt;\/Message&gt;\r\n&lt;\/AmazonEnvelope&gt;<\/pre>\n<p>&nbsp;<\/p>\n<div class=\"panel panel-info\">\n<div class=\"panel-heading\">\n<div>\n<h3 class=\"panel-title\">Note<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<div><strong>For exporting products, your product\u00a0must have a\u00a0<span class=\"label-tooltip\" title=\"\">&lt;StandardProductId&gt;\u00a0with valid<\/span>\u00a0UPC barcode, <span class=\"label-tooltip\" title=\"\">EAN-13 barcode, ISBN code OR\u00a0ASIN number.<\/span><\/strong><\/div>\n<\/div>\n<\/div>\n<h3><\/h3>\n<p>&nbsp;<\/p>\n<h3><strong>Update quantity and price of amazon product &#8211;<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>After submit feed of product, we\u00a0have to\u00a0update our product quantity and price and for this we need our product&#8217;s SKU (Reference code).<\/p>\n<p>So we will\u00a0again call submitFeed operation with Feed Type &#8211;<\/p>\n<p><strong>A. \u00a0_POST_INVENTORY_AVAILABILITY_DATA_ for Quantity update &#8211;<\/strong><\/p>\n<p>Format of XML file for updating Quantity &#8211;<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"iso-8859-1\"?&gt;\r\n&lt;AmazonEnvelope xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\n    xsi:noNamespaceSchemaLocation=\"amzn-envelope.xsd\"&gt;\r\n  &lt;Header&gt;\r\n    &lt;DocumentVersion&gt;1.01&lt;\/DocumentVersion&gt;\r\n    &lt;MerchantIdentifier&gt;M_EXAMPLE_123456&lt;\/MerchantIdentifier&gt;\r\n  &lt;\/Header&gt;\r\n  &lt;MessageType&gt;Inventory&lt;\/MessageType&gt;\r\n  &lt;PurgeAndReplace&gt;false&lt;\/PurgeAndReplace&gt;\r\n  &lt;Message&gt;\r\n    &lt;MessageID&gt;1&lt;\/MessageID&gt;\r\n    &lt;OperationType&gt;Update&lt;\/OperationType&gt;\r\n    &lt;Inventory&gt;\r\n      &lt;SKU&gt;56789&lt;\/SKU&gt;\r\n      &lt;Quantity&gt;26&lt;\/Quantity&gt;\r\n    &lt;\/Inventory&gt;\r\n  &lt;\/Message&gt;\r\n&lt;\/AmazonEnvelope&gt;\r\n\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>B.) \u00a0_POST_PRODUCT_PRICING_DATA_ \u00a0for Price update &#8211;<\/strong><\/p>\n<p>Format of XML file for updating\u00a0price\u00a0&#8211;<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"iso-8859-1\"?&gt;\r\n&lt;AmazonEnvelope xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\n    xsi:noNamespaceSchemaLocation=\"amzn-envelope.xsd\"&gt;\r\n  &lt;Header&gt;\r\n    &lt;DocumentVersion&gt;1.01&lt;\/DocumentVersion&gt;\r\n    &lt;MerchantIdentifier&gt;M_EXAMPLE_123456&lt;\/MerchantIdentifier&gt;\r\n  &lt;\/Header&gt;\r\n  &lt;MessageType&gt;Price&lt;\/MessageType&gt;\r\n  &lt;PurgeAndReplace&gt;false&lt;\/PurgeAndReplace&gt;\r\n  &lt;Message&gt;\r\n    &lt;MessageID&gt;1&lt;\/MessageID&gt;\r\n    &lt;OperationType&gt;Update&lt;\/OperationType&gt;\r\n    &lt;Inventory&gt;\r\n      &lt;SKU&gt;56789&lt;\/SKU&gt;\r\n      &lt;StandardPrice currency=\"USD\"&gt;100&lt;\/StandardPrice&gt;\r\n    &lt;\/Inventory&gt;\r\n  &lt;\/Message&gt;\r\n&lt;\/AmazonEnvelope&gt;\r\n\r\n<\/pre>\n<p>You can get more information about submit Feed operation through Amazon MWS documentation &#8211;\u00a0<a href=\"http:\/\/docs.developer.amazonservices.com\/en_IN\/feeds\/Feeds_SubmitFeed.html\">http:\/\/docs.developer.amazonservices.com\/en_IN\/feeds\/Feeds_SubmitFeed.html<\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog we\u00a0will learn about some important\u00a0points that must be\u00a0followed when we\u00a0want to export products to Amazon Seller Central using Amazon MWS. Suppose we\u00a0have a prestashop site and also have a\u00a0seller account at amazon. Now we\u00a0want to export our prestashop catalog products to our amazon seller central. So there are some points that must <a href=\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":82,"featured_media":74323,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,209],"tags":[],"class_list":["post-79596","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)<\/title>\n<meta name=\"description\" content=\"Points that must be followed when you want to export your products to Amazon Seller Central using Amazon Marketplace Web Service (MWS)\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)\" \/>\n<meta property=\"og:description\" content=\"Points that must be followed when you want to export your products to Amazon Seller Central using Amazon Marketplace Web Service (MWS)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-05T11:39:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-05T11:42:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Neeraj\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neeraj\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\"},\"author\":{\"name\":\"Neeraj\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273\"},\"headline\":\"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)\",\"datePublished\":\"2017-04-05T11:39:42+00:00\",\"dateModified\":\"2017-04-05T11:42:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\"},\"wordCount\":293,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"articleSection\":[\"php\",\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\",\"url\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\",\"name\":\"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"datePublished\":\"2017-04-05T11:39:42+00:00\",\"dateModified\":\"2017-04-05T11:42:03+00:00\",\"description\":\"Points that must be followed when you want to export your products to Amazon Seller Central using Amazon Marketplace Web Service (MWS)\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273\",\"name\":\"Neeraj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Neeraj\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/neeraj751\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)","description":"Points that must be followed when you want to export your products to Amazon Seller Central using Amazon Marketplace Web Service (MWS)","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/","og_locale":"en_US","og_type":"article","og_title":"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)","og_description":"Points that must be followed when you want to export your products to Amazon Seller Central using Amazon Marketplace Web Service (MWS)","og_url":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-04-05T11:39:42+00:00","article_modified_time":"2017-04-05T11:42:03+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","type":"image\/png"}],"author":"Neeraj","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Neeraj","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/"},"author":{"name":"Neeraj","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273"},"headline":"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)","datePublished":"2017-04-05T11:39:42+00:00","dateModified":"2017-04-05T11:42:03+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/"},"wordCount":293,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","articleSection":["php","prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/","url":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/","name":"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","datePublished":"2017-04-05T11:39:42+00:00","dateModified":"2017-04-05T11:42:03+00:00","description":"Points that must be followed when you want to export your products to Amazon Seller Central using Amazon Marketplace Web Service (MWS)","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/export-prestashop-products-amazon-seller-central-using-amazon-mws\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Guidelines for Exporting Products To Amazon Seller Central using Amazon Marketplace Web Service (MWS)"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273","name":"Neeraj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Neeraj"},"url":"https:\/\/webkul.com\/blog\/author\/neeraj751\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/79596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/82"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=79596"}],"version-history":[{"count":26,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/79596\/revisions"}],"predecessor-version":[{"id":79633,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/79596\/revisions\/79633"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/74323"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=79596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=79596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=79596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}