{"info":{"_postman_id":"f4b72d8a-5282-424b-a748-4c8a1256d5fb","name":"Autoparts4Less Seller API","description":"<html><head></head><body><h1 id=\"overview\">Overview</h1>\n<p>With this API you can do most things that are available through our website seller panel, including: Add/Edit/Find products, and Order Management.</p>\n<p>The AutoParts4Less API consists of two types of calls, GET (pulls information) and POST (creates or updates information)</p>\n<p><strong>Current Version:</strong> <code>1.0</code></p>\n<p><strong>Production Base Url:</strong> <code>https://sellers-api.autoparts4less.com/v1</code></p>\n<h1 id=\"rate-limit\">Rate Limit</h1>\n<p>There is no rate limit for any requests.</p>\n<p>All requests and responses are paginated with a maximum of 30 results.</p>\n<h1 id=\"before-starting\">Before Starting</h1>\n<p>First create a seller account by going to <a href=\"https://seller.autoparts4less.com/\">https://seller.autoparts4less.com/</a></p>\n<p>You will need to take 3 steps in your account before listing your first product:</p>\n<ol>\n<li>Connect your PayPal Business account<ol>\n<li><a href=\"https://seller.autoparts4less.com/seller-paypal-on-bording\">https://seller.autoparts4less.com/seller-paypal-on-bording</a></li>\n<li><a href=\"https://autoparts4less.scrollhelp.site/seller-best-practices/payments\">https://autoparts4less.scrollhelp.site/seller-best-practices/payments</a></li>\n</ol>\n</li>\n<li>Add at least 1 Shipping Policy<ol>\n<li><a href=\"https://seller.autoparts4less.com/shipping-policy\">https://seller.autoparts4less.com/shipping-policy</a></li>\n<li><a href=\"https://autoparts4less.scrollhelp.site/documentation/shipping-method\">https://autoparts4less.scrollhelp.site/documentation/shipping-method</a></li>\n</ol>\n</li>\n<li>Add a Shipping and Return Policy Details<ol>\n<li><a href=\"https://seller.autoparts4less.com/microsite\">https://seller.autoparts4less.com/microsite</a></li>\n</ol>\n</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Rate Limit","slug":"rate-limit"},{"content":"Before Starting","slug":"before-starting"}],"owner":"8286419","collectionId":"f4b72d8a-5282-424b-a748-4c8a1256d5fb","publishedId":"Uz5CLHY8","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-05-31T19:18:18.000Z"},"item":[{"name":"Main Seller API","item":[{"name":"Generate Access Token","id":"863f70db-e3fe-48ed-9912-23bf8c3206dd","request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/authorize?email={{seller_email}}&auth_token={{auth_token}}","description":"<p>An API <code>access_token</code> is required for all other API requests. The <code>auth_token</code> that is required for successfully creating an API token can be generated by logging into your seller account at <a href=\"https://seller.autoparts4less.com/\">https://seller.autoparts4less.com/</a> then click on \"Seller Business\" -&gt; \"Auth Token\" -&gt; \"Generate New Auth Token\".</p>\n<p>The <code>seller_email</code> is the email address used to login to the seller account where you generated the <code>auth_token</code></p>\n<p>The returned <code>access_token</code> will expire after 24 hours. Creating more than one <code>access_token</code> does not invalidate previous ones, the <code>access_token</code> will always be valid for 24 hours.</p>\n","urlObject":{"host":["/authorize"],"query":[{"key":"email","value":"{{seller_email}}"},{"key":"auth_token","value":"{{auth_token}}"}],"variable":[]}},"response":[{"id":"c020d967-8c8a-45b5-ac50-538585fed369","name":"Generate Access Token","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"//authorize?email={{seller_email}}&auth_token={{auth_token}}","host":["/"],"path":["authorize"],"query":[{"key":"email","value":"{{seller_email}}"},{"key":"auth_token","value":"{{auth_token}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Mar 2023 17:03:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"236"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"access_token\": \"abCDefgHIjkLMnoPQrsTUvwXYz0123456789.abCDefgHIjkLMnoPQrsTUvwXYz0123456789abCDefgHIjkLMnoPQrsTUvwXYz0123456789ab.abCDefgHIjkLMnoPQrsTUvwXYz0123456789abCDe-f\",\n    \"expires_at\": \"2022-01-31T01:01:01.0000001\"\n}"}],"_postman_id":"863f70db-e3fe-48ed-9912-23bf8c3206dd"},{"name":"Check If Product Exists","id":"aa30f61c-eab6-46cb-a71c-2a5599ee44fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/products/exists?upc=100000000000,100000000001,100000000002","description":"<p><strong>LIMITS</strong><br />Up to 30 comma separated product UPCs to be checked in each request. If you add more than 30 comma separated UPCs in a single request, the request will be rejected.</p>\n<p><strong>GENERAL</strong><br />Before trying to sell any product, it is best to check if the product already exists. If a product does exist, then you only need to add your 'seller specifics' (price, quantity, etc.) in order to sell the product. But if the product does not already exist, then you are required to add all other product attributes (name, images, etc.)</p>\n","urlObject":{"path":["exists"],"host":["/products"],"query":[{"key":"upc","value":"100000000000,100000000001,100000000002"}],"variable":[]}},"response":[{"id":"e8b2040e-4b8b-4b04-b07c-c150075661ee","name":"Check If Product Exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":{"raw":"https://sellers-api.autoparts4less.com/v1/products/exists?upc=100000000000,100000000001,100000000002","protocol":"https","host":["sellers-api","autoparts4less","com"],"path":["v1","products","exists"],"query":[{"key":"upc","value":"100000000000,100000000001,100000000002"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 28 May 2022 02:32:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"481"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"upc\": \"100000000000\",\n        \"part_number\": \"ABC123\",\n        \"product_brand\": \"The Product Brand\"\n    },\n    {\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"upc\": \"100000000001\",\n        \"part_number\": \"XYZ987\",\n        \"product_brand\": \"The Product Brand\"\n    },\n    {\n        \"status\": \"error\",\n        \"message\": \"Please correct the following detail errors.\",\n        \"errors\": {\n            \"upc\": \"Provided 'upc' does not exist in the system.\"\n        },\n        \"upc\": \"100000000002\"\n    }\n]"}],"_postman_id":"aa30f61c-eab6-46cb-a71c-2a5599ee44fa"},{"name":"Sell An Existing Product","id":"82ff922d-3069-43e7-90f7-5125a615f142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"upc\": \"100000000000\",\n\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\"price\": 199.99,\n\t\t\"sale_price\": 149.99,\n\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\"quantity\": 10,\n\t\t\"reorder_level\": 3,\n\t\t\"handling_time_no_of_days\": 0,\n\t\t\"eligible_for_return\": [0|1],\n\t\t\"return_within_days\": 30,\n\t\t\"allow_free_return\": [0|1],\n\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\"shipping_weight\": 10.5,\n\t\t\"shipping_policy_id\": \"ABC123\"\n\t},\n    {\n\t\t\"upc\": \"100000000001\",\n\t\t\"vendor_sku\": \"SKU-2\",\n\t\t\"condition\": \"Used\",\n\t\t\"condition_note\": \"Like new, never installed on a vehicle\",\n\t\t\"price\": 199.99,\n\t\t\"sale_price\": 149.99,\n\t\t\"sale_from_date\": \"2000-01-01\",\n\t\t\"sale_to_date\": \"2030-12-31\",\n\t\t\"quantity\": 10,\n\t\t\"reorder_level\": 3,\n\t\t\"handling_time_no_of_days\": 0,\n\t\t\"eligible_for_return\": 1,\n\t\t\"return_within_days\": 30,\n\t\t\"allow_free_return\": 1,\n\t\t\"warranty_type\": \"Manufacturer\",\n\t\t\"warranty_description\": \"1 Year Manufacturer Warranty\",\n\t\t\"tax_category\": \"Taxable\",\n\t\t\"shipping_weight\": 10.5,\n\t\t\"shipping_policy_id\": \"ABC123\"\n\t},\n    {\n\t\t\"upc\": \"100000000002\",\n\t\t\"vendor_sku\": \"SKU-3\",\n\t\t\"condition\": \"New\",\n\t\t\"price\": 199.99,\n\t\t\"quantity\": 10,\n\t\t\"handling_time_no_of_days\": 0,\n\t\t\"eligible_for_return\": 0,\n\t\t\"warranty_type\": \"Manufacturer\",\n\t\t\"tax_category\": \"Taxable\",\n\t\t\"shipping_policy_id\": \"ABC123\"\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/products/sell-an-existing","description":"<p><strong>LIMITS</strong><br />Up to 30 products can be added in each request. If you add more than 30 product in a single request, the request will be rejected.</p>\n<p><strong>GENERAL</strong><br />If a product already exists in the AutoParts4Less network, then you can start selling the product by only adding your 'seller specifics'</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>JSON Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>upc</td>\n<td>string  <br />limit 12-14 characters</td>\n<td>Yes</td>\n<td>The product's numeric Universal Product</td>\n</tr>\n<tr>\n<td>vendor_sku</td>\n<td>string  <br />max-length: 50</td>\n<td>Yes</td>\n<td>Your personal unique identifier for this product. We recommend using the same sku as the manufacturer, but you may create your own. This <code>vendor_sku</code> will be the reference you use to update your product in other API requests</td>\n</tr>\n<tr>\n<td>condition</td>\n<td>string  <br />accepted-values: \"New\", \"Used-Mint\", \"Used-LikeNew\", \"Used-Good\", \"Used-Fair\", \"Used-Poor\"</td>\n<td>No</td>\n<td>The condition of your product.</td>\n</tr>\n<tr>\n<td>condition_note</td>\n<td>string  <br />max-length: 500</td>\n<td>No</td>\n<td>Optionally add a note that can be shown to buyers to give additional detail about the product’s condition</td>\n</tr>\n<tr>\n<td>price</td>\n<td>float  <br />min-value: 0</td>\n<td>Yes</td>\n<td>The price you're selling the product for (do NOT include $ or any other currency symbols, all prices are in USD)</td>\n</tr>\n<tr>\n<td>sale_price</td>\n<td>float  <br />min-value: 0</td>\n<td>No</td>\n<td>Optionally add a sale price for your product. If your product is on sale, the original price will be shown striked out with the new sale price highlighted</td>\n</tr>\n<tr>\n<td>sale_from_date</td>\n<td>string  <br />format: \"YYYY-MM-DD\"</td>\n<td>No</td>\n<td>Optionally limit your sale price to only be used within this date range. If you have a \"Sale Price\" set, but no start date is specified here, your sale will start immediately. The timezone is always set to UTC, so your sale will start at 12:01AM UTC on the date specified here. Format the date as \"YYYY-MM-DD\"</td>\n</tr>\n<tr>\n<td>sale_to_date</td>\n<td>string  <br />format: \"YYYY-MM-DD\"</td>\n<td>No</td>\n<td>Optionally limit your sale price to only be used within this date range. If you have a \"Sale Price\" set, but no end date is specified here, your sale will continue forever until you either remove the \"Sale Price\" or you add a \"To Date\" here. The timezone is always set to UTC, so your sale will end at 12:59PM UTC on the date specified here. Format the date as \"YYYY-MM-DD\"</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>int  <br />min-value: 0</td>\n<td>Yes</td>\n<td>Your Inventory Amount</td>\n</tr>\n<tr>\n<td>reorder_level</td>\n<td>int  <br />min-value: 0</td>\n<td>No</td>\n<td>If your quantity falls below this number, we will send you a notification</td>\n</tr>\n<tr>\n<td>handling_time_no_of_days</td>\n<td>int  <br />min-value: 0</td>\n<td>Yes</td>\n<td>The number of days it takes for you to hand a product to a shipping carrier after receiving an order.</td>\n</tr>\n<tr>\n<td>eligible_for_return</td>\n<td>bool : 0 or 1</td>\n<td>Yes</td>\n<td>Use 1 if the product is eligible for returns, and 0 if you do not accept returns</td>\n</tr>\n<tr>\n<td>return_within_days</td>\n<td>int  <br />min-value 0</td>\n<td>Yes</td>\n<td>The number of days a customer has to return an item after they've received their purchase.</td>\n</tr>\n<tr>\n<td>allow_free_return</td>\n<td>bool : 0 or 1</td>\n<td>Yes</td>\n<td>Use 1 if you are offering free returns to the buyer, where you will be paying for any return shipping.</td>\n</tr>\n<tr>\n<td>warranty_type</td>\n<td>string  <br />accepted-values: Manufacturer' or 'Vendor' or 'NoWarranty'</td>\n<td>Yes</td>\n<td>Specify whether the warranty is from the \"Vendor\", \"Manufacturer\", or \"NoWarranty\"</td>\n</tr>\n<tr>\n<td>warranty_description</td>\n<td>string  <br />max-length: 2000</td>\n<td>No</td>\n<td>Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.</td>\n</tr>\n<tr>\n<td>tax_category</td>\n<td>string  <br />accepted-values: \"Taxable\" or \"Nontaxable\"</td>\n<td>Yes</td>\n<td>Almost all products are \"Taxable\"</td>\n</tr>\n<tr>\n<td>shipping_weight</td>\n<td>float  <br />min-value: 0</td>\n<td>No</td>\n<td>Optionally add the product's shipping weight, including wrapping and packaging weight. If not set, the product's weight will be used when calculating shipping costs</td>\n</tr>\n<tr>\n<td>shipping_policy_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Download your Shipping Policies by logging into your seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt;\" Download Catalog Template\" &gt; \"Shipping Policy Template\". Enter the \"shipping_policy_id\" here to select a shipping policy for this product</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["sell-an-existing"],"host":["/products"],"query":[],"variable":[]}},"response":[],"_postman_id":"82ff922d-3069-43e7-90f7-5125a615f142"},{"name":"Add New Product","id":"4c714b66-4eb0-49f1-bfc5-0808ca6c63e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"description\": \"A detailed description of the product describing its value to customers.\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"features\": \"A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.\",\n\t\t\t\"important_notes\": \"Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.\",\n\t\t\t\"country_of_manufacture\": \"United States\",\n\t\t\t\"harmonized_tariff_code\": \"8708.10.30\",\n\t\t\t\"instruction_files\": [\"https://example.com/file.pdf\", \"https://example.com/file.png\"],\n\t\t\t\"video_urls\": [\"https://www.youtube.com/watch?v=video1\" , \"https://www.youtube.com/watch?v=video2\"],\n\t\t\t\"california_proposition65_warn\": 1,\n\t\t\t\"old_part_number\": \"OLD-ABC123\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"sale_price\": 149.99,\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\t\"quantity\": 10,\n\t\t\t\"reorder_level\": 3,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"return_within_days\": 30,\n\t\t\t\"allow_free_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_weight\": 10.5,\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\",\n\t\t\t\"image_2\": \"https://example.com/image2.jpeg\",\n\t\t\t\"image_3\": \"https://example.com/image3.png\",\n\t\t\t\"image_4\": \"https://example.com/image4.webp\",\n\t\t\t\"image_5\": \"https://example.com/image5.gif\",\n\t\t\t\"image_6\": \"https://example.com/image6.svg\",\n\t\t\t\"image_7\": \"https://example.com/image7.bmp\",\n\t\t\t\"image_8\": \"https://example.com/image8.jpg\",\n\t\t\t\"image_9\": \"https://example.com/image9.jpg\",\n\t\t\t\"image_10\": \"https://example.com/image10.jpg\"\n\t\t},\n\t\t\"item_specific\": {\n\t\t\t\"Attribute1\": \"Value 1\",\n            \"Attribute2\": \"Value 2\"\n\t\t},\n\t\t\"fitment\": {\n\t\t\t\"fitment_label\": \"Label for Advanced Fitment\",\n\t\t\t\"fitment_values\": \"Comma Separated Advanced Fitment Values, Second Value, Third Value\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"california_proposition65_warn\": 1\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-3\",\n\t\t\t\"condition\": \"New\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"quantity\": 10,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": 0,\n\t\t\t\"warranty_type\": \"Manufacturer\",\n\t\t\t\"tax_category\": \"Taxable\",\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\"\n\t\t}\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/products/create","description":"<p><strong>LIMITS</strong><br />Up to 30 products can be added in each request. If you add more than 30 product in a single request, the request will be rejected.</p>\n<p><strong>GENERAL</strong><br />If a product does not already exist in the AutoParts4Less network, then use this request to create the new product</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>JSON Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>general_info.category_id</td>\n<td>int</td>\n<td>Yes</td>\n<td>Download the category mapping template by logging into the seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt; \"Download Catalog Template\" &gt; \"Category Mapping\". Find the category for your product, and enter that category's ID here.</td>\n</tr>\n<tr>\n<td>general_info.upc</td>\n<td>string  <br />limit 12-14 characters</td>\n<td>Yes</td>\n<td>The product's numeric Universal Product</td>\n</tr>\n<tr>\n<td>general_info.product_brand</td>\n<td>string</td>\n<td>Yes</td>\n<td>The product's brand or manufacturer</td>\n</tr>\n<tr>\n<td>general_info.part_number</td>\n<td>string  <br />max-length: 50</td>\n<td>Yes</td>\n<td>The product's part number</td>\n</tr>\n<tr>\n<td>general_info.name</td>\n<td>string  <br />max-length: 250</td>\n<td>Yes</td>\n<td>The product's name</td>\n</tr>\n<tr>\n<td>general_info.description</td>\n<td>string  <br />max-length: 5000</td>\n<td>No</td>\n<td>A detailed description of the product describing its value to customers.</td>\n</tr>\n<tr>\n<td>general_info.product_weight</td>\n<td>float  <br />min-value: 0</td>\n<td>Yes</td>\n<td>The product's weight, not including the shipping (packaging) weight in pounds LBS</td>\n</tr>\n<tr>\n<td>general_info.features</td>\n<td>string  <br />max-length: 5000</td>\n<td>No</td>\n<td>A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.</td>\n</tr>\n<tr>\n<td>general_info.important_notes</td>\n<td>string  <br />max-length: 5000</td>\n<td>No</td>\n<td>Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.</td>\n</tr>\n<tr>\n<td>general_info.country_of_manufacture</td>\n<td>string</td>\n<td>No</td>\n<td>The country in which the product was manufactured.</td>\n</tr>\n<tr>\n<td>general_info.harmonized_tarriff_code</td>\n<td>string  <br />max-length: 50</td>\n<td>No</td>\n<td>The code used to determine the tariff/duty rate of the product if it is being shipped to the US from another country. <a href=\"https://hts.usitc.gov/current\">https://hts.usitc.gov/current</a></td>\n</tr>\n<tr>\n<td>general_info.instructions_file</td>\n<td>array</td>\n<td>No</td>\n<td>A direct URL to the product's installation instructions. Only allows file types: PDF, PNG, JPG, JPEG</td>\n</tr>\n<tr>\n<td>general_info.video_urls</td>\n<td>array</td>\n<td>No</td>\n<td>URL to the product's youtube or vimeo video</td>\n</tr>\n<tr>\n<td>general_info.california_proposition_65_warn</td>\n<td>bool : 0 or 1</td>\n<td>Yes</td>\n<td>Use 1 if the product does have a Prop65 warning</td>\n</tr>\n<tr>\n<td>general_info.old_part_number</td>\n<td>string  <br />max-length: 50</td>\n<td>No</td>\n<td>If this is a superseded part for another discontinued part, you can add the old part number as a reference</td>\n</tr>\n<tr>\n<td>seller_specifics.vendor_sku</td>\n<td>string  <br />max-length: 50</td>\n<td>Yes</td>\n<td>Your personal unique identifier for this product. We recommend using the same sku as the manufacturer, but you may create your own. This <code>vendor_sku</code> will be the reference you use to update your product in other API requests</td>\n</tr>\n<tr>\n<td>seller_specifics.condition</td>\n<td>string  <br />accepted-values: \"New\", \"Used-Mint\", \"Used-LikeNew\", \"Used-Good\", \"Used-Fair\", \"Used-Poor\"</td>\n<td>No</td>\n<td>The condition of your product.</td>\n</tr>\n<tr>\n<td>seller_specifics.condition_note</td>\n<td>string  <br />max-length: 500</td>\n<td>No</td>\n<td>Optionally add a note that can be shown to buyers to give additional detail about the product’s condition</td>\n</tr>\n<tr>\n<td>seller_specifics.price</td>\n<td>float  <br />min-value: 0</td>\n<td>Yes</td>\n<td>The price you're selling the product for (do NOT include $ or any other currency symbols, all prices are in USD)</td>\n</tr>\n<tr>\n<td>seller_specifics.sale_price</td>\n<td>float  <br />min-value: 0</td>\n<td>No</td>\n<td>Optionally add a sale price for your product. If your product is on sale, the original price will be shown striked out with the new sale price highlighted</td>\n</tr>\n<tr>\n<td>seller_specifics.sale_from_date</td>\n<td>string  <br />format: \"YYYY-MM-DD\"</td>\n<td>No</td>\n<td>Optionally limit your sale price to only be used within this date range. If you have a \"Sale Price\" set, but no start date is specified here, your sale will start immediately. The timezone is always set to UTC, so your sale will start at 12:01AM UTC on the date specified here. Format the date as YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>seller_specifics.sale_to_date</td>\n<td>string  <br />format: \"YYYY-MM-DD\"</td>\n<td>No</td>\n<td>Optionally limit your sale price to only be used within this date range. If you have a \"Sale Price\" set, but no end date is specified here, your sale will continue forever until you either remove the \"Sale Price\" or you add a \"To Date\" here. The timezone is always set to UTC, so your sale will end at 12:59PM UTC on the date specified here. Format the date as YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>seller_specifics.quantity</td>\n<td>int  <br />min-value: 0</td>\n<td>Yes</td>\n<td>Your Inventory Amount</td>\n</tr>\n<tr>\n<td>seller_specifics.reorder_level</td>\n<td>int  <br />min-value: 0</td>\n<td>No</td>\n<td>If your quantity falls below this number, we will send you a notification</td>\n</tr>\n<tr>\n<td>seller_specifics.handling_time_no_of_days</td>\n<td>int  <br />min-value: 0</td>\n<td>Yes</td>\n<td>The number of days it takes for you to hand a product to a shipping carrier after receiving an order.</td>\n</tr>\n<tr>\n<td>seller_specifics.eligible_for_return</td>\n<td>bool : 0 or 1</td>\n<td>Yes</td>\n<td>Use 1 if the product is eligible for returns, and 0 if you do not accept returns</td>\n</tr>\n<tr>\n<td>seller_specifics.return_within_days</td>\n<td>int  <br />min-value 0</td>\n<td>Yes</td>\n<td>The number of days a customer has to return an item after they've received their purchase.</td>\n</tr>\n<tr>\n<td>seller_specifics.allow_free_return</td>\n<td>bool : 0 or 1</td>\n<td>Yes</td>\n<td>Use 1 if you are offering free returns to the buyer, where you will be paying for any return shipping.</td>\n</tr>\n<tr>\n<td>seller_specifics.warranty_type</td>\n<td>string  <br />accepted-values: Manufacturer' or 'Vendor' or 'NoWarranty'</td>\n<td>Yes</td>\n<td>Specify whether the warranty is from the \"Vendor\", \"Manufacturer\", or \"NoWarranty\"</td>\n</tr>\n<tr>\n<td>seller_specifics.warranty_description</td>\n<td>string  <br />max-length: 2000</td>\n<td>No</td>\n<td>Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.</td>\n</tr>\n<tr>\n<td>seller_specifics.tax_category</td>\n<td>string  <br />accepted-values: \"Taxable\" or \"Nontaxable\"</td>\n<td>Yes</td>\n<td>Almost all products are \"Taxable\"</td>\n</tr>\n<tr>\n<td>seller_specifics.shipping_weight</td>\n<td>float  <br />min-value: 0</td>\n<td>No</td>\n<td>Optionally add the product's shipping weight, including wrapping and packaging weight. If not set, the product's weight will be used when calculating shipping costs</td>\n</tr>\n<tr>\n<td>seller_specifics.shipping_policy_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Download your Shipping Policies by logging into your seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt;\" Download Catalog Template\" &gt; \"Shipping Policy Template\". Enter the \"shipping_policy_id\" here to select a shipping policy for this product</td>\n</tr>\n<tr>\n<td>product_images.image_1</td>\n<td>string</td>\n<td>Yes</td>\n<td>A URL linking directly to your product's main image. The image should be on a white background with little or no text, unless the text is a part of the product. The image must have a file extension of either: \"PNG\", \"JPG\", \"JPEG\", \"WEBP\", \"GIF\",\"SVG\",\"BMP\"</td>\n</tr>\n<tr>\n<td>product_images.image_2 - .image_10</td>\n<td>string</td>\n<td>No</td>\n<td>A URL linking directly to your product's additional image. The image should be on a white background with little or no text, unless the text is a part of the product. The image must have a file extension of either: \"PNG\", \"JPG\", \"JPEG\", \"WEBP\", \"GIF\",\"SVG\",\"BMP\"</td>\n</tr>\n<tr>\n<td>fitment.fitment_label</td>\n<td>string</td>\n<td>No / Conditional</td>\n<td>Only required if the fitment.fitment_values has a value.  <br />See our full documentation on Advanced Fitment here: <a href=\"https://autoparts4less.scrollhelp.site/documentation/importing-fitment#ImportingFitment-AdvancedFitment\">https://autoparts4less.scrollhelp.site/documentation/importing-fitment#ImportingFitment-AdvancedFitment</a></td>\n</tr>\n<tr>\n<td>item_specific</td>\n<td>string</td>\n<td>No</td>\n<td>There are thousands of additional attributes that you can also add to this request. Download the complete list of available attributes by logging into the seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt; \"Download Catalog Template\" &gt; \"Item Specifics\". Add any additional attribute found there as additional nodes here. The values found on the \"Item Specifics\" downloaded template are just recommendations of the current most common values. You can add any value you want for any of the \"Item Specific\" attributes, however if you follow the recommended values, your product will be more likely to show up on search results pages when customers filter using the left side navigation filters.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["create"],"host":["/products"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c714b66-4eb0-49f1-bfc5-0808ca6c63e1"},{"name":"Update Products","id":"5d2c707e-991b-4b0f-b7e8-26bc2ebd8cc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"description\": \"A detailed description of the product describing its value to customers.\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"features\": \"A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.\",\n\t\t\t\"important_notes\": \"Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.\",\n\t\t\t\"country_of_manufacture\": \"United States\",\n\t\t\t\"harmonized_tariff_code\": \"8708.10.30\",\n\t\t\t\"instruction_files\": [\"https://example.com/file.pdf\", \"https://example.com/file.png\"],\n\t\t\t\"video_urls\": [\"https://www.youtube.com/watch?v=video1\" , \"https://www.youtube.com/watch?v=video2\"],\n\t\t\t\"california_proposition65_warn\": 1,\n\t\t\t\"old_part_number\": \"OLD-ABC123\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"sale_price\": 149.99,\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\t\"quantity\": 10,\n\t\t\t\"reorder_level\": 3,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"return_within_days\": 30,\n\t\t\t\"allow_free_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_weight\": 10.5,\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\",\n\t\t\t\"image_2\": \"https://example.com/image2.jpeg\",\n\t\t\t\"image_3\": \"https://example.com/image3.png\",\n\t\t\t\"image_4\": \"https://example.com/image4.webp\",\n\t\t\t\"image_5\": \"https://example.com/image5.gif\",\n\t\t\t\"image_6\": \"https://example.com/image6.svg\",\n\t\t\t\"image_7\": \"https://example.com/image7.bmp\",\n\t\t\t\"image_8\": \"https://example.com/image8.jpg\",\n\t\t\t\"image_9\": \"https://example.com/image9.jpg\",\n\t\t\t\"image_10\": \"https://example.com/image10.jpg\"\n\t\t},\n\t\t\"item_specific\": {\n\t\t\t\"Attribute1\": \"Value 1\",\n            \"Attribute2\": \"Value 2\"\n\t\t}\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/your-products/update","description":"<p><strong>LIMITS</strong><br />Up to 30 products can be updated in each request. If you add more than 30 product in a single request, the request will be rejected.</p>\n<p><strong>GENERAL</strong><br />The only required field in this request is the seller_specifics.vendor_sku because this is used as the product identifier. Any other attribute that is included will be updated.</p>\n<p><strong>NOTES</strong><br />In a successful response to this request, you will receive a <code>queue_id</code>. You can use this <code>queue_id</code> in the \"Queue Status\" API request. The queue is fulfilled 99% of the time within 1 minute, but in a case of an unusually large amount of API requests, it could take slightly longer. You can check if your request has been processed by putting your returned <code>queue_id</code> in the \"Queue Status\" request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>JSON Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>general_info.category_id</td>\n<td>int</td>\n<td>Download the category mapping template by logging into the seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt; \"Download Catalog Template\" &gt; \"Category Mapping\". Find the category for your product, and enter that category's ID here.</td>\n</tr>\n<tr>\n<td>general_info.upc</td>\n<td>string  <br />limit 12-14 characters</td>\n<td>The product's numeric Universal Product</td>\n</tr>\n<tr>\n<td>general_info.product_brand</td>\n<td>string</td>\n<td>The product's brand or manufacturer</td>\n</tr>\n<tr>\n<td>general_info.part_number</td>\n<td>string  <br />max-length: 50</td>\n<td>The product's part number</td>\n</tr>\n<tr>\n<td>general_info.name</td>\n<td>string  <br />max-length: 250</td>\n<td>The product's name</td>\n</tr>\n<tr>\n<td>general_info.description</td>\n<td>string  <br />max-length: 5000</td>\n<td>A detailed description of the product describing its value to customers.</td>\n</tr>\n<tr>\n<td>general_info.product_weight</td>\n<td>float  <br />min-value: 0</td>\n<td>The product's weight, not including the shipping (packaging) weight in pounds LBS</td>\n</tr>\n<tr>\n<td>general_info.features</td>\n<td>string  <br />max-length: 5000</td>\n<td>A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.</td>\n</tr>\n<tr>\n<td>general_info.important_notes</td>\n<td>string  <br />max-length: 5000</td>\n<td>Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.</td>\n</tr>\n<tr>\n<td>general_info.country_of_manufacture</td>\n<td>string</td>\n<td>The country in which the product was manufactured.</td>\n</tr>\n<tr>\n<td>general_info.harmonized_tarriff_code</td>\n<td>string  <br />max-length: 50</td>\n<td>The code used to determine the tariff/duty rate of the product if it is being shipped to the US from another country. <a href=\"https://hts.usitc.gov/current\">https://hts.usitc.gov/current</a></td>\n</tr>\n<tr>\n<td>general_info.instructions_file</td>\n<td>array</td>\n<td>A direct URL to the product's installation instructions. Only allows file types: PDF, PNG, JPG, JPEG</td>\n</tr>\n<tr>\n<td>general_info.video_urls</td>\n<td>array</td>\n<td>URL to the product's youtube or vimeo video</td>\n</tr>\n<tr>\n<td>general_info.california_proposition_65_warn</td>\n<td>bool : 0 or 1</td>\n<td>Use 1 if the product does have a Prop65 warning</td>\n</tr>\n<tr>\n<td>general_info.old_part_number</td>\n<td>string  <br />max-length: 50</td>\n<td>If this is a superseded part for another discontinued part, you can add the old part number as a reference</td>\n</tr>\n<tr>\n<td>seller_specifics.vendor_sku</td>\n<td>string  <br />max-length: 50</td>\n<td>Your personal unique identifier for this product that you chose when first adding this product to your account.</td>\n</tr>\n<tr>\n<td>seller_specifics.condition</td>\n<td>string  <br />accepted-values: \"New\", \"Used-Mint\", \"Used-LikeNew\", \"Used-Good\", \"Used-Fair\", \"Used-Poor\"</td>\n<td>The condition of your product.</td>\n</tr>\n<tr>\n<td>seller_specifics.condition_note</td>\n<td>string  <br />max-length: 500</td>\n<td>Optionally add a note that can be shown to buyers to give additional detail about the product’s condition</td>\n</tr>\n<tr>\n<td>seller_specifics.price</td>\n<td>float  <br />min-value: 0</td>\n<td>The price you're selling the product for (do NOT include $ or any other currency symbols, all prices are in USD)</td>\n</tr>\n<tr>\n<td>seller_specifics.sale_price</td>\n<td>float  <br />min-value: 0</td>\n<td>Optionally add a sale price for your product. If your product is on sale, the original price will be shown striked out with the new sale price highlighted</td>\n</tr>\n<tr>\n<td>seller_specifics.sale_from_date</td>\n<td>string  <br />format: \"YYYY-MM-DD\"</td>\n<td>Optionally limit your sale price to only be used within this date range. If you have a \"Sale Price\" set, but no start date is specified here, your sale will start immediately. The timezone is always set to UTC, so your sale will start at 12:01AM UTC on the date specified here. Format the date as \"YYYY-MM-DD\"</td>\n</tr>\n<tr>\n<td>seller_specifics.sale_to_date</td>\n<td>string  <br />format: \"YYYY-MM-DD\"</td>\n<td>Optionally limit your sale price to only be used within this date range. If you have a \"Sale Price\" set, but no end date is specified here, your sale will continue forever until you either remove the \"Sale Price\" or you add a \"To Date\" here. The timezone is always set to UTC, so your sale will end at 12:59PM UTC on the date specified here. Format the date as \"YYYY-MM-DD\"</td>\n</tr>\n<tr>\n<td>seller_specifics.quantity</td>\n<td>int  <br />min-value: 0</td>\n<td>Your Inventory Amount</td>\n</tr>\n<tr>\n<td>seller_specifics.reorder_level</td>\n<td>int  <br />min-value: 0</td>\n<td>If your quantity falls below this number, we will send you a notification</td>\n</tr>\n<tr>\n<td>seller_specifics.handling_time_no_of_days</td>\n<td>int  <br />min-value: 0</td>\n<td>The number of days it takes for you to hand a product to a shipping carrier after receiving an order.</td>\n</tr>\n<tr>\n<td>seller_specifics.eligible_for_return</td>\n<td>bool : 0 or 1</td>\n<td>Use 1 if the product is eligible for returns, and 0 if you do not accept returns</td>\n</tr>\n<tr>\n<td>seller_specifics.return_within_days</td>\n<td>int  <br />min-value 0</td>\n<td>The number of days a customer has to return an item after they've received their purchase.</td>\n</tr>\n<tr>\n<td>seller_specifics.allow_free_return</td>\n<td>bool : 0 or 1</td>\n<td>Use 1 if you are offering free returns to the buyer, where you will be paying for any return shipping.</td>\n</tr>\n<tr>\n<td>seller_specifics.warranty_type</td>\n<td>string  <br />accepted-values: Manufacturer' or 'Vendor' or 'NoWarranty'</td>\n<td>Specify whether the warranty is from the \"Vendor\", \"Manufacturer\", or \"NoWarranty\"</td>\n</tr>\n<tr>\n<td>seller_specifics.warranty_description</td>\n<td>string  <br />max-length: 2000</td>\n<td>Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.</td>\n</tr>\n<tr>\n<td>seller_specifics.tax_category</td>\n<td>string  <br />accepted-values: \"Taxable\" or \"Nontaxable\"</td>\n<td>Almost all products are \"Taxable\"</td>\n</tr>\n<tr>\n<td>seller_specifics.shipping_weight</td>\n<td>float  <br />min-value: 0</td>\n<td>Optionally add the product's shipping weight, including wrapping and packaging weight. If not set, the product's weight will be used when calculating shipping costs</td>\n</tr>\n<tr>\n<td>seller_specifics.shipping_policy_id</td>\n<td>string</td>\n<td>Download your Shipping Policies by logging into your seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt;\" Download Catalog Template\" &gt; \"Shipping Policy Template\". Enter the \"shipping_policy_id\" here to select a shipping policy for this product</td>\n</tr>\n<tr>\n<td>product_images.image_1</td>\n<td>string</td>\n<td>A URL linking directly to your product's main image. The image should be on a white background with little or no text, unless the text is a part of the product. The image must have a file extension of either: \"PNG\", \"JPG\", \"JPEG\", \"WEBP\", \"GIF\",\"SVG\",\"BMP\"</td>\n</tr>\n<tr>\n<td>product_images.image_2 - .image_10</td>\n<td>string</td>\n<td>A URL linking directly to your product's additional image. The image should be on a white background with little or no text, unless the text is a part of the product. The image must have a file extension of either: \"PNG\", \"JPG\", \"JPEG\", \"WEBP\", \"GIF\",\"SVG\",\"BMP\"</td>\n</tr>\n<tr>\n<td>item_specific</td>\n<td>string</td>\n<td>There are thousands of additional attributes that you can also add to this request. Download the complete list of available attributes by logging into the seller panel and using the sidebar navigation. Click on \"Products\" &gt; \"Bulk Import\" &gt; \"Download Catalog Template\" &gt; \"Item Specifics\". Add any additional attribute found there as additional nodes here. The values found on the \"Item Specifics\" downloaded template are just recommendations of the current most common values. You can add any value you want for any of the \"Item Specific\" attributes, however if you follow the recommended values, your product will be more likely to show up on search results pages when customers filter using the left side navigation filters.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["update"],"host":["/your-products"],"query":[],"variable":[]}},"response":[{"id":"c0eba822-df8c-43e4-b81b-1960404a0c55","name":"Update Products","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"quantity\": 10\n\t\t}\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"//your-products/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 29 May 2022 17:38:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"167"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"status\": \"success\",\n        \"message\": \"The request has been added to queue successfully.\",\n        \"errors\": {},\n        \"vendor_sku\": \"SKU-1\",\n        \"queue_id\": \"10000000-0000-0000-0000-000000000001\"\n    }\n]"}],"_postman_id":"5d2c707e-991b-4b0f-b7e8-26bc2ebd8cc1"},{"name":"Unified Bulk Product Changes","id":"cdc2b88f-617f-4d1e-965d-ac79ca7de07d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"description\": \"A detailed description of the product describing its value to customers.\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"features\": \"A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.\",\n\t\t\t\"important_notes\": \"Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.\",\n\t\t\t\"country_of_manufacture\": \"United States\",\n\t\t\t\"harmonized_tariff_code\": \"8708.10.30\",\n\t\t\t\"instruction_files\": [\"https://example.com/file.pdf\", \"https://example.com/file.png\"],\n\t\t\t\"video_urls\": [\"https://www.youtube.com/watch?v=video1\" , \"https://www.youtube.com/watch?v=video2\"],\n\t\t\t\"california_proposition65_warn\": 1,\n\t\t\t\"old_part_number\": \"OLD-ABC123\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"sale_price\": 149.99,\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\t\"quantity\": 10,\n\t\t\t\"reorder_level\": 3,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"return_within_days\": 30,\n\t\t\t\"allow_free_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_weight\": 10.5,\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\",\n\t\t\t\"image_2\": \"https://example.com/image2.jpeg\",\n\t\t\t\"image_3\": \"https://example.com/image3.png\",\n\t\t\t\"image_4\": \"https://example.com/image4.webp\",\n\t\t\t\"image_5\": \"https://example.com/image5.gif\",\n\t\t\t\"image_6\": \"https://example.com/image6.svg\",\n\t\t\t\"image_7\": \"https://example.com/image7.bmp\",\n\t\t\t\"image_8\": \"https://example.com/image8.jpg\",\n\t\t\t\"image_9\": \"https://example.com/image9.jpg\",\n\t\t\t\"image_10\": \"https://example.com/image10.jpg\"\n\t\t},\n\t\t\"item_specific\": {\n\t\t\t\"Attribute1\": \"Value 1\",\n\t\t\t\"Attribute2\": \"Value 2\"\n\t\t},\n\t\t\"fitment\": {\n\t\t\t\"fitment_label\": \"Label for Advanced Fitment\",\n\t\t\t\"fitment_values\": \"Comma Separated Advanced Fitment Values, Second Value, Third Value\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"california_proposition65_warn\": 1\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-3\",\n\t\t\t\"condition\": \"New\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"quantity\": 10,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": 0,\n\t\t\t\"warranty_type\": \"Manufacturer\",\n\t\t\t\"tax_category\": \"Taxable\",\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"upc\": \"100000000000\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"sale_price\": 149.99,\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\t\"quantity\": 10,\n\t\t\t\"reorder_level\": 3,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"return_within_days\": 30,\n\t\t\t\"allow_free_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_weight\": 10.5,\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"upc\": \"100000000000\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"quantity\": 10,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t}\n\t},\n\t{\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"quantity\": 10\n\t\t}\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/products/add-update","description":"<p><strong>LIMITS</strong></p>\n<p>This endpoint has a limit of <b>10,000</b> products per request, unlike the other requests with a limit of 30</p>\n<p><strong>GENERAL</strong></p>\n<p>This \"Unified Bulk\" endpoint combines the functionality of the previous 3: \"Sell an Existing\", \"Create New\" and \"Update\".</p>\n<p>Rather than the complications of first needing to determine the current status of a product, with this endpoint, you can just send the product data, and we will make the appropriate action.</p>\n<p>The validation for this endpoint is the same as the previous 3 endpoints. The validation automatically changes based on the current status of the product:</p>\n<ul>\n<li>If the product does not exist, then the full product data is required (see requirements from \"<a href=\"https://api-docs.autoparts4less.com/#4c714b66-4eb0-49f1-bfc5-0808ca6c63e1\">Add New Product</a>\").</li>\n<li>If the product exists with another seller, then only your seller_specifics are required and the UPC as the unique identifier (see requirements from \"<a href=\"https://api-docs.autoparts4less.com/#82ff922d-3069-43e7-90f7-5125a615f142\">Sell An Existing Product</a>\")</li>\n<li>If you are already selling the product, then you only need to provide the vendor_sku and the attributes that you want to update</li>\n</ul>\n<p><strong>RESPONSE</strong></p>\n<p>The JSON response to this request will include a <code>queue_id</code> which can be used to check the status of this request in the \"Unified Bulk Product Queue\" request</p>\n","urlObject":{"path":["add-update"],"host":["/products"],"query":[],"variable":[]}},"response":[{"id":"5482b528-ac35-4a77-8b99-702ae58e100d","name":"Unified Bulk Product Changes","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"description\": \"A detailed description of the product describing its value to customers.\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"features\": \"A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.\",\n\t\t\t\"important_notes\": \"Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.\",\n\t\t\t\"country_of_manufacture\": \"United States\",\n\t\t\t\"harmonized_tariff_code\": \"8708.10.30\",\n\t\t\t\"instruction_files\": [\"https://example.com/file.pdf\", \"https://example.com/file.png\"],\n\t\t\t\"video_urls\": [\"https://www.youtube.com/watch?v=video1\" , \"https://www.youtube.com/watch?v=video2\"],\n\t\t\t\"california_proposition65_warn\": 1,\n\t\t\t\"old_part_number\": \"OLD-ABC123\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"sale_price\": 149.99,\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\t\"quantity\": 10,\n\t\t\t\"reorder_level\": 3,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"return_within_days\": 30,\n\t\t\t\"allow_free_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_weight\": 10.5,\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\",\n\t\t\t\"image_2\": \"https://example.com/image2.jpeg\",\n\t\t\t\"image_3\": \"https://example.com/image3.png\",\n\t\t\t\"image_4\": \"https://example.com/image4.webp\",\n\t\t\t\"image_5\": \"https://example.com/image5.gif\",\n\t\t\t\"image_6\": \"https://example.com/image6.svg\",\n\t\t\t\"image_7\": \"https://example.com/image7.bmp\",\n\t\t\t\"image_8\": \"https://example.com/image8.jpg\",\n\t\t\t\"image_9\": \"https://example.com/image9.jpg\",\n\t\t\t\"image_10\": \"https://example.com/image10.jpg\"\n\t\t},\n\t\t\"item_specific\": {\n\t\t\t\"Attribute1\": \"Value 1\",\n\t\t\t\"Attribute2\": \"Value 2\"\n\t\t},\n\t\t\"fitment\": {\n\t\t\t\"fitment_label\": \"Label for Advanced Fitment\",\n\t\t\t\"fitment_values\": \"Comma Separated Advanced Fitment Values, Second Value, Third Value\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"category_id\": \"1234\",\n\t\t\t\"upc\": \"100000000000\",\n\t\t\t\"product_brand\": \"The Product Brand\",\n\t\t\t\"part_number\": \"ABC123\",\n\t\t\t\"name\": \"Product Name\",\n\t\t\t\"product_weight\": 5.5,\n\t\t\t\"california_proposition65_warn\": 1\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-3\",\n\t\t\t\"condition\": \"New\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"quantity\": 10,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": 0,\n\t\t\t\"warranty_type\": \"Manufacturer\",\n\t\t\t\"tax_category\": \"Taxable\",\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t},\n\t\t\"product_images\": {\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"upc\": \"100000000000\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"sale_price\": 149.99,\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\n\t\t\t\"quantity\": 10,\n\t\t\t\"reorder_level\": 3,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"return_within_days\": 30,\n\t\t\t\"allow_free_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_weight\": 10.5,\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t}\n\t},\n\t{\n\t\t\"general_info\": {\n\t\t\t\"upc\": \"100000000000\"\n\t\t},\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\n\t\t\t\"price\": 199.99,\n\t\t\t\"quantity\": 10,\n\t\t\t\"handling_time_no_of_days\": 0,\n\t\t\t\"eligible_for_return\": [0|1],\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\n\t\t\t\"shipping_policy_id\": \"ABC123\"\n\t\t}\n\t},\n\t{\n\t\t\"seller_specifics\": {\n\t\t\t\"vendor_sku\": \"SKU-1\",\n\t\t\t\"quantity\": 10\n\t\t}\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"//products/add-update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 Feb 2023 22:39:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"'100000000000000000000001' The request has been added to queue successfully.\",\n    \"errors\": {},\n    \"queue_id\": \"100000000000000000000001\"\n}"}],"_postman_id":"cdc2b88f-617f-4d1e-965d-ac79ca7de07d"},{"name":"Unified Bulk Product Queue","id":"1170b2e4-8a84-40ad-a563-a982b5bd14ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/products/pending-response?queue_id=1000000000000000000000001","description":"<p><strong>LIMITS</strong></p>\n<p>Only use one <code>queue_id</code> in a request</p>\n<p><strong>GENERAL</strong></p>\n<p>This endpoint is specifically used for the \"Unified Bulk Product Changes\" request. You can put your returned <code>queue_id</code> as the GET parameter here to see the status of your product changes.</p>\n","urlObject":{"path":["pending-response"],"host":["/products"],"query":[{"key":"queue_id","value":"1000000000000000000000001"}],"variable":[]}},"response":[],"_postman_id":"1170b2e4-8a84-40ad-a563-a982b5bd14ec"},{"name":"Get Your Products","id":"834c5c5d-05d8-40c2-964f-0a7a72090f34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/your-products?page_no=1&page_size=10000","description":"<p><strong>LIMITS</strong><br />If the optional parameter <code>page_size</code> is not set, then the page size will default to <code>30</code> . You can set the <code>page_size</code> to a maximum of <code>10000</code> . The <code>page_no</code> is also optional, and defaults to <code>1</code> if not set.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Query Parameter</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Default</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_size</td>\n<td>No</td>\n<td>30</td>\n<td>Max 10000. Specify how many products to return.</td>\n</tr>\n<tr>\n<td>page_no</td>\n<td>No</td>\n<td>1</td>\n<td>Specify the page number</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>GENERAL</strong><br />Use this API request to get a paginated list of your products.<br />Alternately if you have a large catalog, you could also download a full export by logging into the seller panel at <a href=\"seller.autoparts4less.com\">seller.autoparts4less.com</a> and clicking on \"Products\" -&gt; \"My Listing\" -&gt; \"Export\".</p>\n","urlObject":{"host":["/your-products"],"query":[{"key":"page_no","value":"1"},{"key":"page_size","value":"10000"}],"variable":[]}},"response":[],"_postman_id":"834c5c5d-05d8-40c2-964f-0a7a72090f34"},{"name":"View Full Product Details","id":"36644d49-63eb-4d4b-9a37-7ee32600ea2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/your-products/full-details?vendor_sku=SKU-1,SKU-2,SKU-3","description":"<p><strong>LIMITS</strong><br />Up to 30 products can be requested and returned in each request.</p>\n<p><strong>GENERAL</strong><br />This request returns all of the product details. Unlike the \"View Your Products\" API request which only returns some summary information, this request returns all product attributes</p>\n","urlObject":{"path":["full-details"],"host":["/your-products"],"query":[{"key":"vendor_sku","value":"SKU-1,SKU-2,SKU-3"}],"variable":[]}},"response":[],"_postman_id":"36644d49-63eb-4d4b-9a37-7ee32600ea2c"},{"name":"List Vehicle Fitment","id":"f06c4c95-1f50-40ca-9165-b8033f791ed5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/vehicle-fitments?vendor_skus=SKU-1,SKU-2,SKU-3","description":"<p><strong>LIMITS</strong><br />Up to 30 comma separated products can be returned in each request. If you add more than 30 comma separated products in a single request, the request will be rejected.</p>\n<p><strong>GENERAL</strong><br />This API will return list of vehicle fitment associated with the specified vendor_sku.</p>\n<p>You can download a list of vehicle_ids by logging into the seller panel at <a href=\"seller.autoparts4less.com\">seller.autoparts4less.com</a> and clicking on \"Products\" -&gt; \"Bulk Import\" -&gt; \"Master Vehicle List\".</p>\n","urlObject":{"host":["/vehicle-fitments"],"query":[{"key":"vendor_skus","value":"SKU-1,SKU-2,SKU-3"}],"variable":[]}},"response":[{"id":"b4929bf8-529b-4488-bf36-04b08936f50a","name":"List Vehicle Fitment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":{"raw":"//vehicle-fitments?vendor_skus=SKU-1,SKU-2,SKU-3","host":["/"],"path":["vehicle-fitments"],"query":[{"key":"vendor_skus","value":"SKU-1,SKU-2,SKU-3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 29 May 2022 17:00:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"433"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"status\": \"error\",\n        \"message\": \"Please correct the following detail errors.\",\n        \"errors\": {\n            \"vendor_sku\": \"'vendor_sku' having no fitments to show.\"\n        },\n        \"vendor_sku\": \"SKU-1\"\n    },\n    {\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"vendor_sku\": \"SKU-2\",\n        \"vehicle_ids\": [1100001,1100002,1100003,1100004]\n    },\n    {\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"vendor_sku\": \"SKU-3\",\n        \"vehicle_ids\": [1100001]\n    }\n]"}],"_postman_id":"f06c4c95-1f50-40ca-9165-b8033f791ed5"},{"name":"Add Vehicle Fitment","id":"68a4afd7-5be4-49b4-bf4f-2663284159d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"vendor_sku\": \"SKU-1\",\n        \"vehicle_ids\": [\"1100001\",\"1100002\",\"1100003\",\"1100004\"]\n\t},\n\t{\n\t\t\"vendor_sku\": \"SKU-2\",\n        \"vehicle_ids\": [\"1100001\"]\n\t},\n\t{\n\t\t\"vendor_sku\": \"SKU-3\",\n        \"vehicle_ids\": [\"1100001\"]\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/vehicle-fitments/create","description":"<p><strong>LIMITS</strong><br />Up to 30 products can be updated in each request. If you add more than 30 products in a single request, the request will be rejected. For each product, you can update (add) unlimited fitments in a single request.</p>\n<p><strong>GENERAL</strong><br />This API will add vehicle fitment associations to the specified vendor_sku</p>\n<p>You can download a list of vehicle_ids by logging into the seller panel at <a href=\"seller.autoparts4less.com\">seller.autoparts4less.com</a> and clicking on \"Products\" -&gt; \"Bulk Import\" -&gt; \"Master Vehicle List\".</p>\n","urlObject":{"path":["create"],"host":["/vehicle-fitments"],"query":[],"variable":[]}},"response":[],"_postman_id":"68a4afd7-5be4-49b4-bf4f-2663284159d9"},{"name":"Delete Vehicle Fitment","id":"b73ca27e-d045-4250-b30d-2c0626de6cb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"vendor_sku\": \"SKU-1\",\n        \"vehicle_ids\": [\"1100001\",\"1100002\",\"1100003\",\"1100004\"]\n\t},\n\t{\n\t\t\"vendor_sku\": \"SKU-2\",\n        \"vehicle_ids\": [\"1100001\"]\n\t},\n\t{\n\t\t\"vendor_sku\": \"SKU-3\",\n        \"vehicle_ids\": [\"1100001\"]\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/vehicle-fitments/delete","description":"<p><strong>LIMITS</strong><br />Up to 30 products can be updated in each request. If you add more than 30 products in a single request, the request will be rejected. For each product, you can update (delete) unlimited fitments in a single request.</p>\n<p><strong>GENERAL</strong><br />This API will delete vehicle fitment associations to the specified vendor_sku</p>\n<p>You can download a list of vehicle_ids by logging into the seller panel at <a href=\"https://desktop.postman.com/?desktopVersion=9.19.0&amp;webVersion=9.19.3-ui-220518-1430&amp;userId=8286419&amp;teamId=2616453\">seller.autoparts4less.com</a> and clicking on \"Products\" -&gt; \"Bulk Import\" -&gt; \"Master Vehicle List\".</p>\n","urlObject":{"path":["delete"],"host":["/vehicle-fitments"],"query":[],"variable":[]}},"response":[],"_postman_id":"b73ca27e-d045-4250-b30d-2c0626de6cb4"},{"name":"Get Orders List","id":"815d4328-bdf1-42ee-9fb6-8b1eb0c2f6b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/orders?status=[new|processed|shipped|delivered|cancelled|refunded|partial_refunded|partial_cancelled|replaced|partial_delivered]&page_no=1&from_date=YYYY-MM-DD&to_date=YYYY-MM-DD","description":"<p><strong>LIMITS</strong><br />Results will be returned in a paginated list of 30 orders per page.</p>\n<p><strong>GENERAL</strong><br />Use this API to get a list of your orders with a summary of the order details</p>\n<p><strong>NOTES</strong><br />The returned data will include a <code>seller_order_id</code> and also an <code>order_id</code>. The <code>seller_order_id</code> is specific to an individual product, and should be used in other \"Order\" requests as the identifier. The <code>order_id</code> might show up more than once, in a case where a single buyer placed a single order with more than 1 product that you're selling. The <code>order_id</code> also might be shared with other sellers, in a case where the buyer purchased 1 product from you, and another product from another seller, and checked-out in a single order. The <code>order_id</code> could be helpful if you see that 2 products share the same <code>order_id</code> and you ship your products from a single warehouse, because you could potentially box both products together and ship them in a single box.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>JSON Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>No</td>\n<td>Filter your results by selecting a 'status' from one of: 'new', 'processed', 'shipped', 'delivered', 'cancelled', 'refunded', 'partial_refunded', 'partial_cancelled', 'replaced', 'partial_delivered'</td>\n</tr>\n<tr>\n<td>page_no</td>\n<td>int</td>\n<td>No</td>\n<td>If you have more than 30 results, add the 'page_no' to see additional results. Defaults to page 1 if not specified</td>\n</tr>\n<tr>\n<td>from_date</td>\n<td>string</td>\n<td>No</td>\n<td>Filter your results by date range, in the format of \"YYYY-MM-DD\"</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>string</td>\n<td>No</td>\n<td>Filter your results by date range, in the format of \"YYYY-MM-DD\"</td>\n</tr>\n<tr>\n<td>order_type</td>\n<td>string</td>\n<td>No</td>\n<td>Filter your results by selecting from either: 'delivery' or 'pickup'</td>\n</tr>\n<tr>\n<td>unique_identifier</td>\n<td>string</td>\n<td>No</td>\n<td>Filter your Pickup orders by specifying a pickup location. You chose your own 'unique_identifier' when you created the pickup location.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["/orders"],"query":[{"key":"status","value":"[new|processed|shipped|delivered|cancelled|refunded|partial_refunded|partial_cancelled|replaced|partial_delivered]"},{"key":"page_no","value":"1"},{"key":"from_date","value":"YYYY-MM-DD"},{"key":"to_date","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"4617159b-3e80-4e85-b868-a9c22edd8d6b","name":"Get Orders List","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":{"raw":"//orders?status=new&page_no=1&from_date=2020-01-01&to_date=2030-12-31","host":["/"],"path":["orders"],"query":[{"key":"status","value":"new"},{"key":"page_no","value":"1"},{"key":"from_date","value":"2020-01-01"},{"key":"to_date","value":"2030-12-31"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Sucuri/Cloudproxy"},{"key":"Date","value":"Tue, 21 Jun 2022 18:26:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1066"},{"key":"Connection","value":"keep-alive"},{"key":"X-Sucuri-ID","value":"11034"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests;"},{"key":"X-Sucuri-Cache","value":"BYPASS"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"\",\n    \"errors\": {},\n    \"paging\": {\n        \"page_no\": 1,\n        \"total_records\": 3\n    },\n    \"orders\": [\n        {\n            \"order_id\": \"10000000000000000001\",\n            \"seller_order_id\": \"10000000000000000001-11111111\",\n            \"purchase_date\": \"2022-01-02T01:01:01.01\",\n            \"ship_to_name\": \"Jon Doe\",\n            \"grand_total\": 10101.01,\n            \"status\": \"new\",\n            \"order_type\": \"delivery\",\n            \"unique_identifier\": null\n        },\n        {\n            \"order_id\": \"10000000000000000002\",\n            \"seller_order_id\": \"10000000000000000002-22222222\",\n            \"purchase_date\": \"2022-02-02T02:02:02.02\",\n            \"ship_to_name\": \"Jane Doe\",\n            \"grand_total\": 22.22,\n            \"status\": \"new\",\n            \"order_type\": \"delivery\",\n            \"unique_identifier\": null\n        },\n        {\n            \"order_id\": \"10000000000000000002\",\n            \"seller_order_id\": \"10000000000000000002-33333333\",\n            \"purchase_date\": \"2022-02-02T02:02:02.02\",\n            \"ship_to_name\": \"Jane Doe\",\n            \"grand_total\": 333.33,\n            \"status\": \"new\",\n            \"order_type\": \"delivery\",\n            \"unique_identifier\": null\n        },\n        {\n            \"order_id\": \"10000000000000000003\",\n            \"seller_order_id\": \"10000000000000000003-aaaaaaaa\",\n            \"purchase_date\": \"2022-03-03T03:03:03.03\",\n            \"ship_to_name\": \"Full Name\",\n            \"grand_total\": 1234.56,\n            \"status\": \"refunded\",\n            \"order_type\": \"delivery\",\n            \"unique_identifier\": null\n        },\n        {\n            \"order_id\": \"10000000000000000004\",\n            \"seller_order_id\": \"10000000000000000004-bbbbbbbb\",\n            \"purchase_date\": \"2022-04-04T04:04:04.04\",\n            \"ship_to_name\": \"brad b\",\n            \"grand_total\": 44.44,\n            \"status\": \"shipped\",\n            \"order_type\": \"delivery\",\n            \"unique_identifier\": null\n        },\n        {\n            \"order_id\": \"10000000000000000005\",\n            \"seller_order_id\": \"10000000000000000005-cccccccc\",\n            \"purchase_date\": \"2022-05-05T05:05:05.05\",\n            \"ship_to_name\": \"Ronald Silvers\",\n            \"grand_total\": 555.55,\n            \"status\": \"canceled\",\n            \"order_type\": \"delivery\",\n            \"unique_identifier\": null\n        },\n        {\n            \"order_id\": \"10000000000000000006\",\n            \"seller_order_id\": \"10000000000000000006-dddddddd\",\n            \"purchase_date\": \"2022-06-06T06:06:06.06\",\n            \"ship_to_name\": \"Pickup store-1\",\n            \"grand_total\": 66.66,\n            \"status\": \"delivered\",\n            \"order_type\": \"pickup\",\n            \"unique_identifier\": \"store-1\"\n        },\n        {\n            \"order_id\": \"10000000000000000007\",\n            \"seller_order_id\": \"10000000000000000007-eeeeeeee\",\n            \"purchase_date\": \"2022-07-07T07:07:07.07\",\n            \"ship_to_name\": \"Pickup store-1\",\n            \"grand_total\": 777.77,\n            \"status\": \"new\",\n            \"order_type\": \"pickup\",\n            \"unique_identifier\": \"store-1\"\n        },\n        {\n            \"order_id\": \"10000000000000000008\",\n            \"seller_order_id\": \"10000000000000000008-ffffffff\",\n            \"purchase_date\": \"2022-08-08T08:08:08.08\",\n            \"ship_to_name\": \"Pickup store-2\",\n            \"grand_total\": 888.88,\n            \"status\": \"processed\",\n            \"order_type\": \"pickup\",\n            \"unique_identifier\": \"store-2\"\n        },\n        {\n            \"order_id\": \"10000000000000000009\",\n            \"seller_order_id\": \"10000000000000000009-gggggggg\",\n            \"purchase_date\": \"2022-08-08T08:08:08.08\",\n            \"ship_to_name\": \"Pickup store-2\",\n            \"grand_total\": 99.99,\n            \"status\": \"delivered\",\n            \"order_type\": \"pickup\",\n            \"unique_identifier\": \"store-2\"\n        }\n    ]\n}"}],"_postman_id":"815d4328-bdf1-42ee-9fb6-8b1eb0c2f6b7"},{"name":"Get Order Details","id":"5d1cf412-1c86-419e-be5c-e114d7bdfb7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/orders/full-details?seller_order_ids=10000000000000000000-10000000,10000000000000000001-100000001","description":"<p><strong>LIMITS</strong><br />Up to 30 orders can be requested and returned in each request.</p>\n<p><strong>GENERAL</strong><br />This request returns all of the product details. Unlike the \"Get Orders List\" API request which only returns some summary information, this request returns all product attributes</p>\n","urlObject":{"path":["full-details"],"host":["/orders"],"query":[{"key":"seller_order_ids","value":"10000000000000000000-10000000,10000000000000000001-100000001"}],"variable":[]}},"response":[{"id":"13b02ef9-46bd-484b-a80f-2ea8a9092721","name":"Get Order Details","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":{"raw":"//orders/full-details?seller_order_ids=aaa,10000000000000000001-11111111,10000000000000000002-22222222,10000000000000000002-33333333","host":["/"],"path":["orders","full-details"],"query":[{"key":"seller_order_ids","value":"aaa,10000000000000000001-11111111,10000000000000000002-22222222,10000000000000000002-33333333"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Sucuri/Cloudproxy"},{"key":"Date","value":"Thu, 30 Jun 2022 02:10:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2895"},{"key":"Connection","value":"keep-alive"},{"key":"X-Sucuri-ID","value":"11034"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests;"},{"key":"X-Sucuri-Cache","value":"BYPASS"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"seller_order_id\": \"aaa\",\n        \"status\": \"error\",\n        \"message\": \"Please correct the following detail errors.\",\n        \"errors\": {\n            \"seller_order_id\": \"'seller_order_id' does not exist in your order list.\"\n        },\n        \"order_details\": null\n    },\n    {\n        \"seller_order_id\": \"10000000000000000001-11111111\",\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"order_details\": {\n            \"order_id\": \"10000000000000000001\",\n            \"seller_order_id\": \"10000000000000000001-11111111\",\n            \"purchase_date\": \"2022-01-31T01:01:01.01\",\n            \"customer_name\": \"Jon Doe\",\n            \"customer_email\": \"jondoe@email.com\",\n            \"shipping_method\": \"USPS Retail Ground\",\n            \"shipping_address\": {\n                \"first_name\": \"Jon\",\n                \"last_name\": \"Doe\",\n                \"address_line1\": \"123 Main St.\",\n                \"address_line2\": \"abc\",\n                \"city\": \"Las Vegas\",\n                \"region\": \"Nevada\",\n                \"country\": \"United States\",\n                \"zip\": \"89145\"\n            },\n            \"shipment_details\": null,\n            \"order_comments\": null,\n            \"grand_total\": 10101.01,\n            \"status\": \"new\",\n            \"is_store_pickup\": false,\n            \"ordered_items\": [\n                {\n                    \"vendor_sku\": \"SKU-1\",\n                    \"name\": \"Product Name\",\n                    \"quantity\": 1,\n                    \"price\": 10000.00,\n                    \"shipping_and_handling_charges\": 1.01,\n                    \"tax_amount\": 100.00,\n                    \"row_total\": 10101.01\n                }\n            ]\n        }\n    },\n    {\n        \"seller_order_id\": \"10000000000000000002-22222222\",\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"is_store_pickup\": false,\n        \"order_details\": {\n            \"order_id\": \"10000000000000000002\",\n            \"seller_order_id\": \"10000000000000000002-22222222\",\n            \"purchase_date\": \"2022-02-28T02:02:02.02\",\n            \"customer_name\": \"Jane Doe\",\n            \"customer_email\": \"janedoe@email.com\",\n            \"shipping_method\": \"USPS Retail Ground\",\n            \"shipping_address\": {\n                \"first_name\": \"Jane\",\n                \"last_name\": \"Doe\",\n                \"address_line1\": \"987 Second Ave.\",\n                \"address_line2\": \"\",\n                \"city\": \"Las Vegas\",\n                \"region\": \"Nevada\",\n                \"country\": \"United States\",\n                \"zip\": \"89145\"\n            },\n            \"shipment_details\": null,\n            \"order_comments\": null,\n            \"grand_total\": 22.22,\n            \"status\": \"new\",\n            \"ordered_items\": [\n                {\n                    \"vendor_sku\": \"SKU-2\",\n                    \"name\": \"Sku 2 Product name\",\n                    \"quantity\": 1,\n                    \"price\": 20.00,\n                    \"shipping_and_handling_charges\": 2.00,\n                    \"tax_amount\": 0.22,\n                    \"row_total\": 22.22\n                }\n            ]\n        }\n    },\n    {\n        \"seller_order_id\": \"10000000000000000002-33333333\",\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"is_store_pickup\": false,\n        \"order_details\": {\n            \"order_id\": \"10000000000000000002\",\n            \"seller_order_id\": \"10000000000000000002-33333333\",\n            \"purchase_date\": \"2022-02-28T02:02:02.02\",\n            \"customer_name\": \"Jane Doe\",\n            \"customer_email\": \"janedoe@email.com\",\n            \"shipping_method\": \"USPS Retail Ground\",\n            \"shipping_address\": {\n                \"first_name\": \"Jane\",\n                \"last_name\": \"Doe\",\n                \"address_line1\": \"987 Second Ave.\",\n                \"address_line2\": \"\",\n                \"city\": \"Las Vegas\",\n                \"region\": \"Nevada\",\n                \"country\": \"United States\",\n                \"zip\": \"89145\"\n            },\n            \"shipment_details\": null,\n            \"order_comments\": null,\n            \"grand_total\": 333.33,\n            \"status\": \"new\",\n            \"ordered_items\": [\n                {\n                    \"vendor_sku\": \"SKU-3\",\n                    \"name\": \"Sku 3 Product Name\",\n                    \"quantity\": 3,\n                    \"price\": 100.00,\n                    \"shipping_and_handling_charges\": 30.33,\n                    \"tax_amount\": 3.00,\n                    \"row_total\": 333.33\n                }\n            ]\n        }\n    },\n    {\n        \"seller_order_id\": \"10000000000000000007-eeeeeeee\",\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"order_details\": {\n            \"order_id\": \"10000000000000000007\",\n            \"seller_order_id\": \"10000000000000000007-eeeeeeee\",\n            \"purchase_date\": \"2022-07-07T07:07:07.07\",\n            \"customer_name\": \"Full Name\",\n            \"customer_email\": \"my@email.com\",\n            \"shipping_method\": \"Local Pick Up\",\n            \"pickup_locations\": {\n                \"unique_identifier\": \"store-1\",\n                \"address\": \"123 Main St.\",\n                \"city\": \"Las Vegas\",\n                \"suite_unit\": \"1111\",\n                \"country\": \"United States\",\n                \"state\": \"Nevada\",\n                \"zip_code\": \"89030\"\n            },\n            \"buyer_information\": {\n                \"first_name\": \"Full\",\n                \"last_name\": \"Name\",\n                \"phone\": \"1234567890\"\n            },\n            \"shipment_details\": null,\n            \"order_comments\": null,\n            \"grand_total\": 777.77,\n            \"status\": \"new\",\n            \"is_store_pickup\": true,\n            \"ordered_items\": [\n                {\n                    \"vendor_sku\": \"SKU-4\",\n                    \"name\": \"SKU-4 Product Name\",\n                    \"quantity\": 1,\n                    \"price\": 700.00,\n                    \"shipping_and_handling_charges\": 70.00,\n                    \"tax_amount\": 7.77,\n                    \"row_total\": 777.77\n                }\n            ]\n        }\n    },\n    {\n        \"seller_order_id\": \"10000000000000000008-ffffffff\",\n        \"status\": \"success\",\n        \"message\": \"\",\n        \"errors\": {},\n        \"order_details\": {\n            \"order_id\": \"10000000000000000008\",\n            \"seller_order_id\": \"10000000000000000008-ffffffff\",\n            \"purchase_date\": \"2022-08-08T08:08:08.08\",\n            \"customer_name\": \"Customer Name\",\n            \"customer_email\": \"customer@email.com\",\n            \"shipping_method\": \"Local Pick Up\",\n            \"pickup_locations\": {\n                \"unique_identifier\": \"store-2\",\n                \"address\": \"999 2nd Ave.\",\n                \"city\": \"Las Vegas\",\n                \"suite_unit\": \"\",\n                \"country\": \"United States\",\n                \"state\": \"Nevada\",\n                \"zip_code\": \"89030\"\n            },\n            \"buyer_information\": {\n                \"first_name\": \"Customer\",\n                \"last_name\": \"Name\",\n                \"phone\": \"1234567890\"\n            },\n            \"shipment_details\": null,\n            \"order_comments\": null,\n            \"grand_total\": 0.0900,\n            \"status\": \"processed\",\n            \"is_store_pickup\": true,\n            \"ordered_items\": [\n                {\n                    \"vendor_sku\": \"SKU-5\",\n                    \"name\": \"SKU-5 Product Name\",\n                    \"quantity\": 1,\n                    \"price\": 800.00,\n                    \"shipping_and_handling_charges\": 0.0000,\n                    \"tax_amount\": 88.88,\n                    \"row_total\": 888.88\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"5d1cf412-1c86-419e-be5c-e114d7bdfb7c"},{"name":"Add Order Tracking","id":"aabbae06-933d-4bdc-a889-7bc0e3148b43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"seller_order_id\": \"10000000000000000000-10000000\",\n\t\t\"track_number\": \"10000\",\n\t\t\"carrier_code\": \"[FedEx|UPS|USPS|Other]\",\n\t\t\"shipping_service\": \"Expedited\",\n\t\t\"comment\": \"non occaecat magna\"\n\t},\n\t{\n\t\t\"seller_order_id\": \"10000000000000000000-10000000\",\n\t\t\"track_number\": \"10001\",\n\t\t\"carrier_code\": \"[FedEx|UPS|USPS|Other]\",\n\t\t\"shipping_service\": \"Standard\",\n\t\t\"comment\": \"culpa\"\n\t},\n\t{\n\t\t\"seller_order_id\": \"10000000000000000000-10000000\",\n\t\t\"track_number\": \"10002\",\n\t\t\"carrier_code\": \"[FedEx|UPS|USPS|Other]\",\n\t\t\"shipping_service\": \"Local Carrier Name\",\n\t\t\"comment\": \"culpa\"\n\t},\n\t{\n\t\t\"seller_order_id\": \"10000000000000000001-10000001\",\n\t\t\"track_number\": \"10003\",\n\t\t\"carrier_code\": \"[FedEx|UPS|USPS|Other]\"\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"/orders/add-order-tracking","description":"<p><strong>LIMITS</strong><br />Up to 30 tracking numbers can be added in each request.</p>\n<p><strong>GENERAL</strong><br />This request adds tracking numbers to the specified orders</p>\n<p>Add order tracking for the current orders.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>JSON Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>seller_order_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>You can get this <code>seller_order_id</code> from either of the \"Get Order\" requests.</td>\n</tr>\n<tr>\n<td>track_number</td>\n<td>string</td>\n<td>Yes</td>\n<td>The actual tracking number for the shipment</td>\n</tr>\n<tr>\n<td>carrier_code</td>\n<td>string</td>\n<td>Yes</td>\n<td>Select from one of: \"FedEx\", \"UPS\", \"USPS\", \"Other\"</td>\n</tr>\n<tr>\n<td>shipping_service</td>\n<td>string</td>\n<td>Conditional</td>\n<td>Required if you use \"Other\" as your <code>carrier_code</code> . Not used if you are shipping with any other <code>carrier_code</code></td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>No</td>\n<td>An internal comment for yourself about this shipment, possibly the warehouse or distributor that it shipped from.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["add-order-tracking"],"host":["/orders"],"query":[],"variable":[]}},"response":[],"_postman_id":"aabbae06-933d-4bdc-a889-7bc0e3148b43"},{"name":"Queue Status","id":"134afbd2-b647-4afe-9837-d961689c8318","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/products/queue-status?queue_id=10000000-0000-0000-0000-000000000001","description":"<p><strong>LIMITS</strong><br />Up to 30 comma separated <code>queue_id</code> can be checked in each request. If you add more than 30 comma separated <code>queue_id</code> in a single request, the request will be rejected.</p>\n<p><strong>GENERAL</strong><br />Some of the POST requests will return a <code>queue_id</code> because we don't update all POSTed information instantly. The queue is fulfilled 99% of the time within 1 minute, but in a case of an unusually large amount of API requests, it could take slightly longer. You can check if your request has been processed by putting your returned <code>queue_id</code> in this API request</p>\n","urlObject":{"path":["queue-status"],"host":["/products"],"query":[{"key":"queue_id","value":"10000000-0000-0000-0000-000000000001"}],"variable":[]}},"response":[{"id":"8d5736f9-2225-4d17-82fb-d23965844de8","name":"Still In Queue","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":{"raw":"//products/queue-status?queue_id=10000000-0000-0000-0000-000000000001","host":["/"],"path":["products","queue-status"],"query":[{"key":"queue_id","value":"10000000-0000-0000-0000-000000000001"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 May 2022 23:16:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"149"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"status\": \"in_queue\",\n        \"message\": \"The request is still in queue.\",\n        \"errors\": {},\n        \"queue_id\": \"10000000-0000-0000-0000-000000000001\",\n        \"type\": \"add_product\"\n    }\n]"},{"id":"73bcdcc1-14b1-4732-bae0-60c783c52ff1","name":"Finished Queue","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":{"raw":"//products/queue-status?queue_id=10000000-0000-0000-0000-000000000001","host":["/"],"path":["products","queue-status"],"query":[{"key":"queue_id","value":"10000000-0000-0000-0000-000000000001"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 May 2022 23:16:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"168"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"status\": \"success\",\n        \"message\": \"Record is successfully saved with provided values.\",\n        \"errors\": {},\n        \"queue_id\": \"10000000-0000-0000-0000-000000000001\",\n        \"type\": \"add_product\"\n    }\n]"}],"_postman_id":"134afbd2-b647-4afe-9837-d961689c8318"}],"id":"c62e579b-3ae6-4d39-95fc-83454db92c00","_postman_id":"c62e579b-3ae6-4d39-95fc-83454db92c00","description":""},{"name":"BOPIS","item":[{"name":"Add Locations","id":"6cf20655-06ab-482b-88fe-48ec05b74b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"unique_identifier\": \"store-1\",\r\n\t\t\"enabled\": \"true\",\r\n\t\t\"country\": \"United States\",\r\n\t\t\"state\": \"Alaska\",\r\n\t\t\"city\": \"Juneu\",\r\n\t\t\"address\": \"123 Juneu Street\",\r\n\t\t\"suite_unit\": \"111\",\r\n\t\t\"zip_code\": \"99801\",\r\n\t\t\"monday_open_time\": \"9:00\",\r\n\t\t\"monday_close_time\": \"19:00\",\r\n\t\t\"tuesday_open_time\": \"8:30\",\r\n\t\t\"tuesday_close_time\": \"18:00\",\r\n\t\t\"wednesday_open_time\": \"\",\r\n\t\t\"wednesday_close_time\": \"\",\r\n\t\t\"thursday_open_time\": \"\",\r\n\t\t\"thursday_close_time\": \"\",\r\n\t\t\"friday_open_time\": \"\",\r\n\t\t\"friday_close_time\": \"\",\r\n\t\t\"saturday_open_time\": \"\",\r\n\t\t\"saturday_close_time\": \"\",\r\n\t\t\"sunday_open_time\": \"\",\r\n\t\t\"sunday_close_time\": \"\",\r\n\t\t\"latitude\": \"20.5937\",\r\n\t\t\"longitude\": \"78.9629\"\r\n\t},\r\n\t{\r\n\t\t\"unique_identifier\": \"store-2\",\r\n\t\t\"enabled\": \"true\",\r\n\t\t\"country\": \"United States\",\r\n\t\t\"state\": \"Alaska\",\r\n\t\t\"city\": \"Anchorage\",\r\n\t\t\"address\": \"123 Anchorage Road\",\r\n\t\t\"suite_unit\": \"\",\r\n\t\t\"zip_code\": \"99502\",\r\n\t\t\"monday_open_time\": \"9:00\",\r\n\t\t\"monday_close_time\": \"18:00\",\r\n\t\t\"tuesday_open_time\": \"\",\r\n\t\t\"tuesday_close_time\": \"\",\r\n\t\t\"wednesday_open_time\": \"\",\r\n\t\t\"wednesday_close_time\": \"\",\r\n\t\t\"thursday_open_time\": \"\",\r\n\t\t\"thursday_close_time\": \"\",\r\n\t\t\"friday_open_time\": \"\",\r\n\t\t\"friday_close_time\": \"\",\r\n\t\t\"saturday_open_time\": \"\",\r\n\t\t\"saturday_close_time\": \"\",\r\n\t\t\"sunday_open_time\": \"\",\r\n\t\t\"sunday_close_time\": \"\",\r\n\t\t\"latitude\": \"345.23\",\r\n\t\t\"longitude\": \"78.9629\"\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":"/locations/create","description":"<p>For each physical location you have, you will need to add specific details, like the actual address, the store hours, and also a <code>unique_identifier</code> . The <code>unique_identifier</code> can be anything you want, and it will be used in subsequent requests to reference that location.</p>\n","urlObject":{"path":["create"],"host":["/locations"],"query":[],"variable":[]}},"response":[],"_postman_id":"6cf20655-06ab-482b-88fe-48ec05b74b12"},{"name":"List Locations","id":"86ea6b4b-605c-4c0e-81c3-31a0b65f6d69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/locations?page_no=1","urlObject":{"host":["/locations"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[],"_postman_id":"86ea6b4b-605c-4c0e-81c3-31a0b65f6d69"},{"name":"Update Locations","id":"d49cf652-7a6e-460c-ac0f-f4a6e8e94392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"unique_identifier\": \"store-1\",\r\n        \"enabled\": \"true\",\r\n        \"country\": \"United States\",\r\n        \"state\": \"Alaska\",\r\n        \"city\": \"Juneu\",\r\n        \"address\": \"123 Juneu Street\",\r\n        \"suite_unit\": \"111\",\r\n        \"zip_code\": \"99801\",\r\n        \"monday_open_time\": \"9:00\",\r\n        \"monday_close_time\": \"19:00\",\r\n        \"tuesday_open_time\": \"8:30\",\r\n        \"tuesday_close_time\": \"18:00\",\r\n        \"wednesday_open_time\": \"\",\r\n        \"wednesday_close_time\": \"\",\r\n        \"thursday_open_time\": \"\",\r\n        \"thursday_close_time\": \"\",\r\n        \"friday_open_time\": \"\",\r\n        \"friday_close_time\": \"\",\r\n        \"saturday_open_time\": \"\",\r\n        \"saturday_close_time\": \"\",\r\n        \"sunday_open_time\": \"\",\r\n        \"sunday_close_time\": \"\",\r\n        \"latitude\": \"20.5937\",\r\n        \"longitude\": \"78.9629\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"/locations/update","description":"<p>For each physical location you have, you will need to add specific details, like the actual address, the store hours, and also a <code>unique_identifier</code> . The <code>unique_identifier</code> can be anything you want, and it will be used in subsequent requests to reference that location.</p>\n","urlObject":{"path":["update"],"host":["/locations"],"query":[],"variable":[]}},"response":[],"_postman_id":"d49cf652-7a6e-460c-ac0f-f4a6e8e94392"},{"name":"Get Location Details","id":"131787de-6925-4e75-928e-430ce7def97c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"url":"/locations/full-details?unique_identifier=store-1","urlObject":{"path":["full-details"],"host":["/locations"],"query":[{"key":"unique_identifier","value":"store-1"}],"variable":[]}},"response":[],"_postman_id":"131787de-6925-4e75-928e-430ce7def97c"},{"name":"Delete Locations","id":"92890d1f-db00-4a2e-be66-1b536a9b078f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"unique_identifier\": \"store-1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/locations/delete","urlObject":{"path":["delete"],"host":["/locations"],"query":[],"variable":[]}},"response":[],"_postman_id":"92890d1f-db00-4a2e-be66-1b536a9b078f"},{"name":"Add New Product","id":"c19025cf-c6fd-42ff-8895-1302672ced2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"general_info\": {\r\n\t\t\t\"category_id\": \"1234\",\r\n\t\t\t\"upc\": \"100000000000\",\r\n\t\t\t\"product_brand\": \"The Product Brand\",\r\n\t\t\t\"part_number\": \"ABC123\",\r\n\t\t\t\"name\": \"Product Name\",\r\n\t\t\t\"description\": \"A detailed description of the product describing its value to customers.\",\r\n\t\t\t\"product_weight\": 5.5,\r\n\t\t\t\"features\": \"A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.\",\r\n\t\t\t\"important_notes\": \"Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.\",\r\n\t\t\t\"country_of_manufacture\": \"United States\",\r\n\t\t\t\"harmonized_tariff_code\": \"8708.10.30\",\r\n\t\t\t\"instruction_files\": [\"https://example.com/file.pdf\", \"https://example.com/file.png\"],\r\n\t\t\t\"video_urls\": [\"https://www.youtube.com/watch?v=video1\" , \"https://www.youtube.com/watch?v=video2\"],\r\n\t\t\t\"california_proposition65_warn\": 1,\r\n\t\t\t\"old_part_number\": \"OLD-ABC123\"\r\n\t\t},\r\n\t\t\"seller_specifics\": {\r\n\t\t\t\"vendor_sku\": \"SKU-1\",\r\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\r\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\r\n\t\t\t\"price\": 199.99,\r\n\t\t\t\"sale_price\": 149.99,\r\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\r\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\r\n\t\t\t\"quantity\": 10,\r\n\t\t\t\"reorder_level\": 3,\r\n\t\t\t\"handling_time_no_of_days\": 0,\r\n\t\t\t\"eligible_for_return\": [0|1],\r\n\t\t\t\"return_within_days\": 30,\r\n\t\t\t\"allow_free_return\": [0|1],\r\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\r\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\r\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\r\n\t\t\t\"shipping_weight\": 10.5,\r\n\t\t\t\"shipping_policy_id\": \"ABC123\",\r\n\t\t\t\"locations\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"uniuqe_identifier\": \"store-1\",\r\n\t\t\t\t\t\"quantity\": \"10\",\r\n\t\t\t\t\t\"price\": \"0.1\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"uniuqe_identifier\": \"store-2\",\r\n\t\t\t\t\t\"quantity\": \"15\",\r\n\t\t\t\t\t\"price\": \"0.1\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t\"product_images\": {\r\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\",\r\n\t\t\t\"image_2\": \"https://example.com/image2.jpeg\",\r\n\t\t\t\"image_3\": \"https://example.com/image3.png\",\r\n\t\t\t\"image_4\": \"https://example.com/image4.webp\",\r\n\t\t\t\"image_5\": \"https://example.com/image5.gif\",\r\n\t\t\t\"image_6\": \"https://example.com/image6.svg\",\r\n\t\t\t\"image_7\": \"https://example.com/image7.bmp\",\r\n\t\t\t\"image_8\": \"https://example.com/image8.jpg\",\r\n\t\t\t\"image_9\": \"https://example.com/image9.jpg\",\r\n\t\t\t\"image_10\": \"https://example.com/image10.jpg\"\r\n\t\t},\r\n\t\t\"item_specific\": {\r\n\t\t\t\"Attribute1\": \"Value 1\",\r\n            \"Attribute2\": \"Value 2\"\r\n\t\t}\r\n\t},\r\n\t{\r\n\t\t\"general_info\": {\r\n\t\t\t\"category_id\": \"1234\",\r\n\t\t\t\"upc\": \"100000000000\",\r\n\t\t\t\"product_brand\": \"The Product Brand\",\r\n\t\t\t\"part_number\": \"ABC123\",\r\n\t\t\t\"name\": \"Product Name\",\r\n\t\t\t\"product_weight\": 5.5,\r\n\t\t\t\"california_proposition65_warn\": 1\r\n\t\t},\r\n\t\t\"seller_specifics\": {\r\n\t\t\t\"vendor_sku\": \"SKU-3\",\r\n\t\t\t\"condition\": \"New\",\r\n\t\t\t\"price\": 199.99,\r\n\t\t\t\"quantity\": 10,\r\n\t\t\t\"handling_time_no_of_days\": 0,\r\n\t\t\t\"eligible_for_return\": 0,\r\n\t\t\t\"warranty_type\": \"Manufacturer\",\r\n\t\t\t\"tax_category\": \"Taxable\",\r\n\t\t\t\"shipping_policy_id\": \"ABC123\",\r\n\t\t\t\"locations\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"uniuqe_identifier\": \"store-1\",\r\n\t\t\t\t\t\"quantity\": \"10\",\r\n\t\t\t\t\t\"price\": \"0.1\"\r\n\t\t\t\t}\r\n            ]\r\n\t\t},\r\n\t\t\"product_images\": {\r\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\"\r\n\t\t}\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":"/products/create","description":"<p>This API request is mostly the same as the \"Add New Product\" API for non-BOPIS sellers. You'll notice that the endpoint is actually the same. There is also the additional option <code>locations</code> that can be added, to specify your inventory at each location.</p>\n<p>For each new product you add using this request, you are still limited to a maximum of 30 products to be added in a single request, and additionally, you are limited to a maximum of 30 locations in this request.</p>\n<p>If you have more than 30 locations that you need to update inventory for at once, there is also the \"Update Product In Locations\" API endpoint, which doesn't have a limit to the number of locations in a single request</p>\n","urlObject":{"path":["create"],"host":["/products"],"query":[],"variable":[]}},"response":[],"_postman_id":"c19025cf-c6fd-42ff-8895-1302672ced2f"},{"name":"Update Products","id":"cbc25362-e8a4-410e-aabc-119578c0ed10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"general_info\": {\r\n\t\t\t\"category_id\": \"1234\",\r\n\t\t\t\"upc\": \"100000000000\",\r\n\t\t\t\"product_brand\": \"The Product Brand\",\r\n\t\t\t\"part_number\": \"ABC123\",\r\n\t\t\t\"name\": \"Product Name\",\r\n\t\t\t\"description\": \"A detailed description of the product describing its value to customers.\",\r\n\t\t\t\"product_weight\": 5.5,\r\n\t\t\t\"features\": \"A description of the product's notable features, such as purpose, functions, capabilities, and visual traits.\",\r\n\t\t\t\"important_notes\": \"Important notes that you would like to notify the customer about in regards to the product, such as if it only fits a specific type of vehicle, or is illegal in certain states.\",\r\n\t\t\t\"country_of_manufacture\": \"United States\",\r\n\t\t\t\"harmonized_tariff_code\": \"8708.10.30\",\r\n\t\t\t\"instruction_files\": [\"https://example.com/file.pdf\", \"https://example.com/file.png\"],\r\n\t\t\t\"video_urls\": [\"https://www.youtube.com/watch?v=video1\" , \"https://www.youtube.com/watch?v=video2\"],\r\n\t\t\t\"california_proposition65_warn\": 1,\r\n\t\t\t\"old_part_number\": \"OLD-ABC123\"\r\n\t\t},\r\n\t\t\"seller_specifics\": {\r\n\t\t\t\"vendor_sku\": \"SKU-1\",\r\n\t\t\t\"condition\": \"[New|Used-Mint|Used-LikeNew|Used-Good|Used-Fair|Used-Poor]\",\r\n\t\t\t\"condition_note\": \"Optionally add a note that can be shown to buyers to give additional detail about the product’s condition\",\r\n\t\t\t\"price\": 199.99,\r\n\t\t\t\"sale_price\": 149.99,\r\n\t\t\t\"sale_from_date\": \"YYYY-MM-DD\",\r\n\t\t\t\"sale_to_date\": \"YYYY-MM-DD\",\r\n\t\t\t\"quantity\": 10,\r\n\t\t\t\"reorder_level\": 3,\r\n\t\t\t\"handling_time_no_of_days\": 0,\r\n\t\t\t\"eligible_for_return\": [0|1],\r\n\t\t\t\"return_within_days\": 30,\r\n\t\t\t\"allow_free_return\": [0|1],\r\n\t\t\t\"warranty_type\": \"[Manufacturer|Vendor|NoWarranty]\",\r\n\t\t\t\"warranty_description\": \"Optionally add details about the warranty, for example: how long the product is under warranty for and under what circumstances will the warranty be accepted.\",\r\n\t\t\t\"tax_category\": \"[Taxable|Nontaxable]\",\r\n\t\t\t\"shipping_weight\": 10.5,\r\n\t\t\t\"shipping_policy_id\": \"ABC123\",\r\n\t\t\t\"locations\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"uniuqe_identifier\": \"New Location - Testing\",\r\n\t\t\t\t\t\"quantity\": \"10\",\r\n\t\t\t\t\t\"price\": \"2\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"uniuqe_identifier\": \"Test Location 11\",\r\n\t\t\t\t\t\"quantity\": \"15\",\r\n\t\t\t\t\t\"price\": \"3\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t\"product_images\": {\r\n\t\t\t\"image_1\": \"https://example.com/image1.jpg\",\r\n\t\t\t\"image_2\": \"https://example.com/image2.jpeg\",\r\n\t\t\t\"image_3\": \"https://example.com/image3.png\",\r\n\t\t\t\"image_4\": \"https://example.com/image4.webp\",\r\n\t\t\t\"image_5\": \"https://example.com/image5.gif\",\r\n\t\t\t\"image_6\": \"https://example.com/image6.svg\",\r\n\t\t\t\"image_7\": \"https://example.com/image7.bmp\",\r\n\t\t\t\"image_8\": \"https://example.com/image8.jpg\",\r\n\t\t\t\"image_9\": \"https://example.com/image9.jpg\",\r\n\t\t\t\"image_10\": \"https://example.com/image10.jpg\"\r\n\t\t},\r\n\t\t\"item_specific\": {\r\n\t\t\t\"Attribute1\": \"Value 1\",\r\n            \"Attribute2\": \"Value 2\"\r\n\t\t}\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":"/your-products/update","description":"<p>This API request is mostly the same as the \"Update Products\" API for non-BOPIS sellers. You'll notice that the endpoint is actually the same. There is also the additional option <code>locations</code> that can be added, to specify your inventory at each location.</p>\n<p>For each product updated using this request, you are still limited to a maximum of 30 products to be updated in a single request, and additionally, you are limited to a maximum of 30 locations in this request.</p>\n<p>If you have more than 30 locations that you need to update inventory for at once, there is also the \"Update Product In Locations\" API endpoint, which doesn't have a limit to the number of locations in a single request</p>\n","urlObject":{"path":["update"],"host":["/your-products"],"query":[],"variable":[]}},"response":[],"_postman_id":"cbc25362-e8a4-410e-aabc-119578c0ed10"},{"name":"Update Product In Locations","id":"2d3e557c-953c-495d-8b4d-48e925ae90ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"vendor_sku\": \"SKU-1\",\r\n\t\"locations\": [\r\n\t\t{\r\n\t\t\t\"uniuqe_identifier\": \"Juneu-1\",\r\n\t\t\t\"quantity\": 16,\r\n\t\t\t\"price\": 100\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"uniuqe_identifier\": \"Testing-7\",\r\n\t\t\t\"quantity\": 20,\r\n\t\t\t\"price\": 100\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"uniuqe_identifier\": \"New Location-Testing\",\r\n\t\t\t\"quantity\": 30\r\n\t\t}\r\n\t]\r\n}","options":{"raw":{"language":"json"}}},"url":"/your-products/update-product-location","description":"<p>This API allows you to update the Quantity and Price for a single product without any limit on the number of locations you are updating at once. You can only update a single product at once.</p>\n","urlObject":{"path":["update-product-location"],"host":["/your-products"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d3e557c-953c-495d-8b4d-48e925ae90ac"},{"name":"Update Order Status","id":"343293d1-760e-4c40-b92b-e9a75aba2069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"status\": \"canceled\",\r\n\t\t\"seller_order_id\": \"777777777777777777777-77777777\"\r\n\t},\r\n\t{\r\n\t\t\"status\": \"processed\",\r\n\t\t\"seller_order_id\": \"888888888888888888888-88888888\"\r\n\t},\r\n\t{\r\n\t\t\"status\": \"delivered\",\r\n\t\t\"seller_order_id\": \"999999999999999999999-99999999\"\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":"/orders/change-order-status","urlObject":{"path":["change-order-status"],"host":["/orders"],"query":[],"variable":[]}},"response":[],"_postman_id":"343293d1-760e-4c40-b92b-e9a75aba2069"}],"id":"6c5fffce-9aee-4009-af86-2225eb42c2fa","description":"<p>With some minor modifications to the above main API requests, you can also offer your products for Will-Call where customers will Buy Online and Pickup In Store</p>\n","_postman_id":"6c5fffce-9aee-4009-af86-2225eb42c2fa"}],"variable":[{"id":"168cf914-3fad-4d8a-b03d-921f496ffb7d","key":"baseUrl","value":"/","type":"string"}]}