{"info":{"_postman_id":"032b0c3b-68b7-49a9-b9bf-0924d5be9b54","name":"ShipEarly API Documentation","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"4962710","collectionId":"032b0c3b-68b7-49a9-b9bf-0924d5be9b54","publishedId":"2sB3WpQ1A4","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-10-31T16:03:40.000Z"},"item":[{"name":"Authorization","item":[],"id":"f86b4bd3-4225-4147-a70b-743a830fb894","description":"<p>All API requests are made with Basic Authentication meaning that each request will require either a client_id and client_secret sent as a base64 encoded Authorization header or as part of the url.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>⚠️ WARNING: This authentication method is not intended for front end applications where the client_secret will be left exposed.</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>The following examples are equivalent. They are demonstrated as shell scripts making cURL requests but can be performed with your language or library of choice.</p>\n<h3 id=\"authorization-header\">Authorization Header</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>AUTH=$(echo -n \"{client_id}:{client_secret}\" | base64) &amp;&amp; \\\ncurl -H \"Authorization: Basic $AUTH\" https://demo.shipearlyapp.com/api/v1/products\n</code></pre><p>If using cURL there is a shorthand version of the above.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -u \"{client_id}:{client_secret}\" https://demo.shipearlyapp.com/api/v1/products\n</code></pre><h3 id=\"as-part-of-the-url\">As part of the URL</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl https://{client_id}:{client_secret}@demo.shipearlyapp.com/api/v1/products\n</code></pre>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"310b5273-be3b-41dd-98a4-b19f00885d21"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"80668bb6-29e8-4701-b493-c222365f579c"}}],"_postman_id":"f86b4bd3-4225-4147-a70b-743a830fb894"},{"name":"Rate Limiting","item":[],"id":"1a3e8ea9-4bf3-4fc7-b0d9-125bd96b2dc9","description":"<p>The ShipEarly API uses a Leaky Bucket algorithm for rate limiting.  </p>\n<p>The limits are as follows:</p>\n<ul>\n<li>Bucket size: 40 requests</li>\n<li>Leak rate: 2/second</li>\n</ul>\n<p>This will allow for about 2 requests per second with some variance. If the bucket size is exceeded a <code>429 Too Many Requests</code> error is returned.  To avoid this error, You can build your app to not exceed 2 requests per second.  Additionally, You can use the RateLimit response header values to determine the state of the bucket and decide whether or not to send the request.</p>\n<h4 id=\"rate-limit-headers\">Rate Limit Headers</h4>\n<p>Each repsonse will contain header values that describe the state of the bucket. \nThese are:</p>\n<ul>\n<li><strong>RateLimit-Limit:</strong> Total number of requests that the bucket can hold.</li>\n<li><strong>RateLimit-Remaining:</strong> Number of requests remaining for the current period</li>\n<li><strong>RateLimit-Reset:</strong> Seconds until the current period ends.</li>\n</ul>\n<p>At the end of a period the bucket will leak 2 requests, creating room for 2 more requests.  1 period is the denominator of <strong>Leak Rate</strong> (in this case, 1 second)</p>\n<p>Ensuring that <strong>RateLimit-Remaining</strong> does not reach 0 will help in avoiding a <code>429 Too Many Requests</code> response.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"d1670cd3-9a05-4d8e-a4a8-9d65e1f4d7be"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"2885cdd7-3436-4cf2-9446-579e7b21ab1a"}}],"_postman_id":"1a3e8ea9-4bf3-4fc7-b0d9-125bd96b2dc9"},{"name":"Paging","item":[],"id":"4f453722-b846-4111-9bb0-3f74f7ab4162","description":"<p>Paging can be acheived by using the <code>page</code>, <code>limit</code>, and <code>sort</code> query parameters.\nIf these parameters are not included they will default to returning the 1st page of 50 items sorted by id ASC which is equivalent to <code>page=1&amp;limit=50&amp;sort=id</code>.</p>\n<p>The <code>limit</code> parameter has an upper limit of 250. No more the 250 records will be returned in a single request.</p>\n<p>To determine if paging is required you can use the <code>/count</code> endpoint for the resource which will return the total number of records available.</p>\n<p>In the case where you are requesting records beyond what is available (for example, page 3 limit 5 where there is a total of 10 records) No records will be returned.</p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"4f453722-b846-4111-9bb0-3f74f7ab4162"},{"name":"Filtering","item":[],"id":"e38bcdb8-5c75-47b8-9825-4f1f8dcf332d","description":"<p>Filtering on index and count endpoints can be achieved through use of the <code>filter</code> parameter.</p>\n<p>The <code>filter</code> parameter will limit results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: <code>!=</code>, <code>&lt;</code>, <code>&gt;</code>, <code>&lt;=</code>, <code>&gt;=</code>, <code>LIKE</code>. A <code>filter</code> parameter without a specified comparison operator will be treated as <code>=</code>.</p>\n<p>For example: To retrieve all variant updated after 2020-05-26 use the request <code>/variants?filter[updated_at &gt;]=2020-05-26</code></p>\n<p>Note: Some values may contain URL reserved characters (<code>Order.order_number</code> for example).  Ensure that filter values are encoded appropriately before sending the request.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"04bf203d-3c36-45ef-90ea-6952f73b4cc6"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5a001122-0b73-426c-9a3d-eeba80396df1"}}],"_postman_id":"e38bcdb8-5c75-47b8-9825-4f1f8dcf332d"},{"name":"Request Bodies","item":[],"id":"57017f1b-1f4c-4f2c-867c-2fb46b49d7e2","description":"<p>Requests bodies are to be complete, valid JSON.  Invalid JSON may sometimes result in misleading error responses. It is recommended that you perform validation on the request body before sending the request.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"0252a702-8434-4ef5-87a7-b4e86501a381"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"f2fc6154-9e63-4b09-86f4-52b47659b329"}}],"_postman_id":"57017f1b-1f4c-4f2c-867c-2fb46b49d7e2"},{"name":"For Brands","item":[{"name":"Couriers","item":[{"name":"/couriers","id":"cb75c9ca-7926-46c0-859f-a20ba3eb279c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/couriers","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["couriers"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"38f69e9d-1a65-46b0-8a56-ad38e49f6c38","name":"Get details of all couriers","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/couriers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"532\",\n            \"name\": \"FedEx\"\n        },\n        {\n            \"id\": \"3453\",\n            \"name\": \"USPS\"\n        }\n    ]\n}"}],"_postman_id":"cb75c9ca-7926-46c0-859f-a20ba3eb279c"},{"name":"/couriers/count","id":"452d5d97-6748-44c5-9c18-8c4d933cd5c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/couriers/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["couriers","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9bd7facd-2cbe-493e-8196-f51404f46fd2","name":"Get count of all couriers.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/couriers/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2\n}"}],"_postman_id":"452d5d97-6748-44c5-9c18-8c4d933cd5c7"},{"name":"/couriers/:courier_id","id":"8b68d338-5a88-450a-9bfc-ed9cd141704c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/couriers/:courier_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["couriers",":courier_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6cfc6c3c-597a-4f9d-8301-f941b8675042","type":"any","value":"","key":"courier_id"}]}},"response":[{"id":"8dbb6a06-c592-4e3f-85c7-84a7591ba09b","name":"Get details of a specific courier.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/couriers/:courier_id","host":["https://shipearlyapp.com/api/v1"],"path":["couriers",":courier_id"],"variable":[{"key":"courier_id","value":"532"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"532\",\n        \"name\": \"FedEx\"\n    }\n}"}],"_postman_id":"8b68d338-5a88-450a-9bfc-ed9cd141704c"}],"id":"baedbb90-75fa-43e2-8fd5-ee86adcf55ef","_postman_id":"baedbb90-75fa-43e2-8fd5-ee86adcf55ef","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}},{"name":"Credit Terms","item":[{"name":"/credit_terms","id":"3e9efe3a-7801-4286-8d47-2338c8b11f54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/credit_terms","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","name":"Credit Terms","type":"folder"}},"urlObject":{"path":["credit_terms"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8bb70cc7-4a7c-4c44-9481-227ca04c1d6a","name":"Get details of all credit terms","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/credit_terms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"532\",\n            \"description\": \"Net 45\",\n            \"days_due\": \"45\",\n            \"payment_status\": \"Payment Pending\",\n            \"created_at\": \"2020-04-13 12:31:53\",\n            \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n            \"id\": \"322\",\n            \"description\": \"Net 15\",\n            \"days_due\": \"15\",\n            \"payment_status\": \"Payment Pending\",\n            \"created_at\": \"2020-04-13 12:31:53\",\n            \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n            \"id\": \"455\",\n            \"description\": \"On Receipt\",\n            \"days_due\": \"0\",\n            \"payment_status\": \"Paid\",\n            \"created_at\": \"2020-04-13 12:31:53\",\n            \"updated_at\": \"2020-04-13 12:31:53\"\n        }\n    ]\n}"}],"_postman_id":"3e9efe3a-7801-4286-8d47-2338c8b11f54"},{"name":"/credit_terms/count","id":"bba843d7-1c3e-43b8-b12e-3643b2f12240","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/credit_terms/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","name":"Credit Terms","type":"folder"}},"urlObject":{"path":["credit_terms","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e915e442-749e-42a6-83b0-9d1c7fb78de0","name":"Get count of all credit terms","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/credit_terms/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 3\n}"}],"_postman_id":"bba843d7-1c3e-43b8-b12e-3643b2f12240"},{"name":"/credit_terms/:credit_term_id","id":"0b1956a5-05c9-4d7c-82bc-81897d6862a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/credit_terms/:credit_term_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","name":"Credit Terms","type":"folder"}},"urlObject":{"path":["credit_terms",":credit_term_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"cf2f312c-fa24-4a61-a710-8bab5ea664f2","type":"any","value":"","key":"credit_term_id"}]}},"response":[{"id":"f105e2e7-ae3e-4676-bd7d-5c70edbc1658","name":"Get details of a specific credit term","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/credit_terms/:credit_term_id","host":["https://shipearlyapp.com/api/v1"],"path":["credit_terms",":credit_term_id"],"variable":[{"key":"credit_term_id","value":"532"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"532\",\n        \"description\": \"Net 45\",\n        \"days_due\": \"45\",\n        \"payment_status\": \"Payment Pending\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n    }\n}"}],"_postman_id":"0b1956a5-05c9-4d7c-82bc-81897d6862a6"},{"name":"/credit_terms","id":"3401f1fc-acd3-4592-84ee-eb4022726151","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"days_due\": 30, //Required. Must be a positive integer or 0.\n    \"description\": \"Net 30\", //Required. \n    \"payment_status\": \"Payment Pending\" //Required.  One of ['Paid', 'Payment Pending']\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/credit_terms","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","name":"Credit Terms","type":"folder"}},"urlObject":{"path":["credit_terms"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"421e0d68-9aef-41d6-9873-0b7a4dcac0e0","name":"Create a credit term.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"days_due\": 30, \n    \"description\": \"Net 30\", \n    \"payment_status\": \"Payment Pending\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/credit_terms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"532\",\n        \"description\": \"Net 30\",\n        \"days_due\": \"30\",\n        \"payment_status\": \"Payment Pending\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n    }\n}"}],"_postman_id":"3401f1fc-acd3-4592-84ee-eb4022726151"},{"name":"/credit_terms/:credit_term_id","id":"3fa1dcbc-dceb-4f7d-b7ec-4dff0fc7d229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"days_due\": 30, // Must be a positive integer or 0.\n    \"description\": \"Net 30\",  \n    \"payment_status\": \"Payment Pending\" // Must One of ['Paid', 'Payment Pending']\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/credit_terms/:credit_term_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","name":"Credit Terms","type":"folder"}},"urlObject":{"path":["credit_terms",":credit_term_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"984ed370-a099-4f4b-b8ca-036ea0f2f4e3","type":"any","value":"","key":"credit_term_id"}]}},"response":[{"id":"03bb9e6c-36e6-4938-a776-18ad0966732a","name":"Edit a credit term.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"days_due\": 45, \n    \"description\": \"Net 45\", \n    \"payment_status\": \"Payment Pending\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/credit_terms/:credit_term_id","host":["https://shipearlyapp.com/api/v1"],"path":["credit_terms",":credit_term_id"],"variable":[{"key":"credit_term_id","value":"532"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"532\",\n        \"description\": \"Net 45\",\n        \"days_due\": \"45\",\n        \"payment_status\": \"Payment Pending\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n    }\n}"}],"_postman_id":"3fa1dcbc-dceb-4f7d-b7ec-4dff0fc7d229"}],"id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"3120c078-5c07-4710-b122-0dd5a65466e0"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"e3da14e9-b89e-4d5d-84b8-925a27e16fbb"}}],"_postman_id":"b1afcd1a-7be8-4747-814f-54a2a9dfb909","description":""},{"name":"Discounts","item":[{"name":"/discounts","id":"7125797c-64ee-48e0-8217-726e143c471b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/discounts","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","name":"Discounts","type":"folder"}},"urlObject":{"path":["discounts"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"48ff449d-86c9-4af6-8084-093e1583fc1f","name":"List all discounts","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"amount_off_options\": {\n                \"discount_value\": \"10.00\"\n            },\n            \"buy_x_get_y_options\": {\n                \"buy_x_option\": \"product_title\",\n                \"buy_x_subtotal\": \"0.00\",\n                \"buy_x_quantity\": \"1\",\n                \"buy_x_values\": [\n                    \"T-Shirt\"\n                ],\n                \"get_y_option\": \"product_title\",\n                \"get_y_quantity\": \"2\",\n                \"get_y_values\": [\n                    \"Sweater\"\n                ],\n                \"get_y_free\": false\n            },\n            \"id\": \"23461\",\n            \"code\": \"OCTBOGO\",\n            \"description\": \"Buy 1 of title (T-Shirt), Get 2 of title (Sweater) 10 off\",\n            \"is_active\": true,\n            \"is_enabled\": false,\n            \"usage_count\": \"0\",\n            \"is_automatic\": true,\n            \"start_date\": \"2022-09-05\",\n            \"end_date\": \"2022-10-08\",\n            \"retailer_options\": {\n                \"type\": \"all\",\n                \"values\": null\n            },\n            \"usage_options\": {\n                \"type\": \"unlimited\",\n                \"limit\": \"0\",\n                \"one_per_customer\": false\n            },\n            \"created_at\": \"2022-09-21 11:45:48\",\n            \"updated_at\": \"2022-09-21 13:55:41\"\n        },\n        {\n            \"amount_off_options\": {\n                \"discount_value\": \"23.00\"\n            },\n            \"applies_to_options\": {\n                \"type\": \"all\",\n                \"values\": null\n            },\n            \"minimum_requirement_options\": {\n                \"type\": \"\",\n                \"amount\": null\n            },\n            \"id\": \"342315\",\n            \"code\": \"D135D67E4A94\",\n            \"description\": \"23 off entire order\",\n            \"b2b_options\": {\n                \"order_type\": \"booking\",\n                \"available_credit_terms\": [\n                    \"61234\",\n                    \"12532\"\n                ]\n            },\n            \"is_active\": true,\n            \"is_enabled\": false,\n            \"usage_count\": \"0\",\n            \"is_automatic\": false,\n            \"start_date\": \"2022-09-06\",\n            \"end_date\": \"2022-10-07\",\n            \"retailer_options\": {\n                \"type\": \"all\",\n                \"values\": null\n            },\n            \"usage_options\": {\n                \"type\": \"unlimited\",\n                \"limit\": \"0\",\n                \"one_per_customer\": false\n            },\n            \"created_at\": \"2022-09-21 12:05:24\",\n            \"updated_at\": \"2022-09-21 13:55:40\"\n        },\n        {\n            \"buy_x_get_y_options\": {\n                \"buy_x_option\": \"category\",\n                \"buy_x_subtotal\": \"0.00\",\n                \"buy_x_quantity\": \"5\",\n                \"buy_x_values\": [\n                    \"Accessories\"\n                ],\n                \"get_y_option\": \"product_variant\",\n                \"get_y_quantity\": \"1\",\n                \"get_y_values\": [\n                    \"SKU0091982\"\n                ],\n                \"get_y_free\": true\n            },\n            \"id\": \"932792\",\n            \"code\": \"4282DB46FEFE\",\n            \"description\": \"\",\n            \"is_active\": true,\n            \"is_enabled\": true,\n            \"usage_count\": \"0\",\n            \"is_automatic\": false,\n            \"start_date\": \"2022-10-01\",\n            \"end_date\": \"2022-11-30\",\n            \"retailer_options\": {\n                \"type\": \"tiers\",\n                \"values\": [\n                    \"7\",\n                    \"6\"\n                ]\n            },\n            \"usage_options\": {\n                \"type\": \"unlimited\",\n                \"limit\": \"0\",\n                \"one_per_customer\": false\n            },\n            \"created_at\": \"2022-09-21 13:54:16\",\n            \"updated_at\": \"2022-09-21 13:54:16\"\n        },\n        {\n            \"amount_off_options\": {\n                \"discount_value\": \"10.00\"\n            },\n            \"buy_x_get_y_options\": {\n                \"buy_x_option\": \"product_variant\",\n                \"buy_x_subtotal\": \"0.00\",\n                \"buy_x_quantity\": \"5\",\n                \"buy_x_values\": [\n                    \"SKU001828421\",\n                    \"SKU001892232\",\n                    \"SKU001823242\"\n                ],\n                \"get_y_option\": \"product_title\",\n                \"get_y_quantity\": \"1\",\n                \"get_y_values\": [\n                    \"T-Shirt\",\n                    \"Sweater\"\n                ],\n                \"get_y_free\": false\n            },\n            \"id\": \"94701\",\n            \"code\": \"FEC67A8568B2\",\n            \"description\": \"Buy 5 of variants (SKU001828421, SKU001892232, SKU001823242), Get 1 of titles (T-Shirt, Sweater) 10 off\",\n            \"is_active\": true,\n            \"is_enabled\": true,\n            \"usage_count\": \"0\",\n            \"is_automatic\": false,\n            \"start_date\": \"2022-10-01\",\n            \"end_date\": \"2022-12-31\",\n            \"retailer_options\": {\n                \"type\": \"all\",\n                \"values\": null\n            },\n            \"usage_options\": {\n                \"type\": \"unlimited\",\n                \"limit\": \"0\",\n                \"one_per_customer\": false\n            },\n            \"created_at\": \"2022-09-21 13:53:17\",\n            \"updated_at\": \"2022-09-21 13:53:17\"\n        },\n        {\n            \"free_shipping_options\": {\n                \"exclude_shipping_rates_over\": \"0.00\"\n            },\n            \"applies_to_options\": {\n                \"type\": \"product_tag\",\n                \"values\": [\n                    \"Summer\",\n                    \"Spring\",\n                    \"Outdoors\"\n                ]\n            },\n            \"minimum_requirement_options\": {\n                \"type\": \"\",\n                \"amount\": null\n            },\n            \"id\": \"38920\",\n            \"code\": \"A645E316A9A3\",\n            \"description\": \"Free shipping on Summer and Spring outdoor items.\",\n            \"is_active\": true,\n            \"is_enabled\": true,\n            \"usage_count\": \"0\",\n            \"is_automatic\": false,\n            \"start_date\": \"2022-10-01\",\n            \"end_date\": \"2022-10-07\",\n            \"retailer_options\": {\n                \"type\": \"none\",\n                \"values\": null\n            },\n            \"usage_options\": {\n                \"type\": \"unlimited\",\n                \"limit\": \"0\",\n                \"one_per_customer\": true\n            },\n            \"created_at\": \"2022-09-21 13:52:25\",\n            \"updated_at\": \"2022-09-21 13:52:25\"\n        }\n    ]\n}"}],"_postman_id":"7125797c-64ee-48e0-8217-726e143c471b"},{"name":"/discounts","id":"4c775ed0-0858-4f48-95ef-881e15c35220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/discounts","description":"<p>When adding or editing a discount, the request should match the expected schema described <a href=\"#5231b344-0de6-4a75-8ea7-fe41cf55f449\">here</a>. There are also several example requests to use as a reference.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","name":"Discounts","type":"folder"}},"urlObject":{"path":["discounts"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a952f4f7-7b0d-47dc-b20b-db99591e77e3","name":"Create an amount off discount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount_off_options\": {\n        \"discount_value\": \"100\"\n    },\n    \"applies_to_options\": {\n        \"type\": \"all\"\n    },\n    \"minimum_requirement_options\": {\n        \"type\": \"\"\n    },\n    \"code\": \"D135D67E4A94\",\n    \"is_enabled\": true,\n    \"description\": \"Example amount off discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount_off_options\": {\n            \"discount_value\": \"100.00\"\n        },\n        \"applies_to_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"minimum_requirement_options\": {\n            \"type\": \"\",\n            \"amount\": null\n        },\n        \"id\": \"82818\",\n        \"code\": \"D135D67E4A94\",\n        \"description\": \"Example amount off discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 15:23:41\",\n        \"updated_at\": \"2022-09-21 15:23:41\"\n    }\n}"},{"id":"9d38ad83-f3a8-463c-8862-f49393029a4b","name":"Create a Buy x Get y discount.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"percent_off_options\": {\n        \"discount_value\": \"10\"\n    },\n    \"buy_x_get_y_options\": {\n        \"buy_x_option\": \"category\",\n        \"buy_x_quantity\": \"5\",\n        \"buy_x_values\": [\n            \"Accessories\"\n        ],\n        \"get_y_option\": \"product_variant\",\n        \"get_y_quantity\": \"1\",\n        \"get_y_values\": [\n            \"SKU0091982\"\n        ]\n    },\n    \"code\": \"039uhwdq\",\n    \"is_enabled\": true,\n    \"description\": \"Example buy x get y discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"percent_off_options\": {\n            \"discount_value\": \"10.00\"\n        },\n        \"buy_x_get_y_options\": {\n            \"buy_x_option\": \"category\",\n            \"buy_x_quantity\": \"5\",\n            \"buy_x_values\": [\n                \"Accessories\"\n            ],\n            \"get_y_option\": \"product_variant\",\n            \"get_y_quantity\": \"1\",\n            \"get_y_values\": [\n                \"SKU0091982\"\n            ],\n            \"get_y_free\": false\n        },\n        \"id\": \"94\",\n        \"code\": \"039uhwdq\",\n        \"description\": \"Example buy x get y discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 15:28:24\",\n        \"updated_at\": \"2022-09-21 15:28:24\"\n    }\n}"},{"id":"4c7c613e-b982-4527-8c3f-10fbd3cbe968","name":"Create a Buy x Get y free discount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"buy_x_get_y_options\": {\n        \"buy_x_option\": \"category\",\n        \"buy_x_quantity\": \"5\",\n        \"buy_x_values\": [\n            \"Accessories\"\n        ],\n        \"get_y_option\": \"product_variant\",\n        \"get_y_quantity\": \"1\",\n        \"get_y_values\": [\n            \"SKU0091982\"\n        ],\n        \"get_y_free\": true\n    },\n    \"code\": \"039uhwdq\",\n    \"is_enabled\": true,\n    \"description\": \"Example buy x get y free discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"buy_x_get_y_options\": {\n            \"buy_x_option\": \"category\",\n            \"buy_x_quantity\": \"5\",\n            \"buy_x_values\": [\n                \"Accessories\"\n            ],\n            \"get_y_option\": \"product_variant\",\n            \"get_y_quantity\": \"1\",\n            \"get_y_values\": [\n                \"SKU0091982\"\n            ],\n            \"get_y_free\": true\n        },\n        \"id\": \"94\",\n        \"code\": \"039uhwdq\",\n        \"description\": \"Example buy x get y free discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 15:28:24\",\n        \"updated_at\": \"2022-09-21 15:28:24\"\n    }\n}"},{"id":"1adacaef-44b8-4442-8908-750184d0b12b","name":"Create a B2b discount.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount_off_options\": {\n        \"discount_value\": \"100\"\n    },\n    \"applies_to_options\": {\n        \"type\": \"all\"\n    },\n    \"minimum_requirement_options\": {\n        \"type\": \"\"\n    },\n    \"code\": \"B2BBooking\",\n    \"is_enabled\": true,\n    \"b2b_options\": {\n        \"order_type\": \"booking\",\n        \"available_credit_terms\": [\n            \"61234\",\n            \"12532\"\n        ]\n    },\n    \"description\": \"Example b2b discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount_off_options\": {\n            \"discount_value\": \"100.00\"\n        },\n        \"applies_to_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"minimum_requirement_options\": {\n            \"type\": \"\",\n            \"amount\": null\n        },\n        \"id\": \"100\",\n        \"code\": \"B2BBooking\",\n        \"description\": \"Example b2b discount.\",\n        \"b2b_options\": {\n            \"order_type\": \"booking\",\n            \"hide_ineligible_products\": false,\n            \"available_credit_terms\": [\n                \"61234\",\n                \"12532\"\n            ]\n        },\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 16:45:29\",\n        \"updated_at\": \"2022-09-21 16:45:29\"\n    }\n}"},{"id":"55a168d6-5f3e-414a-9a37-c7d77fb6b88d","name":"Create an discount with minimum requirements","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount_off_options\": {\n        \"discount_value\": \"100\"\n    },\n    \"applies_to_options\": {\n        \"type\": \"all\"\n    },\n    \"minimum_requirement_options\": {\n        \"type\": \"quantity\",\n        \"amount\": 5\n    },\n    \"code\": \"D135D67E4A94\",\n    \"is_enabled\": true,\n    \"description\": \"Example amount off discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount_off_options\": {\n            \"discount_value\": \"100.00\"\n        },\n        \"applies_to_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"minimum_requirement_options\": {\n            \"type\": \"quantity\",\n            \"amount\": 5\n        },\n        \"id\": \"82818\",\n        \"code\": \"D135D67E4A94\",\n        \"description\": \"Example amount off discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 15:23:41\",\n        \"updated_at\": \"2022-09-21 15:23:41\"\n    }\n}"},{"id":"52071b65-7e84-48e0-984b-34d25aacb022","name":"Create a discount with applies to options","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount_off_options\": {\n        \"discount_value\": \"100\"\n    },\n    \"applies_to_options\": {\n        \"type\": \"category\",\n        \"values\": [\n            \"Accessories\",\n            \"Clearance\"\n        ]\n    },\n    \"minimum_requirement_options\": {\n        \"type\": \"\"\n    },\n    \"code\": \"D135D67E4A94\",\n    \"is_enabled\": true,\n    \"description\": \"Example amount off discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount_off_options\": {\n            \"discount_value\": \"100.00\"\n        },\n        \"applies_to_options\": {\n            \"type\": \"category\",\n            \"values\": [\n                \"Accessories\",\n                \"Clearance\"\n            ]\n        },\n        \"minimum_requirement_options\": {\n            \"type\": \"\",\n            \"amount\": null\n        },\n        \"id\": \"82818\",\n        \"code\": \"D135D67E4A94\",\n        \"description\": \"Example amount off discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 15:23:41\",\n        \"updated_at\": \"2022-09-21 15:23:41\"\n    }\n}"},{"id":"75179f18-e5ea-4612-9353-1d8de044a8a0","name":"Create a discount with retailer options","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount_off_options\": {\n        \"discount_value\": \"100\"\n    },\n    \"applies_to_options\": {\n        \"type\": \"all\"\n    },\n    \"minimum_requirement_options\": {\n        \"type\": \"\"\n    },\n    \"code\": \"D135D67E4A94\",\n    \"is_enabled\": true,\n    \"description\": \"Example amount off discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"select_retailers\",\n        \"values\": [\n            654574,\n            452353,\n            457323\n        ]\n    },\n    \"usage_options\": {\n        \"type\": \"unlimited\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount_off_options\": {\n            \"discount_value\": \"100.00\"\n        },\n        \"applies_to_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"minimum_requirement_options\": {\n            \"type\": \"\",\n            \"amount\": null\n        },\n        \"id\": \"82818\",\n        \"code\": \"D135D67E4A94\",\n        \"description\": \"Example amount off discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"select_retailers\",\n            \"values\": [\n                654574,\n                452353,\n                457323\n            ]\n        },\n        \"usage_options\": {\n            \"type\": \"unlimited\",\n            \"limit\": \"0\",\n            \"one_per_customer\": false\n        },\n        \"created_at\": \"2022-09-21 15:23:41\",\n        \"updated_at\": \"2022-09-21 15:23:41\"\n    }\n}"},{"id":"d3c65545-47a3-4f46-9cbc-c492450084a4","name":"Create a discount with usage options","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount_off_options\": {\n        \"discount_value\": \"100\"\n    },\n    \"applies_to_options\": {\n        \"type\": \"all\"\n    },\n    \"minimum_requirement_options\": {\n        \"type\": \"\"\n    },\n    \"code\": \"D135D67E4A94\",\n    \"is_enabled\": true,\n    \"description\": \"Example amount off discount.\",\n    \"is_automatic\": false,\n    \"start_date\": \"2022-09-06\",\n    \"end_date\": \"2022-10-07\",\n    \"retailer_options\": {\n        \"type\": \"all\"\n    },\n    \"usage_options\": {\n        \"type\": \"limited\",\n        \"limit\": 10,\n        \"one_per_customer\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/discounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount_off_options\": {\n            \"discount_value\": \"100.00\"\n        },\n        \"applies_to_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"minimum_requirement_options\": {\n            \"type\": \"\",\n            \"amount\": null\n        },\n        \"id\": \"82818\",\n        \"code\": \"D135D67E4A94\",\n        \"description\": \"Example amount off discount.\",\n        \"is_active\": false,\n        \"is_enabled\": true,\n        \"usage_count\": \"0\",\n        \"is_automatic\": false,\n        \"start_date\": \"2022-09-06\",\n        \"end_date\": \"2022-10-07\",\n        \"retailer_options\": {\n            \"type\": \"all\",\n            \"values\": null\n        },\n        \"usage_options\": {\n            \"type\": \"limited\",\n            \"limit\": 10,\n            \"one_per_customer\": true\n        },\n        \"created_at\": \"2022-09-21 15:23:41\",\n        \"updated_at\": \"2022-09-21 15:23:41\"\n    }\n}"}],"_postman_id":"4c775ed0-0858-4f48-95ef-881e15c35220"},{"name":"/discounts/:discount_id","id":"a5078b11-9d97-4cf3-b22d-e01d53a5006e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/discounts/:discount_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","name":"Discounts","type":"folder"}},"urlObject":{"path":["discounts",":discount_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6bb16210-2822-4be7-a918-04886bca66e6","type":"any","value":"","key":"discount_id"}]}},"response":[],"_postman_id":"a5078b11-9d97-4cf3-b22d-e01d53a5006e"},{"name":"/discounts/:discount_id","id":"37197d84-5570-4d5f-b8e5-f87412160619","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://shipearlyapp.com/api/v1/discounts/:discount_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","name":"Discounts","type":"folder"}},"urlObject":{"path":["discounts",":discount_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"045d3654-bd38-4f00-aaca-7b816117caf7","type":"any","value":"","key":"discount_id"}]}},"response":[],"_postman_id":"37197d84-5570-4d5f-b8e5-f87412160619"}],"id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7","description":"<p>discount docs</p>\n<p>Here you can manage your discounts. There are 4 types of discounts: percent off, amount off, free shipping, and buy x get y.</p>\n<p>Every discount has these fields:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    'id': ...,\n    'discount_type': ... // type of the discount, One of ['percent_odd', 'amount_off', 'free_shipping', 'free']\n    'code': ..., // code for customers to enter\n    'description': ..., // description of the discount.\n    'is_active': ..., // true if the discount has not reached it usage limit.\n    'is_enabled': ..., // can be set to manually disable the discount\n    'is_automatic': ..., // if the discount is automatically applied at checkout\n    'usage_count': ..., // number of times the discount has been used\n    'start_date': ..., // start of the active date window for the discount\n    'end_date': ..., // end of the active date window for the discount\n    'usage_options': {\n        'type': ..., // One of ['limited','unlimited']\n        'limit': ..., // if type = 'limited', this will be a positive integer, otherwise it will be 0\n        'one_per_customer': ... // indicates if a single customer can use the discount more than once.\n    },\n    'retailer_options': {\n        'type': ..., // One of ['all','none','tiers','select_retailers','direct_exclusive']\n        'values': [...] // When type is select_retailers or tiers, this will hold the retailers or dealer tiers the discount applies to.\n    },\n    'created_at': ...,\n    'updated_at': ...,\n    ...\n}\n\n</code></pre>\n<p>Discounts for percent off, amount off, and free shipping will have one of the following option fields as well as <code>discount_type</code> set to the coresponding discount type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    'discount_type: 'amount_off',\n    'amount_off_options': {\n        'discount_value': ... // The amount off the order total.\n    },\n    ...\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    'discount_type: 'percent_off',\n    'percent_off_options': {\n        'discount_value': ... // The percent amount off the applicable products.\n    },\n    ...\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    'discount_type: 'free_shipping',\n    'free_shipping_options': {\n        'exclude_shipping_rates_over': ... // The maximum shipping rate that this discount will offer for free.\n    },\n    ...\n}\n\n</code></pre>\n<p>As well as the following when not a buy x get y discount:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    'applies_to_options': {\n            'type': ..., // one of ['all','category','product_title','product_variant','product_collection','product_tag']\n            'values': [...], // when type != 'all', a list of strings representing the applicable categories, titles, etc.\n    },\n    'minimum_requirement_options': {\n        'type': ..., // one of ['', 'subtotal', 'quantity']\n        'amount': ..., // for type='quantity', this is positive integer. for 'subtotal' this is a positive decimal.\n    },\n    ...\n}\n\n</code></pre>\n<p>For buy x get y discounts, <code>discount_type</code> can be any of <code>['amount_off', 'percent_off', 'free']</code> with the as well as an additional field of <code>buy_x_get_y_options</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    'buy_x_get_y_options': {\n        'buy_x_option': ..., // one of ['category','product_title','product_variant']\n        'buy_x_quantity': ..., // the quantity needed to qualify for the discount\n        'buy_x_values': [...], // list of categories, product titles, etc...\n        'get_y_option': ..., // one of ['category','product_title','product_variant']\n        'get_y_quantity': ..., // the quantity the discount will be applied to\n        'get_y_values': [...], // list of categories, product titles, etc...\n        'get_y_free': ... // Optional, this can be used instead of percent_off_options and amount_off_option to offer the get y items for free.\n    }\n    ...\n}\n\n</code></pre>\n<p>Discount intended for B2b orders will include a <code>b2b_options</code> field.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    'b2b_options': {\n        'available_credit_terms': [...], // a list of credit term ids offered to the retailer\n        'hide_ineligible_products': ... // indicates if users using this discount will be able to see products that are not eligible for the discount\n        'order_type': ... // the b2b order type that this discount will apply to. One of ['regular','rental','employee','demo','booking','special']\n        // for 'order_type' = 'booking'\n        'shipping_window_start_date': ...,\n        'shipping_window_end_date': ...\n    }\n    ...\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"fc552b74-94f0-4665-a39a-a8cb8b3a7391"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"c1f4fad0-c8f6-45ab-9fa6-d7e19c4a3508"}}],"_postman_id":"764bad83-cd2d-4684-a847-fc9fdbdb78e7"},{"name":"Inventory","item":[{"name":"Inventory","item":[{"name":"/inventory","id":"deb54cac-afb0-484f-b501-f634e408c846","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory","description":"<p>List inventory items.</p>\n<p>Query string parameters can be provided for custom filtering.</p>\n<p>Eg.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?page=1&amp;limit=50&amp;sort=-updated_at&amp;filter[quantity_on_hand &gt;]=0\n\n</code></pre>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"0f133bb8-ae89-4ff8-923d-ee0c59600a59","name":"List all inventory items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-07-12 02:05:37\"\n    },\n    {\n      \"id\": \"31\",\n      \"warehouse_id\": \"4\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": null,\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-02-22 00:15:40\"\n    },\n    {\n      \"id\": \"32\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723507649\",\n      \"quantity_on_hand\": \"3738\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-02-22 00:15:40\"\n    }\n  ]\n}"},{"id":"f114d228-28a6-44f3-97fc-759163ccc6e8","name":"Filtered list of inventory items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory?page=1&limit=50&sort=-updated_at&filter[quantity_on_hand >]=0","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","inventory"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[quantity_on_hand >]","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-07-12 02:05:37\"\n    },\n    {\n      \"id\": \"32\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723507649\",\n      \"quantity_on_hand\": \"3738\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-02-22 00:15:40\"\n    }\n  ]\n}"}],"_postman_id":"deb54cac-afb0-484f-b501-f634e408c846"},{"name":"/inventory/count","id":"27fb7e69-0db4-45c3-ab8e-aa096715d069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/count","description":"<p>Count inventory items</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f491583c-0ede-42e6-a34a-65da5d2b3736","name":"Count inventory Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 3\n}"}],"_postman_id":"27fb7e69-0db4-45c3-ab8e-aa096715d069"},{"name":"/inventory/:id","id":"9847c456-784e-4097-8b6d-ceaa8285fb30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/:id","description":"<p>View an inventory item</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"2b291365-14d0-427e-82fd-8f8b89e02f08","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"4cebbb3b-ddbd-434a-b3d4-886d10225692","name":"View an inventory item","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","inventory",":id"],"variable":[{"key":"id","value":"30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-07-12 02:05:37\"\n  }\n}"}],"_postman_id":"9847c456-784e-4097-8b6d-ceaa8285fb30"},{"name":"/inventory Single","id":"03626660-fa96-41a1-b285-a08048077f17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/inventory","description":"<p>Create a single inventory item connecting a variant to a warehouse. If the warehouse and variant are already connected, then the existing inventory item will be updated.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"08a65060-c772-4126-972d-f370cdc97cb8","name":"Create an inventory item","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"warehouse_id\": \"3\",\n  \"variant_id\": \"11130571329\",\n  \"quantity_on_hand\": \"148\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"33\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"11130571329\",\n    \"quantity_on_hand\": \"148\",\n    \"quantity_committed\": \"0\",\n    \"created_at\": \"2023-09-15 13:00:00\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}\n"},{"id":"abfc1961-cd8a-40e1-8637-78751abca68b","name":"Update by warehouse and variant","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"warehouse_id\": \"3\",\n  \"variant_id\": \"10723515137\",\n  \"quantity_on_hand\": \"199\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}"}],"_postman_id":"03626660-fa96-41a1-b285-a08048077f17"},{"name":"/inventory Multiple","id":"10eb24d1-5204-4f62-8b7a-0dfdf2a68d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/inventory","description":"<p>Create multiple inventory items by providing an array. If the warehouse and variant of an entry are already connected, then the existing inventory item will be updated.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"db172ed8-b7cd-45f6-a4ac-231ee5193f3d","name":"Adjust multiple inventory items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\"\n  },\n  {\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"16885145025\",\n    \"quantity_on_hand\": \"200\"\n  },\n  {\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"16885170497\",\n    \"quantity_on_hand\": \"200\"\n  }\n]\n","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    },\n    {\n      \"id\": \"34\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"16885145025\",\n      \"quantity_on_hand\": \"200\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2023-09-15 13:00:00\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    },\n    {\n      \"id\": \"35\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"16885170497\",\n      \"quantity_on_hand\": \"200\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2023-09-15 13:00:00\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    }\n  ]\n}\n"}],"_postman_id":"10eb24d1-5204-4f62-8b7a-0dfdf2a68d70"},{"name":"/inventory/:id","id":"794e5c29-c9e8-4acc-add4-ae2392636088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/:id","description":"<p>Edit an inventory item.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"ff2e2749-09ee-48d8-acb6-48ac1e3e317b","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"b03dae01-267b-46af-b4d0-576b9d046297","name":"Edit an inventory item","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"quantity_on_hand\": \"199\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","inventory",":id"],"variable":[{"key":"id","value":"30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}"}],"_postman_id":"794e5c29-c9e8-4acc-add4-ae2392636088"},{"name":"/inventory/:id","id":"5f8a6cbf-bd3d-4d58-8dbe-d452d08dfeb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/:id","description":"<p>Delete an inventory item to disconnect a variant from a warehouse.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"34a57f07-b92a-4968-90bf-f01eeb8db113","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"49ac2e6d-65af-4350-8f6b-32b61aed74f5","name":"Disconnect an inventory item","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","inventory",":id"],"variable":[{"key":"id","value":"30"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5f8a6cbf-bd3d-4d58-8dbe-d452d08dfeb4"}],"id":"7194c5f5-5561-45f8-9b18-7c316a16c375","_postman_id":"7194c5f5-5561-45f8-9b18-7c316a16c375","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}},{"name":"Inventory By Variant","item":[{"name":"/variants/:variant_id/inventory","id":"039b6247-a66d-4a26-b181-e1621ec34398","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","description":"<p>List inventory items.</p>\n<p>Query string parameters can be provided for custom filtering.</p>\n<p>Eg.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?page=1&amp;limit=50&amp;sort=-updated_at&amp;filter[quantity_on_hand &gt;]=0\n\n</code></pre>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"db852391-b551-4555-88df-626700c390c9","description":{"content":"<p>Eg. 10723515137</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"}]}},"response":[{"id":"fab545ef-7a0f-4b33-aa30-f701fd226c86","name":"List all inventory items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory"],"variable":[{"key":"variant_id","value":"10723515137"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-07-12 02:05:37\"\n    },\n    {\n      \"id\": \"31\",\n      \"warehouse_id\": \"4\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": null,\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-02-22 00:15:40\"\n    }\n  ]\n}"},{"id":"789a1ba5-9008-494d-8157-4c614e66161e","name":"Filtered list of inventory items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory?page=1&limit=50&sort=-updated_at&filter[quantity_on_hand >]=0","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[quantity_on_hand >]","value":"0"}],"variable":[{"key":"variant_id","value":"10723515137"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-07-12 02:05:37\"\n    }\n  ]\n}"}],"_postman_id":"039b6247-a66d-4a26-b181-e1621ec34398"},{"name":"/variants/:variant_id/inventory/count","id":"86093b66-7fda-48f4-ab3a-4e8e35aed922","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/count","description":"<p>Count inventory items.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"7d2b8fd0-822b-487f-a094-138f0efb685c","description":{"content":"<p>Eg. 10723515137</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"}]}},"response":[{"id":"911ee1d4-8ac7-46de-b878-0be6b67690ad","name":"Count inventory Items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/count","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory","count"],"variable":[{"key":"variant_id","value":"10723515137"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 2\n}"}],"_postman_id":"86093b66-7fda-48f4-ab3a-4e8e35aed922"},{"name":"/variants/:variant_id/inventory/:id","id":"f5883564-4d15-4c4f-bc7f-ff083c28f410","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/:id","description":"<p>View an inventory item.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"099dcb29-d5fd-4395-9ad5-a8776516ddb4","description":{"content":"<p>Eg. 10723515137</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"},{"id":"2c402e16-c709-4df1-8430-5a065116aae9","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"f9e114b5-1453-40d2-a1c3-d70668be0127","name":"View an inventory item","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory",":id"],"variable":[{"key":"variant_id","value":"10723515137"},{"key":"id","value":"30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-07-12 02:05:37\"\n  }\n}"}],"_postman_id":"f5883564-4d15-4c4f-bc7f-ff083c28f410"},{"name":"/variants/:variant_id/inventory Single","id":"64747750-7176-4c52-8203-30ec55352205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","description":"<p>Create a single inventory item connecting a variant to a warehouse. If the warehouse and variant are already connected, then the existing inventory item will be updated.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"5b45431f-85fd-41ee-ba8c-8a8216e30070","description":{"content":"<p>Eg. 11130571329</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"}]}},"response":[{"id":"c1172fbe-8050-4367-9874-91baf713c0d0","name":"Create an inventory item","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"warehouse_id\": \"3\",\n  \"quantity_on_hand\": \"148\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory"],"variable":[{"key":"variant_id","value":"11130571329"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"33\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"11130571329\",\n    \"quantity_on_hand\": \"148\",\n    \"quantity_committed\": \"0\",\n    \"created_at\": \"2023-09-15 13:00:00\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}\n"},{"id":"76aec98b-8a5b-4447-9953-280297ec3101","name":"Update by warehouse and variant","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"warehouse_id\": \"3\",\n  \"quantity_on_hand\": \"199\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory"],"variable":[{"key":"variant_id","value":"10723515137"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}"}],"_postman_id":"64747750-7176-4c52-8203-30ec55352205"},{"name":"/variants/:variant_id/inventory Multiple","id":"f5b94b15-0404-4df9-861e-51063458fc20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","description":"<p>Create multiple inventory items by providing an array. If the warehouse and variant of an entry are already connected, then the existing inventory item will be updated.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"96647918-be8c-483c-9155-320ddc7e4ad5","description":{"content":"<p>Eg. 10723515137</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"}]}},"response":[{"id":"7c0ac2bb-51b3-4963-b9b7-6033ef94b502","name":"Adjust multiple inventory items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"warehouse_id\": \"3\",\n    \"quantity_on_hand\": \"199\"\n  },\n  {\n    \"warehouse_id\": \"4\",\n    \"quantity_on_hand\": \"200\"\n  }\n]\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory"],"variable":[{"key":"variant_id","value":"10723515137"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    },\n    {\n      \"id\": \"34\",\n      \"warehouse_id\": \"4\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"200\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2023-09-15 13:00:00\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    }\n  ]\n}\n"}],"_postman_id":"f5b94b15-0404-4df9-861e-51063458fc20"},{"name":"/variants/:variant_id/inventory/:id","id":"c3aa47d9-f399-42e1-be50-f91017fdb3cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/:id","description":"<p>Edit an inventory item</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"f68287c7-3605-4391-8edf-300fafbd79a6","description":{"content":"<p>Eg. 10723515137</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"},{"id":"bf008d9a-ff0f-4665-bc0f-6a7850a2f8b9","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"fa2b891c-7663-4cf6-98f8-973ee7d4e5c9","name":"Edit an inventory item","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"quantity_on_hand\": \"199\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory",":id"],"variable":[{"key":"variant_id","value":"10723515137"},{"key":"id","value":"30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}"}],"_postman_id":"c3aa47d9-f399-42e1-be50-f91017fdb3cb"},{"name":"/variants/:variant_id/inventory/:id","id":"a52b3e11-79b8-4571-92ac-14c1b8222aa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/:id","description":"<p>Delete an inventory item to disconnect a variant from a warehouse.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["variants",":variant_id","inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"1e133d7b-1c27-412e-a3bb-5a65e4134df5","description":{"content":"<p>Eg. 10723515137</p>\n","type":"text/plain"},"type":"any","value":"","key":"variant_id"},{"id":"deff39a5-bb5e-46c3-b06f-16f31c9390ff","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"9f32b096-e060-4bd2-b8a5-76617cac0fea","name":"Disconnect an inventory item","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","variants",":variant_id","inventory",":id"],"variable":[{"key":"variant_id","value":"10723515137"},{"key":"id","value":"30"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a52b3e11-79b8-4571-92ac-14c1b8222aa5"}],"id":"e8bbd22d-69bd-4c17-bd44-41755adacf7c","description":"<p>Access inventory records under a specific <code>variant_id</code>.</p>\n<ul>\n<li>Read endpoint responses are implicitly filtered by the URL <code>variant_id</code> .</li>\n<li>Data provided to write endponts are implicitly assigned the URL <code>variant_id</code> .</li>\n<li>Endpoints with an <code>/:id</code> parameter will respond with a 404 Not Found error if the record's <code>variant_id</code> value does not match the URL parameter.</li>\n</ul>\n<p>Field definitions are shared with the <a href=\"#brands-inventory\">Inventory</a> endpoints</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"22ebee31-0667-4680-b2b0-5965b75cf020"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"54a2138f-1b70-4b28-9638-3a5be4e60e6e"}}],"_postman_id":"e8bbd22d-69bd-4c17-bd44-41755adacf7c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}},{"name":"Inventory By Warehouse","item":[{"name":"/warehouses/:warehouse_id/inventory","id":"00983710-4857-448c-8e87-edc7f73abecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","description":"<p>List inventory items.</p>\n<p>Query string parameters can be provided for custom filtering.</p>\n<p>Eg.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?page=1&amp;limit=50&amp;sort=-updated_at&amp;filter[quantity_on_hand &gt;]=0\n\n</code></pre>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"02f3742b-f220-45c2-85c1-d1826f76a220","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"}]}},"response":[{"id":"a89fd1af-64ae-4f0c-b386-567e8d88dbd1","name":"List all inventory items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory"],"variable":[{"key":"warehouse_id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-07-12 02:05:37\"\n    },\n    {\n      \"id\": \"32\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723507649\",\n      \"quantity_on_hand\": \"3738\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-02-22 00:15:40\"\n    }\n  ]\n}"},{"id":"bb4f6f3d-ca77-4c71-8e55-f54690ce19fc","name":"Filtered list of inventory items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory?page=1&limit=50&sort=-updated_at&filter[quantity_on_hand >]=0","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[quantity_on_hand >]","value":"0"}],"variable":[{"key":"warehouse_id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-07-12 02:05:37\"\n    },\n    {\n      \"id\": \"32\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723507649\",\n      \"quantity_on_hand\": \"3738\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-02-22 00:15:40\"\n    }\n  ]\n}"}],"_postman_id":"00983710-4857-448c-8e87-edc7f73abecb"},{"name":"/warehouses/:warehouse_id/inventory/count","id":"352af739-5bf6-4566-8fc5-a3c8b5590384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/count","description":"<p>Count inventory items.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"469ef018-515c-43bd-be7b-9eb0ad2607f6","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"}]}},"response":[{"id":"fe873392-ac35-4131-be36-b21a705f3138","name":"Count inventory Items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/count","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory","count"],"variable":[{"key":"warehouse_id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 2\n}"}],"_postman_id":"352af739-5bf6-4566-8fc5-a3c8b5590384"},{"name":"/warehouses/:warehouse_id/inventory/:id","id":"8267e532-0152-4ad1-b85a-9db824352d44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/:id","description":"<p>View an inventory item.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"8e7a33d9-7ff8-4f54-bc8f-3154a1bf0e44","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"},{"id":"b39de053-93ca-45d4-8d98-962a95b0040f","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"380c0ede-fded-4535-93d7-3431cba69581","name":"View an inventory item","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory",":id"],"variable":[{"key":"warehouse_id","value":"3"},{"key":"id","value":"30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-07-12 02:05:37\"\n  }\n}"}],"_postman_id":"8267e532-0152-4ad1-b85a-9db824352d44"},{"name":"/warehouses/:warehouse_id/inventory Single","id":"5399cee5-4c32-4fa3-8a2b-52090c6d517a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","description":"<p>Create a single inventory item connecting a variant to a warehouse. If the warehouse and variant are already connected, then the existing inventory item will be updated.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"ed9ecd0f-af02-418e-88d7-09fb776c89c7","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"}]}},"response":[{"id":"304f5a1c-5d09-4322-b0fc-4e892111c33a","name":"Create an inventory item","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"variant_id\": \"11130571329\",\n  \"quantity_on_hand\": \"148\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory"],"variable":[{"key":"warehouse_id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"33\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"11130571329\",\n    \"quantity_on_hand\": \"148\",\n    \"quantity_committed\": \"0\",\n    \"created_at\": \"2023-09-15 13:00:00\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}\n"},{"id":"7fc59d66-2b08-470a-9599-dc3c4182043b","name":"Update by warehouse and variant","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"variant_id\": \"10723515137\",\n  \"quantity_on_hand\": \"199\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory"],"variable":[{"key":"warehouse_id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}"}],"_postman_id":"5399cee5-4c32-4fa3-8a2b-52090c6d517a"},{"name":"/warehouses/:warehouse_id/inventory Multiple","id":"6e7a632a-7dab-43ed-9b43-828e9472063f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","description":"<p>Create multiple inventory items by providing an array. If the warehouse and variant of an entry are already connected, then the existing inventory item will be updated.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"5cfa0e6f-c8b0-4363-b3c5-ecfbfccf4f13","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"}]}},"response":[{"id":"87729742-dc89-4a70-ad5c-5a6f18478b5b","name":"Adjust multiple inventory items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\"\n  },\n  {\n    \"variant_id\": \"16885145025\",\n    \"quantity_on_hand\": \"200\"\n  },\n  {\n    \"variant_id\": \"16885170497\",\n    \"quantity_on_hand\": \"200\"\n  }\n]\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory"],"variable":[{"key":"warehouse_id","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"30\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"10723515137\",\n      \"quantity_on_hand\": \"199\",\n      \"quantity_committed\": \"50\",\n      \"created_at\": \"2019-02-25 10:50:24\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    },\n    {\n      \"id\": \"34\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"16885145025\",\n      \"quantity_on_hand\": \"200\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2023-09-15 13:00:00\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    },\n    {\n      \"id\": \"35\",\n      \"warehouse_id\": \"3\",\n      \"variant_id\": \"16885170497\",\n      \"quantity_on_hand\": \"200\",\n      \"quantity_committed\": \"0\",\n      \"created_at\": \"2023-09-15 13:00:00\",\n      \"updated_at\": \"2023-09-15 13:00:00\"\n    }\n  ]\n}\n"}],"_postman_id":"6e7a632a-7dab-43ed-9b43-828e9472063f"},{"name":"/warehouses/:warehouse_id/inventory/:id","id":"39a73758-3f4d-43e7-bd1a-b2ed2bacfe63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/:id","description":"<p>Edit an inventory item.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"8873070c-1ebd-4c9f-af5b-9eb224029e49","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"},{"id":"8779a0b5-3baf-42fe-a995-f0fd8d59976e","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"323e216d-0214-4456-b77f-b1feb7889948","name":"Edit an inventory item","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"quantity_on_hand\": \"199\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory",":id"],"variable":[{"key":"warehouse_id","value":"3"},{"key":"id","value":"30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"30\",\n    \"warehouse_id\": \"3\",\n    \"variant_id\": \"10723515137\",\n    \"quantity_on_hand\": \"199\",\n    \"quantity_committed\": \"50\",\n    \"created_at\": \"2019-02-25 10:50:24\",\n    \"updated_at\": \"2023-09-15 13:00:00\"\n  }\n}"}],"_postman_id":"39a73758-3f4d-43e7-bd1a-b2ed2bacfe63"},{"name":"/warehouses/:warehouse_id/inventory/:id","id":"cf097ddc-ee20-4944-801f-b84955305400","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/:id","description":"<p>Delete an inventory item to disconnect a variant from a warehouse.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"e200f216-9f46-46a9-a1f0-3eaa6cdc156b","description":{"content":"<p>Eg. 3</p>\n","type":"text/plain"},"type":"any","value":"","key":"warehouse_id"},{"id":"7ab983e8-4eec-4ebb-9da8-1bb0662b3fa6","description":{"content":"<p>Eg. 30</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"8e6c1da1-1109-46d2-91fb-04b163c84b69","name":"Disconnect an inventory item","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory/:id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","warehouses",":warehouse_id","inventory",":id"],"variable":[{"key":"warehouse_id","value":"3"},{"key":"id","value":"30"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cf097ddc-ee20-4944-801f-b84955305400"}],"id":"59b0b019-a213-4c0a-b6b1-03b0afdcf0a4","description":"<p>Access inventory records under a specific <code>warehouse_id</code>.</p>\n<ul>\n<li>Read endpoint responses are implicitly filtered by the URL <code>warehouse_id</code> .</li>\n<li>Data provided to write endponts are implicitly assigned the URL <code>warehouse_id</code> .</li>\n<li>Endpoints with an <code>/:id</code> parameter will respond with a 404 Not Found error if the record's <code>warehouse_id</code> value does not match the URL parameter.</li>\n</ul>\n<p>Field definitions are shared with the <a href=\"#9696d0eb-c260-4082-89f2-1b5fd6f4b63a\">Inventory</a> endpoints.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"7949972f-3377-41a6-b98f-2f0bf9b23509"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"d77aa5ca-ec0f-4ef8-8a77-e0b7d68e4e6c"}}],"_postman_id":"59b0b019-a213-4c0a-b6b1-03b0afdcf0a4","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}}],"id":"2b55c196-1633-4991-b597-2fc6c6c2e2f8","description":"<p>Access inventory records defined as associations between warehouses and product variants.</p>\n<p>If a warehouse does not manage a variant's inventory, then no record will be present. The POST endpoint can be used to create a new warehouse-variant connection and the DELETE endpoint used to disconnect a warehouse from a variant.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>\"id\": \"32\"</code>  <br />(read-only)</td>\n<td>The ID of the inventory record.</td>\n</tr>\n<tr>\n<td><code>\"warehouse_id\": \"3\"</code></td>\n<td>The ID of the associated warehouse.</td>\n</tr>\n<tr>\n<td><code>\"variant_id\": \"10723515137\"</code></td>\n<td>The ID fo the associated product variant.</td>\n</tr>\n<tr>\n<td><code>\"quantity_on_hand\": \"199\"</code></td>\n<td>Total inventory amount.  <br />Set <code>null</code> to indicate warehouse managed inventory where the amount is not tracked.</td>\n</tr>\n<tr>\n<td><code>\"quantity_committed\": \"50\"</code>  <br />(read-only)</td>\n<td>The inventory amount reserved by open orders. Quantity available can be derived as  <br /><code>quantity_on_hand - quantity_committed</code></td>\n</tr>\n<tr>\n<td><code>\"created_at\": \"2019-02-25 10:50:24\"</code>  <br />(read-only)</td>\n<td>Datetime for when the variant was connected to the warehouse.</td>\n</tr>\n<tr>\n<td><code>\"updated_at\": \"2023-09-15 02:05:37\"</code>  <br />(read-only)</td>\n<td>Datetime for when the inventory item was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"02378b31-aeee-49ef-93ed-d5355f4069ca"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"7a475da3-cef9-440f-8d38-933d8a4194a4"}}],"_postman_id":"2b55c196-1633-4991-b597-2fc6c6c2e2f8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}},{"name":"Inventory Transfers","item":[{"name":"Inventory Transfers","item":[{"name":"/inventory_transfers","id":"0b018d76-81f6-4f9c-bd01-86bf6050117d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"a589e698-7f92-4388-89bf-c41876dcaf7e","name":"Details about all inventory transfers.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"7845\",\n            \"transfer_id\": \"#T02312\",\n            \"reference_id\": \"99283\",\n            \"status\": \"pending\",\n            \"quantity\": \"10\",\n            \"destination_warehouse_id\": \"5231\",\n            \"expected_arrival_date\": \"2021-07-31\",\n            \"created_at\": \"2021-05-23 12:02:09\",\n            \"updated_at\": \"2021-05-23 12:02:09\",\n            \"products\": [\n                {\n                    \"id\": \"35222\",\n                    \"quantity\": \"5\",\n                    \"quantity_received\": \"0\",\n                    \"variant\": {\n                        \"id\": \"28374627\",\n                        \"sku\": \"1987123\",\n                        \"upc\": \"2012876123\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"product_id\": \"1823719\"\n                    }\n                },\n                {\n                    \"id\": \"35223\",\n                    \"quantity\": \"5\",\n                    \"quantity_received\": \"0\",\n                    \"variant\": {\n                        \"id\": \"9189072\",\n                        \"sku\": \"23456874\",\n                        \"upc\": \"24824545\",\n                        \"title\": \"Over Ear Headphones - Blue\",\n                        \"product_id\": \"1823719\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"7846\",\n            \"transfer_id\": \"#T02313\",\n            \"reference_id\": \"99284\",\n            \"status\": \"pending\",\n            \"quantity\": \"50\",\n            \"destination_warehouse_id\": \"5231\",\n            \"expected_arrival_date\": \"2021-08-22\",\n            \"created_at\": \"2021-05-24 15:04:45\",\n            \"updated_at\": \"2021-05-24 15:04:45\",\n            \"products\": [\n                {\n                    \"id\": \"35222\",\n                    \"quantity\": \"50\",\n                    \"quantity_received\": \"0\",\n                    \"variant\": {\n                        \"id\": \"28374627\",\n                        \"sku\": \"1987123\",\n                        \"upc\": \"2012876123\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"product_id\": \"1823719\"\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"0b018d76-81f6-4f9c-bd01-86bf6050117d"},{"name":"/inventory_transfers/count","id":"3291243d-8cd8-4e17-a8b6-bae1d0478db6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers/count","description":"<p>Get a count of all inventory transfers.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b7f2dcb2-2e4b-4f1e-9142-9122b03a7e49","name":"Count of all inventory transfers.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2\n}"}],"_postman_id":"3291243d-8cd8-4e17-a8b6-bae1d0478db6"},{"name":"/inventory_transfers/:id","id":"58bceaf9-8908-4275-80fe-46c29f08a1f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","description":"<p>Get details for a specific inventory transfer.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"0bac82df-6d98-480d-bb1d-0e53ab9902fd","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"d1b4b62e-6edb-4cb3-8795-2e900e0ff8b7","name":"Details about a specific inventory transfer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["inventory_transfers",":id"],"variable":[{"key":"id","value":"7845"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"10\",\n        \"destination_warehouse_id\": \"293\",\n        \"expected_arrival_date\": \"2021-07-31\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-23 12:02:09\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"58bceaf9-8908-4275-80fe-46c29f08a1f7"},{"name":"/inventory_transfers","id":"869a7eb4-a025-455b-9831-d69ac0af4a21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-20\", // must be in the format 'YYYY-MM-DD'\n    \"destination_warehouse_id\": 5231,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 5\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory_transfers","description":"<p>Create an inventory transfer.</p>\n<p>An inventory transfer will be created reflecting the body of the request.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"411565a7-8f80-480d-8f23-8f7d1453d96d","name":"Create an inventory transfer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-20\",\n    \"destination_warehouse_id\": 5231,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 5\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory_transfers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"10\",\n        \"destination_warehouse_id\": \"5231\",\n        \"expected_arrival_date\": \"2021-07-20\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-23 12:02:09\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"869a7eb4-a025-455b-9831-d69ac0af4a21"},{"name":"/inventory_transfers/:id/receive","id":"dd91cae8-df6a-4b5c-9891-a7a61021480b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers/:id/receive","description":"<p>Receive an inventory transfer.  Only transfers in pending status can be received.  When receiving a transfer, all products will have their remaining quantities recieved.</p>\n<p>If attempting a receipt on a completed transfer, an error response indicating so will be received.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers",":id","receive"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"3d8e3199-0d2a-4601-81d6-4f72075fcaba","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"b4e75c34-d30b-41f5-9ebc-8eb42ece2f57","name":"Receive a specific inventory transfer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory_transfers/:id/receive","host":["https://shipearlyapp.com/api/v1"],"path":["inventory_transfers",":id","receive"],"variable":[{"key":"id","value":"7845","description":"(Required) Id of an inventory transfer."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"10\",\n        \"destination_warehouse_id\": \"5231\",\n        \"expected_arrival_date\": \"2021-07-20\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-23 12:02:09\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"5\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"5\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"},{"id":"0c3c438a-f5e3-4a57-8242-670cf6752a4f","name":"Attempting to receive a completed transfer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory_transfers/:id/receive","host":["https://shipearlyapp.com/api/v1"],"path":["inventory_transfers",":id","receive"],"variable":[{"key":"id","value":"7845","description":"(Required) Id of an inventory transfer."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Cannot receive a transfer in Completed status\",\n    \"message\": \"Cannot receive a transfer in Completed status\",\n    \"url\": \"/api/v1/inventory_transfers/7845/receive\",\n    \"data\": null\n}"}],"_postman_id":"dd91cae8-df6a-4b5c-9891-a7a61021480b"},{"name":"/inventory_transfers/:id","id":"93463f72-6bd2-4c13-abca-72349fea95b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-25\", // must be in the format 'YYYY-MM-DD'\n    \"destination_warehouse_id\": 293,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 25\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 25\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","description":"<p>Edit an inventory transfer.  </p>\n<p>You can modify the Reference ID, Expected arrival date, Destination Warehouse, or the incoming products and their quantities.</p>\n<p>The incoming products will updated to match the products section of the body, if no products are provided, no changes will be made to the incoming products.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"bbad88db-17b9-48c1-bfe9-130e171ba249","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"58be4ed0-4c20-41a3-8dd6-21d665eac4be","name":"Edit a specific inventory transfer.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-25\",\n    \"destination_warehouse_id\": 293,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 25\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 25\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["inventory_transfers",":id"],"variable":[{"key":"id","value":"7845"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"50\",\n        \"destination_warehouse_id\": \"293\",\n        \"expected_arrival_date\": \"2021-07-25\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-24 16:04:38\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"25\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"25\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"93463f72-6bd2-4c13-abca-72349fea95b4"},{"name":"/inventory_transfers/:id","id":"7334698a-35bd-4429-8c3b-eb9729c8991e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","description":"<p>Delete a pending inventory transfer.  This can only be performed on transfers in pending status with no items having been received.  </p>\n<p>If attempting to delete a transfer that cannot be deleted, an error response indicating so will be received.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["inventory_transfers",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"43f4c180-605f-4dda-97b5-47c0b3564a65","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"9cb54ee7-49e0-4453-b65f-dea8182b9665","name":"Delete a specific inventory transfer.","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["inventory_transfers",":id"],"variable":[{"key":"id","value":"7845"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"success\"\n    }\n}"},{"id":"3c70f6d6-691d-44e6-8afe-f83be956ed66","name":"Attempting to delete a completed transfer.","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["inventory_transfers",":id"],"variable":[{"key":"id","value":"7845"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Cannot delete a transfer in Completed status\",\n    \"message\": \"Cannot delete a transfer in Completed status\",\n    \"url\": \"/api/v1/inventory_transfers/7845\",\n    \"data\": null\n}"}],"_postman_id":"7334698a-35bd-4429-8c3b-eb9729c8991e"}],"id":"559cbd94-5bd4-4e04-949d-dacb3c48c05a","_postman_id":"559cbd94-5bd4-4e04-949d-dacb3c48c05a","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}},{"name":"Inventory Transfers By Warehouse","item":[{"name":"/warehouses/:warehouse_id/inventory_transfers","id":"d527bd44-b284-4bf7-838b-55cbf5d7813e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"f8ba55a7-fad8-4969-b86b-2c9d046c1a85","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"}]}},"response":[{"id":"e752b1ad-c0c3-4134-b0cb-93b687a2c1d2","name":"Get inventory transfers destined for a specific warehouse.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers"],"variable":[{"key":"warehouse_id","value":"5231"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"7845\",\n            \"transfer_id\": \"#T02312\",\n            \"reference_id\": \"99283\",\n            \"status\": \"pending\",\n            \"quantity\": \"10\",\n            \"destination_warehouse_id\": \"5231\",\n            \"expected_arrival_date\": \"2021-07-31\",\n            \"created_at\": \"2021-05-23 12:02:09\",\n            \"updated_at\": \"2021-05-23 12:02:09\",\n            \"products\": [\n                {\n                    \"id\": \"35222\",\n                    \"quantity\": \"5\",\n                    \"quantity_received\": \"0\",\n                    \"variant\": {\n                        \"id\": \"28374627\",\n                        \"sku\": \"1987123\",\n                        \"upc\": \"2012876123\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"product_id\": \"1823719\"\n                    }\n                },\n                {\n                    \"id\": \"35223\",\n                    \"quantity\": \"5\",\n                    \"quantity_received\": \"0\",\n                    \"variant\": {\n                        \"id\": \"9189072\",\n                        \"sku\": \"23456874\",\n                        \"upc\": \"24824545\",\n                        \"title\": \"Over Ear Headphones - Blue\",\n                        \"product_id\": \"1823719\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"7846\",\n            \"transfer_id\": \"#T02313\",\n            \"reference_id\": \"99284\",\n            \"status\": \"pending\",\n            \"quantity\": \"50\",\n            \"destination_warehouse_id\": \"5231\",\n            \"expected_arrival_date\": \"2021-08-22\",\n            \"created_at\": \"2021-05-24 15:04:45\",\n            \"updated_at\": \"2021-05-24 15:04:45\",\n            \"products\": [\n                {\n                    \"id\": \"35222\",\n                    \"quantity\": \"50\",\n                    \"quantity_received\": \"0\",\n                    \"variant\": {\n                        \"id\": \"28374627\",\n                        \"sku\": \"1987123\",\n                        \"upc\": \"2012876123\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"product_id\": \"1823719\"\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"d527bd44-b284-4bf7-838b-55cbf5d7813e"},{"name":"/warehouses/:warehouse_id/inventory_transfers/count","id":"fac0a2c8-7f8f-4175-923e-5b07b277590c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/count","description":"<p>Get a count of all inventory transfers.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"f88043af-b0b2-46a5-a7b2-d9a082748d97","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"}]}},"response":[{"id":"7692e34a-3a47-43d5-909c-1b6a703d101a","name":"Count of inventory transfers by warehouse.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/count","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers","count"],"variable":[{"key":"warehouse_id","value":"5231"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2\n}"}],"_postman_id":"fac0a2c8-7f8f-4175-923e-5b07b277590c"},{"name":"/warehouses/:warehouse_id/inventory_transfers/:id","id":"29598f12-2d20-46a9-8a43-3340f4f81342","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","description":"<p>Get details for a specific inventory transfer.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"174426f6-8b84-48e5-acec-c22729d51e70","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"},{"id":"7e12ae06-f2f2-4365-b24c-00adedc957c9","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"f4f05144-0391-4fa7-b5f3-61d657ffbd1e","name":"Details about a specific inventory transfer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"variable":[{"key":"warehouse_id","value":"5231"},{"key":"id","value":"7845"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"10\",\n        \"destination_warehouse_id\": \"293\",\n        \"expected_arrival_date\": \"2021-07-31\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-23 12:02:09\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"29598f12-2d20-46a9-8a43-3340f4f81342"},{"name":"/warehouses/:warehouse_id/inventory_transfers","id":"977ce7fd-693a-4639-84e7-7e91cc72b470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-20\", // must be in the format 'YYYY-MM-DD'\n    \"destination_warehouse_id\": 5231,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 5\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers","description":"<p>Create an inventory transfer.</p>\n<p>An inventory transfer will be created reflecting the body of the request.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"ee02c122-5e5f-4be9-aadb-f21846666ce9","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"}]}},"response":[{"id":"99c3411e-8485-4f27-bec4-7f2e13478d2e","name":"Create an inventory transfer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-20\",\n    \"destination_warehouse_id\": 5231,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 5\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers"],"variable":[{"key":"warehouse_id","value":"5231"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"10\",\n        \"destination_warehouse_id\": \"5231\",\n        \"expected_arrival_date\": \"2021-07-20\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-23 12:02:09\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"977ce7fd-693a-4639-84e7-7e91cc72b470"},{"name":"/warehouses/:warehouse_id/inventory_transfers/:id/receive","id":"e3b65b04-4812-474a-b040-7f2242c25f0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id/receive","description":"<p>Receive an inventory transfer.  Only transfers in pending status can be received.  When receiving a transfer, all products will have their remaining quantities recieved.</p>\n<p>If attempting a receipt on a completed transfer, an error response indicating so will be received.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers",":id","receive"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"1f6b6bf4-331a-4f31-a82c-fe4f8788a319","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"},{"id":"80bfe93d-2960-43c9-99e4-58baf1089c5e","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"61755eeb-fc7b-4ce7-b8a4-a3a24e4ddf60","name":"Receive a specific inventory transfer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id/receive","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers",":id","receive"],"variable":[{"key":"warehouse_id","value":"5231"},{"key":"id","value":"7845","description":"(Required) Id of an inventory transfer."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"10\",\n        \"destination_warehouse_id\": \"5231\",\n        \"expected_arrival_date\": \"2021-07-20\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-23 12:02:09\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"5\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"5\",\n                \"quantity_received\": \"5\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"},{"id":"612bdae8-6ff4-409a-ad06-1698f4bbcd00","name":"Attempting to receive a completed transfer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id/receive","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers",":id","receive"],"variable":[{"key":"warehouse_id","value":"5231"},{"key":"id","value":"7845","description":"(Required) Id of an inventory transfer."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Cannot receive a transfer in Completed status\",\n    \"message\": \"Cannot receive a transfer in Completed status\",\n    \"url\": \"/api/v1/inventory_transfers/7845/receive\",\n    \"data\": null\n}"}],"_postman_id":"e3b65b04-4812-474a-b040-7f2242c25f0e"},{"name":"/warehouses/:warehouse_id/inventory_transfers/:id","id":"8139fd84-c6c3-495f-984f-c4b1721ebb48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-25\", // must be in the format 'YYYY-MM-DD'\n    \"destination_warehouse_id\": 293,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 25\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 25\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","description":"<p>Edit an inventory transfer.  </p>\n<p>You can modify the Reference ID, Expected arrival date, Destination Warehouse, or the incoming products and their quantities.</p>\n<p>The incoming products will updated to match the products section of the body, if no products are provided, no changes will be made to the incoming products.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"befaa14a-c9bd-4144-bd0d-23fa1306cbc3","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"},{"id":"45adf60d-55a7-41fb-87b9-96783ee80093","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"3eccb499-fc62-4575-ba7d-ed4d1dd82899","name":"Edit a specific inventory transfer.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reference_id\": \"99283\",\n    \"expected_arrival_date\": \"2021-07-25\",\n    \"destination_warehouse_id\": 293,\n    \"products\": [\n        {\n            \"variant_id\": 28374627,\n            \"quantity\": 25\n        },\n        {\n            \"variant_id\": 9189072,\n            \"quantity\": 25\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"variable":[{"key":"warehouse_id","value":"5231"},{"key":"id","value":"7845"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7845\",\n        \"transfer_id\": \"#T02312\",\n        \"reference_id\": \"99283\",\n        \"status\": \"pending\",\n        \"quantity\": \"50\",\n        \"destination_warehouse_id\": \"293\",\n        \"expected_arrival_date\": \"2021-07-25\",\n        \"created_at\": \"2021-05-23 12:02:09\",\n        \"updated_at\": \"2021-05-24 16:04:38\",\n        \"products\": [\n            {\n                \"id\": \"35222\",\n                \"quantity\": \"25\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"28374627\",\n                    \"sku\": \"1987123\",\n                    \"upc\": \"2012876123\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"product_id\": \"1823719\"\n                }\n            },\n            {\n                \"id\": \"35223\",\n                \"quantity\": \"25\",\n                \"quantity_received\": \"0\",\n                \"variant\": {\n                    \"id\": \"9189072\",\n                    \"sku\": \"23456874\",\n                    \"upc\": \"24824545\",\n                    \"title\": \"Over Ear Headphones - Blue\",\n                    \"product_id\": \"1823719\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"8139fd84-c6c3-495f-984f-c4b1721ebb48"},{"name":"/warehouses/:warehouse_id/inventory_transfers/:id","id":"4edff4c4-d062-4aa5-8a3d-d9ae29f4918e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","description":"<p>Delete a pending inventory transfer.  This can only be performed on transfers in pending status with no items having been received.  </p>\n<p>If attempting to delete a transfer that cannot be deleted, an error response indicating so will be received.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"620be293-3155-429b-bf85-4e7cf5ce8099","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"},{"id":"6cde7700-d9b3-4f5c-bae3-5a4bdeb3badd","description":{"content":"<p>(Required) Id of an inventory transfer.</p>\n","type":"text/plain"},"type":"any","value":"7845","key":"id"}]}},"response":[{"id":"c5b4953f-9fd8-4303-a337-22ce0cab7f01","name":"Delete a specific inventory transfer.","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"variable":[{"key":"warehouse_id","value":"5231"},{"key":"id","value":"7845"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"result\": \"success\"\n    }\n}"},{"id":"57684ea1-000b-4058-8e85-e35cd61d9ee5","name":"Attempting to delete a completed transfer.","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id/inventory_transfers/:id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id","inventory_transfers",":id"],"variable":[{"key":"warehouse_id","value":"5231"},{"key":"id","value":"7845"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Cannot delete a transfer in Completed status\",\n    \"message\": \"Cannot delete a transfer in Completed status\",\n    \"url\": \"/api/v1/inventory_transfers/7845\",\n    \"data\": null\n}"}],"_postman_id":"4edff4c4-d062-4aa5-8a3d-d9ae29f4918e"}],"id":"e59dbf36-d2ab-4332-a2d4-df763483ae8d","description":"<p>Access inventory transfer records under a specific <code>warehouse_id</code>.</p>\n<ul>\n<li>Read endpoint responses are implicitly filtered by the URL <code>warehouse_id</code> .</li>\n<li>Endpoints with an <code>/:id</code> parameter will respond with a 404 Not Found error if the record's <code>destination_warehouse_id</code> value does not match the URL parameter.</li>\n</ul>\n","_postman_id":"e59dbf36-d2ab-4332-a2d4-df763483ae8d","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}}],"id":"370cbfd7-8da3-40e0-981b-d529aa2a1ca6","description":"<p>Get and edit details of inventory transfers.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"2ad08165-2ba6-4f8a-bafc-5438d7ecd2b3"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"02b3cd98-5f9c-4ada-8f14-1212a28fea79"}}],"_postman_id":"370cbfd7-8da3-40e0-981b-d529aa2a1ca6","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","name":"For Brands","type":"folder"}}},{"name":"Orders","item":[{"name":"/orders","id":"8e23ba3d-c1db-4797-a438-4e2c6cd5b3ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all orders</p>\n<p>Note: The <code>order_number</code> field in the format <code>#SE0001234</code> will contain <code>#</code> which is a reserved URL character.  When using the <code>filter[order_number]</code> parameter, ensure that you encode the order number appropriately. e.g. <code>/orders?filter[order_number]=%23SE0001234</code></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"9c6da04e-c77e-4647-ab70-063c3605d2b2","name":"Get details for all orders","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"1290837\",\n      \"customer\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"email_address\": \"aham@email.com\",\n        \"accepts_marketing\": false,\n        \"order_count\": \"5\",\n        \"total_spent\": \"482.72\",\n        \"average_order\": \"96.54\"\n      },\n      \"billing_address\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"company_name\": \"AHam Industries\",\n        \"address1\": \"2702 Columbia Boulevard\",\n        \"address2\": null,\n        \"city\": \"Baltimore\",\n        \"state\": \"Maryland\",\n        \"country\": \"United States\",\n        \"zip_code\": \"21202\",\n        \"latitude\": \"39.237093\",\n        \"longitude\": \"-76.682579\"\n      },\n      \"shipping_address\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"company_name\": \"AHam Industries\",\n        \"address1\": \"2702 Columbia Boulevard\",\n        \"address2\": null,\n        \"city\": \"Baltimore\",\n        \"state\": \"Maryland\",\n        \"country\": \"United States\",\n        \"zip_code\": \"21202\",\n        \"latitude\": \"39.237093\",\n        \"longitude\": \"-76.682579\"\n      },\n      \"retailer\": {\n        \"id\": \"25600\",\n        \"account_id\": \"81772832\",\n        \"status\": \"Connected\",\n        \"company_name\": \"Company A\",\n        \"address1\": \"4094 Garfield Road\",\n        \"address2\": \"Suite 309\",\n        \"city\": \"Chicago\",\n        \"state_code\": \"IL\",\n        \"zip_code\": \"61614\",\n        \"country_code\": \"US\",\n        \"latitude\": \"41.853196\",\n        \"longitude\": \"-87.601958\",\n        \"pricing_tier_id\": \"7283\",\n        \"sales_reps\": [\n          \"28767\",\n          \"82632\"\n        ],\n        \"credit_terms\": [\n          \"532\",\n          \"455\"\n        ],\n        \"territory\": \"West\",\n        \"created_at\": \"2020-04-13 05:06:37\",\n        \"updated_at\": \"2020-11-30 22:42:11\",\n        \"dealer_protect_radius\": \"50\",\n        \"billing_email\": \"billing@companya.com\",\n        \"billing_company\": \"Company A\",\n        \"credit_limit\": \"5000\",\n        \"has_active_inventory_integration\": true,\n        \"enable_credit_card\": true\n      },\n      \"store\": \"James Bike Shop\",\n      \"order_type\": \"wholesale\",\n      \"order_status\": \"Delivered\",\n      \"internal_order_number\": \"#828182\",\n      \"ecommerce_id\": \"#92734\",\n      \"order_number\": \"#SE0019257\",\n      \"discount_code\": null,\n      \"verification_code\": \"AJD47S\",\n      \"risk_level\": \"normal\",\n      \"requested_ship_date\": \"2020-04-20 00:00:00\",\n      \"shipped_date\": null,\n      \"delivery_date\": null,\n      \"fulfillment_status\": \"fulfilled\",\n      \"shipping_lines\": [\n        {\n          \"service\": null,\n          \"price\": \"120.00\",\n          \"discount\": \"0.00\",\n          \"discounted_price\": \"120.00\",\n          \"total_tax\": \"0.00\"\n        }\n      ],\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"5\",\n          \"quantity_to_fulfill\": \"5\",\n          \"total_discount\": \"0.00\",\n          \"price\": \"250.00\",\n          \"tax_amount\": \"20.00\",\n          \"total_price\": \"1270.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"562363\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"4223457\",\n          \"variant_id\": \"3452346\",\n          \"sku\": \"233453465\",\n          \"upc\": \"342655343\",\n          \"title\": \"product2\",\n          \"quantity\": \"6\",\n          \"quantity_to_fulfill\": \"3\",\n          \"total_discount\": \"10.00\",\n          \"price\": \"150.00\",\n          \"tax_amount\": \"15.00\",\n          \"total_price\": \"455.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:32:53\",\n          \"updated_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"fulfillments\": [\n        {\n          \"id\": \"128273\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA972372788US\",\n          \"items\": [\n            {\n              \"id\": \"128974\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"2\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"128274\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA328517597US\",\n          \"items\": [\n            {\n              \"id\": \"128975\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"3\"\n            },\n            {\n              \"id\": \"927832\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"fulfilled_quantity\": \"3\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"refunds\": [\n        {\n          \"id\": \"23732\",\n          \"items\": [\n            {\n              \"id\": \"82933\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"quantity_refunded\": \"3\",\n              \"price\": \"150.00\",\n              \"total_refunded\": \"450.00\"\n            }\n          ],\n          \"amount\": \"450.00\",\n          \"shipping_amount\": \"0.00\",\n          \"tax_amount\": \"0.00\",\n          \"created_at\": \"2020-04-13 12:30:09\"\n        }\n      ],\n      \"dealer_order\": {\n        \"id\": \"242634\",\n        \"subtotal\": \"1550.50\",\n        \"total_price\": \"1695.57\",\n        \"total_discount\": \"100.00\",\n        \"total_shipping\": \"50.00\",\n        \"total_tax\": \"195.07\",\n        \"total_refund\": \"35.56\",\n        \"net_total\": \"1660.01\",\n        \"shipping_lines\": [\n          {\n            \"service\": null,\n            \"price\": \"50.00\",\n            \"discount\": \"0.00\",\n            \"discounted_price\": \"50.00\",\n            \"total_tax\": \"0.00\"\n          }\n        ],\n        \"order_items\": [\n          {\n            \"id\": \"167935\",\n            \"order_id\": \"1290837\",\n            \"warehouse_id\": \"5231\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"quantity\": \"5\",\n            \"quantity_to_fulfill\": \"5\",\n            \"total_discount\": \"0.00\",\n            \"price\": \"250.00\",\n            \"subtotal\": \"1250.00\",\n            \"tax_amount\": \"20.00\",\n            \"total_price\": \"1250.00\",\n            \"inventory_transfer_id\": \"14\",\n            \"estimated_ship_date\": \"2021-09-15\",\n            \"created_at\": \"2020-04-13 12:31:53\",\n            \"updated_at\": \"2020-04-13 12:31:53\"\n          },\n          {\n            \"id\": \"562363\",\n            \"order_id\": \"1290837\",\n            \"warehouse_id\": \"5231\",\n            \"product_id\": \"4223457\",\n            \"variant_id\": \"3452346\",\n            \"sku\": \"233453465\",\n            \"upc\": \"342655343\",\n            \"title\": \"product2\",\n            \"quantity\": \"6\",\n            \"quantity_to_fulfill\": \"3\",\n            \"total_discount\": \"10.00\",\n            \"price\": \"150.00\",\n            \"subtotal\": \"900.00\",\n            \"tax_amount\": \"15.00\",\n            \"total_price\": \"890.00\",\n            \"inventory_transfer_id\": \"14\",\n            \"estimated_ship_date\": \"2021-09-15\",\n            \"created_at\": \"2020-04-13 12:32:53\",\n            \"updated_at\": \"2020-04-13 12:32:53\"\n          }\n        ],\n        \"fulfillments\": [\n          {\n            \"id\": \"128273\",\n            \"warehouse_id\": \"28328\",\n            \"courier\": {\n              \"id\": \"3421\",\n              \"name\": \"Fedex\"\n            },\n            \"tracking_number\": \"RA972372788US\",\n            \"items\": [\n              {\n                \"id\": \"128974\",\n                \"product_id\": \"891272\",\n                \"variant_id\": \"891272\",\n                \"sku\": \"182820382\",\n                \"upc\": \"912822123\",\n                \"title\": \"product1\",\n                \"fulfilled_quantity\": \"2\"\n              }\n            ],\n            \"created_at\": \"2020-04-13 12:31:53\"\n          },\n          {\n            \"id\": \"128274\",\n            \"warehouse_id\": \"28328\",\n            \"courier\": {\n              \"id\": \"3421\",\n              \"name\": \"Fedex\"\n            },\n            \"tracking_number\": \"RA328517597US\",\n            \"items\": [\n              {\n                \"id\": \"128975\",\n                \"product_id\": \"891272\",\n                \"variant_id\": \"891272\",\n                \"sku\": \"182820382\",\n                \"upc\": \"912822123\",\n                \"title\": \"product1\",\n                \"fulfilled_quantity\": \"3\"\n              },\n              {\n                \"id\": \"927832\",\n                \"product_id\": \"4624356\",\n                \"variant_id\": \"3783456\",\n                \"sku\": \"23457227\",\n                \"upc\": \"2372373\",\n                \"title\": \"product2\",\n                \"fulfilled_quantity\": \"3\"\n              }\n            ],\n            \"created_at\": \"2020-04-13 12:32:53\"\n          }\n        ],\n        \"refunds\": [\n          {\n            \"id\": \"23732\",\n            \"items\": [\n              {\n                \"id\": \"82933\",\n                \"product_id\": \"4624356\",\n                \"variant_id\": \"3783456\",\n                \"sku\": \"23457227\",\n                \"upc\": \"2372373\",\n                \"title\": \"product2\",\n                \"quantity_refunded\": \"3\",\n                \"price\": \"150.00\",\n                \"total_refunded\": \"450.00\"\n              }\n            ],\n            \"amount\": \"450.00\",\n            \"shipping_amount\": \"0.00\",\n            \"tax_amount\": \"0.00\",\n            \"created_at\": \"2020-04-13 12:30:09\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      },\n      \"payment_method\": \"Stripe\",\n      \"payment_status\": \"Paid\",\n      \"credit_term\": null,\n      \"currency_code\": \"USD\",\n      \"total_discount\": \"0.00\",\n      \"subtotal\": \"1725.00\",\n      \"total_shipping\": \"120.00\",\n      \"total_tax\": \"150.00\",\n      \"total_price\": \"1995.00\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\"\n    },\n    {\n      \"id\": \"1290838\",\n      \"customer\": {\n        \"first_name\": \"Micheal\",\n        \"last_name\": \"Peltier\",\n        \"email_address\": \"MichealPeltier@email.com\",\n        \"accepts_marketing\": true,\n        \"order_count\": \"9\",\n        \"total_spent\": \"1005.62\",\n        \"average_order\": \"111.73\"\n      },\n      \"billing_address\": {\n        \"first_name\": \"Micheal\",\n        \"last_name\": \"Peltier\",\n        \"company_name\": \"Peltier and Sons\",\n        \"address1\": \"1876  Anmoore Road\",\n        \"address2\": \"Suite 304\",\n        \"city\": \"Queens\",\n        \"state\": \"New York\",\n        \"country\": \"United States\",\n        \"zip_code\": \"11693\",\n        \"latitude\": \"40.725796\",\n        \"longitude\": \"-73.793028\"\n      },\n      \"shipping_address\": {\n        \"first_name\": \"Micheal\",\n        \"last_name\": \"Peltier\",\n        \"company_name\": \"Peltier and Sons\",\n        \"address1\": \"3267  Grim Avenue\",\n        \"address2\": \"PO Box 4432\",\n        \"city\": \"Queens\",\n        \"state\": \"New York\",\n        \"country\": \"United States\",\n        \"zip_code\": \"11680\",\n        \"latitude\": \"40.712672\",\n        \"longitude\": \"-73.814454\"\n      },\n      \"retailer\": {\n        \"id\": \"25600\",\n        \"account_id\": \"81772832\",\n        \"status\": \"Connected\",\n        \"company_name\": \"Company A\",\n        \"address1\": \"4094 Garfield Road\",\n        \"address2\": \"Suite 309\",\n        \"city\": \"Chicago\",\n        \"state_code\": \"IL\",\n        \"zip_code\": \"61614\",\n        \"country_code\": \"US\",\n        \"latitude\": \"41.853196\",\n        \"longitude\": \"-87.601958\",\n        \"pricing_tier_id\": \"7283\",\n        \"sales_reps\": [\n          \"28767\",\n          \"82632\"\n        ],\n        \"credit_terms\": [\n          \"532\",\n          \"455\"\n        ],\n        \"territory\": \"West\",\n        \"created_at\": \"2020-04-13 05:06:37\",\n        \"updated_at\": \"2020-11-30 22:42:11\",\n        \"dealer_protect_radius\": \"50\",\n        \"billing_email\": \"billing@companya.com\",\n        \"billing_company\": \"Company A\",\n        \"credit_limit\": \"5000\",\n        \"has_active_inventory_integration\": true,\n        \"enable_credit_card\": true\n      },\n      \"store\": \"James Bike Shop\",\n      \"order_type\": \"Local_delivery\",\n      \"order_status\": \"Need To Confirm\",\n      \"internal_order_number\": \"#828182\",\n      \"ecommerce_id\": \"#28927\",\n      \"order_number\": \"#SE0028362\",\n      \"discount_code\": \"DOLLARSOFF\",\n      \"verification_code\": \"PASJ2\",\n      \"risk_level\": \"normal\",\n      \"requested_ship_date\": null,\n      \"shipped_date\": null,\n      \"delivery_date\": null,\n      \"fulfillment_status\": \"unfulfilled\",\n      \"shipping_lines\": [\n        {\n          \"service\": null,\n          \"price\": \"120.00\",\n          \"discount\": \"0.00\",\n          \"discounted_price\": \"120.00\",\n          \"total_tax\": \"0.00\"\n        }\n      ],\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290838\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"10\",\n          \"quantity_to_fulfill\": \"10\",\n          \"total_discount\": \"100.00\",\n          \"price\": \"250.00\",\n          \"subtotal\": \"2500.00\",\n          \"tax_amount\": \"40.00\",\n          \"total_price\": \"2400.00\",\n          \"inventory_transfer_id\": \"null\",\n          \"estimated_ship_date\": \"null\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        }\n      ],\n      \"fulfillments\": [],\n      \"refunds\": [],\n      \"dealer_order\": null,\n      \"payment_method\": \"Stripe\",\n      \"payment_status\": \"Paid\",\n      \"credit_term\": null,\n      \"currency_code\": \"USD\",\n      \"total_discount\": \"100.00\",\n      \"subtotal\": \"2440.00\",\n      \"total_shipping\": \"120.00\",\n      \"total_tax\": \"150.00\",\n      \"total_price\": \"2710.00\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-04-13 05:06:37\"\n    }\n  ]\n}\n"}],"_postman_id":"8e23ba3d-c1db-4797-a438-4e2c6cd5b3ac"},{"name":"/orders/:order_id","id":"37d92ebb-0e6d-436b-89c0-6e451440f07c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id","description":"<p>Get details of a specific order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6099e988-77a5-458e-94ed-d33fd1f87578","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"239c9dfc-5b32-4e1f-939e-ea9d60b19300","name":"Get details for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"1290837\",\n    \"customer\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"email_address\": \"aham@email.com\",\n      \"accepts_marketing\": false,\n      \"order_count\": \"5\",\n      \"total_spent\": \"482.72\",\n      \"average_order\": \"96.54\"\n    },\n    \"billing_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"shipping_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"retailer\": {\n      \"id\": \"25600\",\n      \"account_id\": \"81772832\",\n      \"status\": \"Connected\",\n      \"company_name\": \"Company A\",\n      \"address1\": \"4094 Garfield Road\",\n      \"address2\": \"Suite 309\",\n      \"city\": \"Chicago\",\n      \"state_code\": \"IL\",\n      \"zip_code\": \"61614\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.853196\",\n      \"longitude\": \"-87.601958\",\n      \"pricing_tier_id\": \"7283\",\n      \"sales_reps\": [\n        \"28767\",\n        \"82632\"\n      ],\n      \"credit_terms\": [\n        \"532\",\n        \"455\"\n      ],\n      \"territory\": \"West\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\",\n      \"dealer_protect_radius\": \"50\",\n      \"billing_email\": \"billing@companya.com\",\n      \"billing_company\": \"Company A\",\n      \"credit_limit\": \"5000\",\n      \"has_active_inventory_integration\": true,\n      \"enable_credit_card\": true\n    },\n    \"store\": \"James Bike Shop\",\n    \"order_type\": \"wholesale\",\n    \"order_status\": \"Shipped\",\n    \"internal_order_number\": \"#828182\",\n    \"ecommerce_id\": \"#92734\",\n    \"order_number\": \"#SE0019257\",\n    \"discount_code\": null,\n    \"verification_code\": \"AJD47S\",\n    \"risk_level\": \"normal\",\n    \"requested_ship_date\": \"2020-04-20 00:00:00\",\n    \"shipped_date\": null,\n    \"delivery_date\": null,\n    \"fulfillment_status\": \"fulfilled\",\n    \"shipping_lines\": [\n      {\n        \"service\": null,\n        \"price\": \"120.00\",\n        \"discount\": \"0.00\",\n        \"discounted_price\": \"120.00\",\n        \"total_tax\": \"0.00\"\n      }\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"5\",\n        \"quantity_to_fulfill\": \"5\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"250.00\",\n        \"tax_amount\": \"20.00\",\n        \"total_price\": \"1270.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"6\",\n        \"quantity_to_fulfill\": \"3\",\n        \"total_discount\": \"10.00\",\n        \"price\": \"150.00\",\n        \"tax_amount\": \"15.00\",\n        \"total_price\": \"455.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"fulfillments\": [\n      {\n        \"id\": \"128273\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA972372788US\",\n        \"items\": [\n          {\n            \"id\": \"128974\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"2\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"128274\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA328517597US\",\n        \"items\": [\n          {\n            \"id\": \"128975\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"3\"\n          },\n          {\n            \"id\": \"927832\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"fulfilled_quantity\": \"3\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"refunds\": [\n      {\n        \"id\": \"23732\",\n        \"items\": [\n          {\n            \"id\": \"82933\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"quantity_refunded\": \"3\",\n            \"price\": \"150.00\",\n            \"total_refunded\": \"450.00\"\n          }\n        ],\n        \"amount\": \"450.00\",\n        \"shipping_amount\": \"0.00\",\n        \"tax_amount\": \"0.00\",\n        \"created_at\": \"2020-04-13 12:30:09\"\n      }\n    ],\n    \"dealer_order\": {\n      \"id\": \"242634\",\n      \"subtotal\": \"1550.50\",\n      \"total_price\": \"1695.57\",\n      \"total_discount\": \"100.00\",\n      \"total_shipping\": \"50.00\",\n      \"total_tax\": \"195.07\",\n      \"total_refund\": \"35.56\",\n      \"net_total\": \"1660.01\",\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"5\",\n          \"quantity_to_fulfill\": \"5\",\n          \"total_discount\": \"0.00\",\n          \"price\": \"250.00\",\n          \"subtotal\": \"1250.00\",\n          \"tax_amount\": \"20.00\",\n          \"total_price\": \"1250.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"562363\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"4223457\",\n          \"variant_id\": \"3452346\",\n          \"sku\": \"233453465\",\n          \"upc\": \"342655343\",\n          \"title\": \"product2\",\n          \"quantity\": \"6\",\n          \"quantity_to_fulfill\": \"3\",\n          \"total_discount\": \"10.00\",\n          \"price\": \"150.00\",\n          \"subtotal\": \"900.00\",\n          \"tax_amount\": \"15.00\",\n          \"total_price\": \"890.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:32:53\",\n          \"updated_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"fulfillments\": [\n        {\n          \"id\": \"128273\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA972372788US\",\n          \"items\": [\n            {\n              \"id\": \"128974\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"2\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"128274\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA328517597US\",\n          \"items\": [\n            {\n              \"id\": \"128975\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"3\"\n            },\n            {\n              \"id\": \"927832\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"fulfilled_quantity\": \"3\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"refunds\": [\n        {\n          \"id\": \"23732\",\n          \"items\": [\n            {\n              \"id\": \"82933\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"quantity_refunded\": \"3\",\n              \"price\": \"150.00\",\n              \"total_refunded\": \"450.00\"\n            }\n          ],\n          \"amount\": \"450.00\",\n          \"shipping_amount\": \"0.00\",\n          \"tax_amount\": \"0.00\",\n          \"created_at\": \"2020-04-13 12:30:09\"\n        }\n      ],\n      \"created_at\": \"2020-04-13 12:32:53\",\n      \"updated_at\": \"2020-04-13 12:32:53\"\n    },\n    \"payment_method\": \"Stripe\",\n    \"payment_status\": \"Paid\",\n    \"credit_term\": null,\n    \"currency_code\": \"USD\",\n    \"total_discount\": \"0.00\",\n    \"subtotal\": \"1725.00\",\n    \"total_shipping\": \"120.00\",\n    \"total_tax\": \"150.00\",\n    \"total_price\": \"1995.00\",\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n  }\n}\n"}],"_postman_id":"37d92ebb-0e6d-436b-89c0-6e451440f07c"},{"name":"/orders","id":"943740cf-e800-4e03-bdb9-fe52d7b9214f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"confirm_pricing\": true, //Optional.  When false order will remain in 'Purchase Order' status and be open for modification to items.\n  // When true or omitted, the order will be confirmed, closing the items for modification.\n  \"shipping_service\": \"UPS Ground\", // Optional. Accepted only when confirming pricing.\n  \"order_type\": \"wholesale\", //Required.  Must be 'wholesale'.\n  \"retailer_id\": 25, //Required. Must be valid ID of a retailer.\n  \"requested_ship_date\": \"2021-09-29\", // Optional. Must be in the format \"YYYY-MM-DD\".\n  \"total_shipping\": 200.00, // Optional. Integer or decimal number representing the cost of shipping.  If omitted shipping will be calculated based on user settings.\n  \"purchase_order_number\": \"PO#0029\", // Optional.\n  \"currency_code\": \"USD\", // Optional. Must be a valid currency code. If this is provided, \"price\" must be provided for all \"order_items\" elements.\n  \"notes\": \"\", // Optional.\n  \"credit_term_id\": 23575, //Optional.  Will create an order on credit for the retailer with the provided credit term.  payment_method for the order will be 'credit' rather than 'external'.\n  \"shipping_address\": { // Optional,  If omitted the order will be shipped to the retailers configured address. If included, you must provide the required fields below.\n    \"email\": \"customer@shipearly.com\", // Required.\n    \"first_name\": \"James\", // Required.\n    \"last_name\": \"Jameson\", // Required.\n    \"company_name\": \"Jameson and Sons\", // Optional.\n    \"address1\": \"454 Jim St.\", // Required.\n    \"address2\": \"\", // Optional.\n    \"city\": \"Jamestown\", // Required.\n    \"state\": \"New York\", // Required. Must be a valid state name\n    \"country\": \"USA\", // Required. Must be a valid country name\n    \"zip_code\": \"10027\", // Required.\n    \"phone\": \"1-800-123-4567\" // Required.\n  },\n  \"order_items\": [ // Required.\n    {\n      \"variant_id\": 36804550000803, // Required.\n      \"warehouse_id\": 4, // Required.\n      \"quantity\": 10, // Required.  The variant must have inventory available to satisfy this quantity.\n      \"price\": 10.50, // Optional. If omitted, Price will be determined using the provided \"retailer_id\" and configured dealer tier data.\n      \"inventory_transfer_id\": null // Optional.  Must be a valid inventory_transfer_id.  The inventory transfer must have enough available quantity to satisfy the provided \"quantity\".\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/orders","description":"<p>Create an order.</p>\n<p>Only wholesale B2B orders can be placed through the API.  When creating an order you must provide a valid retailer and order items.  There are also optional fields that can be used when creating an order.  Some optional fields will be filled by configured values if omitted.  If omitting optional fields, ensure that retailer and dealer tier data is configured sufficiently. The example request body below provides specifics on what fields are optional and how they will behave if omitted.</p>\n<p>The <code>confirm_pricing</code> request body field can be used to confirm the order thereby closing the items from modification.  This can be set to false in the case where items may be added, removed, or modified before the order is fulfilled.  When the order is ready to be fulfilled, you can confirm the order and proceed with the fulfillment workflow (for <a href=\"#868db896-c5f5-4ced-9b23-0b79c16593ce\">Orders</a> or <a href=\"#af8da455-5d1f-43ca-90c4-1f38cde7e654\">Dealer Orders</a>).</p>\n<p>In the case of a bad request, the response will return a 400 code and information about why.  For example, if <code>currency_code</code> is not valid or a variant does not have enought inventory remaining to satisfy the order quantity, The response will indicate so.</p>\n<p>A successful request will return the new order object ready to be fulfilled.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c7c3351f-8808-4a66-94ef-17bed9015677","name":"Create an order.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"confirm_pricing\": true,\n    \"order_type\": \"wholesale\",\n    \"retailer_id\": 25600,\n    \"requested_ship_date\": \"\",\n    \"total_shipping\": 200,\n    \"purchase_order_number\": \"PO#0001\",\n    \"currency_code\": \"USD\",\n    \"notes\": \"API NOTES TEST\" ,\n    \"credit_term_id\": 23575,\n    \"shipping_address\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"company_name\": \"AHam Industries\",\n        \"address1\": \"2702 Columbia Boulevard\",\n        \"address2\": null,\n        \"city\": \"Baltimore\",\n        \"state\": \"Maryland\",\n        \"country\": \"United States\",\n        \"zip_code\": \"21202\"\n    },\n    \"order_items\": [\n        {\n            \"variant_id\": 891272,\n            \"warehouse_id\": 4,\n            \"quantity\": 10,\n            \"price\": 10.50,\n            \"inventory_transfer_id\": null\n        },\n        {\n            \"variant_id\": 3452346,\n            \"warehouse_id\": 4,\n            \"quantity\": 5,\n            \"price\": 20.25,\n            \"inventory_transfer_id\": 14\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"1290837\",\n    \"purchase_order_number\": \"PO#0001\",\n    \"order_type\": \"wholesale\",\n    \"order_status\": \"Processing\",\n    \"internal_order_number\": null,\n    \"ecommerce_id\": null,\n    \"order_number\": \"#SE0019257\",\n    \"discount_code\": \"\",\n    \"verification_code\": \"\",\n    \"risk_level\": \"not_assessed\",\n    \"requested_ship_date\": \"2021-09-30\",\n    \"shipped_date\": null,\n    \"delivery_date\": null,\n    \"fulfillment_status\": \"unfulfilled\",\n    \"credit_term_id\": 23575,\n    \"credit_term\": \"Net 45\",\n    \"payment_method\": \"credit\",\n    \"payment_status\": \"Paid\",\n    \"currency_code\": \"USD\",\n    \"total_discount\": \"0.00\",\n    \"subtotal\": \"206.25\",\n    \"total_shipping\": \"200.00\",\n    \"total_tax\": \"35.00\",\n    \"total_price\": \"441.25\",\n    \"created_at\": \"2020-04-13 12:31:53\",\n    \"updated_at\": \"2020-04-13 12:31:53\",\n    \"billing_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"shipping_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"retailer\": {\n      \"id\": \"25600\",\n      \"account_id\": \"81772832\",\n      \"status\": \"Connected\",\n      \"company_name\": \"Company A\",\n      \"address1\": \"4094 Garfield Road\",\n      \"address2\": \"Suite 309\",\n      \"city\": \"Chicago\",\n      \"state_code\": \"IL\",\n      \"zip_code\": \"61614\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.853196\",\n      \"longitude\": \"-87.601958\",\n      \"pricing_tier_id\": \"7283\",\n      \"sales_reps\": [\n        \"28767\",\n        \"82632\"\n      ],\n      \"credit_terms\": [\n        \"532\",\n        \"455\"\n      ],\n      \"territory\": \"West\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\",\n      \"dealer_protect_radius\": \"50\",\n      \"billing_email\": \"billing@companya.com\",\n      \"billing_company\": \"Company A\",\n      \"credit_limit\": \"5000\",\n      \"has_active_inventory_integration\": true,\n      \"enable_credit_card\": true\n    },\n    \"shipping_lines\": [\n      {\n        \"service\": null,\n        \"price\": \"200.00\",\n        \"discount\": \"0.00\",\n        \"discounted_price\": \"200.00\",\n        \"total_tax\": \"0.00\"\n      }\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"10\",\n        \"quantity_to_fulfill\": \"10\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"10.50\",\n        \"tax_amount\": \"20.00\",\n        \"total_price\": \"125.00\",\n        \"inventory_transfer_id\": null,\n        \"estimated_ship_date\": \"\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"5\",\n        \"quantity_to_fulfill\": \"5\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"20.25\",\n        \"tax_amount\": \"15.00\",\n        \"total_price\": \"116.25\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      }\n    ],\n    \"fulfillments\": [],\n    \"refunds\": [],\n    \"customer\": null,\n    \"dealer_order\": {\n      \"id\": \"345125\",\n      \"total_discount\": \"0.00\",\n      \"subtotal\": \"206.25\",\n      \"total_shipping\": \"200.00\",\n      \"total_tax\": \"35.00\",\n      \"total_price\": \"441.25\",\n      \"fulfillment_status\": \"unfulfilled\",\n      \"created_at\": \"2020-04-13 12:31:53\",\n      \"updated_at\": \"2020-04-13 12:31:53\",\n      \"shipping_lines\": [\n        {\n          \"service\": null,\n          \"price\": \"200.00\",\n          \"discount\": \"0.00\",\n          \"discounted_price\": \"200.00\",\n          \"total_tax\": \"0.00\"\n        }\n      ],\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"10\",\n          \"quantity_to_fulfill\": \"10\",\n          \"total_discount\": \"0.00\",\n          \"price\": \"10.50\",\n          \"tax_amount\": \"20.00\",\n          \"total_price\": \"125.00\",\n          \"inventory_transfer_id\": null,\n          \"estimated_ship_date\": \"\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"562363\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"4223457\",\n          \"variant_id\": \"3452346\",\n          \"sku\": \"233453465\",\n          \"upc\": \"342655343\",\n          \"title\": \"product2\",\n          \"quantity\": \"5\",\n          \"quantity_to_fulfill\": \"5\",\n          \"total_discount\": \"0.00\",\n          \"price\": \"20.25\",\n          \"tax_amount\": \"15.00\",\n          \"total_price\": \"116.25\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        }\n      ],\n      \"fulfillments\": [],\n      \"refunds\": [],\n      \"total_refund\": \"0.00\",\n      \"net_total\": \"441.25\"\n    }\n  }\n}"},{"id":"8d3595eb-68f1-4dcc-b947-2f28154cd106","name":"Create an unconfirmed order.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"confirm_pricing\": false,\n    \"order_type\": \"wholesale\",\n    \"retailer_id\": 25600,\n    \"requested_ship_date\": \"\",\n    \"total_shipping\": 200,\n    \"purchase_order_number\": \"PO#0001\",\n    \"currency_code\": \"USD\",\n    \"notes\": \"API NOTES TEST\" ,\n    \"credit_term_id\": 23575,\n    \"shipping_address\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"company_name\": \"AHam Industries\",\n        \"address1\": \"2702 Columbia Boulevard\",\n        \"address2\": null,\n        \"city\": \"Baltimore\",\n        \"state\": \"Maryland\",\n        \"country\": \"United States\",\n        \"zip_code\": \"21202\"\n    },\n    \"order_items\": [\n        {\n            \"variant_id\": 891272,\n            \"warehouse_id\": 4,\n            \"quantity\": 10,\n            \"price\": 10.50,\n            \"inventory_transfer_id\": null\n        },\n        {\n            \"variant_id\": 3452346,\n            \"warehouse_id\": 4,\n            \"quantity\": 5,\n            \"price\": 20.25,\n            \"inventory_transfer_id\": 14\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"1290837\",\n    \"purchase_order_number\": \"PO#0001\",\n    \"order_type\": \"wholesale\",\n    \"order_status\": \"Purchase Order\",\n    \"internal_order_number\": null,\n    \"ecommerce_id\": null,\n    \"order_number\": \"#SE0019257\",\n    \"discount_code\": \"\",\n    \"verification_code\": \"\",\n    \"risk_level\": \"not_assessed\",\n    \"requested_ship_date\": \"2021-09-30\",\n    \"shipped_date\": null,\n    \"delivery_date\": null,\n    \"fulfillment_status\": \"unfulfilled\",\n    \"credit_term_id\": 23575,\n    \"credit_term\": \"Net 45\",\n    \"payment_method\": \"credit\",\n    \"payment_status\": \"Paid\",\n    \"currency_code\": \"USD\",\n    \"total_discount\": \"0.00\",\n    \"subtotal\": \"206.25\",\n    \"total_shipping\": \"200.00\",\n    \"total_tax\": \"35.00\",\n    \"total_price\": \"441.25\",\n    \"created_at\": \"2020-04-13 12:31:53\",\n    \"updated_at\": \"2020-04-13 12:31:53\",\n    \"billing_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"shipping_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"retailer\": {\n      \"id\": \"25600\",\n      \"account_id\": \"81772832\",\n      \"status\": \"Connected\",\n      \"company_name\": \"Company A\",\n      \"address1\": \"4094 Garfield Road\",\n      \"address2\": \"Suite 309\",\n      \"city\": \"Chicago\",\n      \"state_code\": \"IL\",\n      \"zip_code\": \"61614\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.853196\",\n      \"longitude\": \"-87.601958\",\n      \"pricing_tier_id\": \"7283\",\n      \"sales_reps\": [\n        \"28767\",\n        \"82632\"\n      ],\n      \"credit_terms\": [\n        \"532\",\n        \"455\"\n      ],\n      \"territory\": \"West\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\",\n      \"dealer_protect_radius\": \"50\",\n      \"billing_email\": \"billing@companya.com\",\n      \"billing_company\": \"Company A\",\n      \"credit_limit\": \"5000\",\n      \"has_active_inventory_integration\": true,\n      \"enable_credit_card\": true\n    },\n    \"shipping_lines\": [\n      {\n        \"service\": null,\n        \"price\": \"200.00\",\n        \"discount\": \"0.00\",\n        \"discounted_price\": \"200.00\",\n        \"total_tax\": \"0.00\"\n      }\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"10\",\n        \"quantity_to_fulfill\": \"10\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"10.50\",\n        \"tax_amount\": \"20.00\",\n        \"total_price\": \"125.00\",\n        \"inventory_transfer_id\": null,\n        \"estimated_ship_date\": \"\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"5\",\n        \"quantity_to_fulfill\": \"5\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"20.25\",\n        \"tax_amount\": \"15.00\",\n        \"total_price\": \"116.25\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      }\n    ],\n    \"fulfillments\": [],\n    \"refunds\": [],\n    \"customer\": null,\n    \"dealer_order\": null\n  }\n}"}],"_postman_id":"943740cf-e800-4e03-bdb9-fe52d7b9214f"},{"name":"/orders/:order_id","id":"446f212a-083d-4a4c-b61c-467cd03828f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"confirm_pricing\": true, //Optional.  When false order will remain in 'Purchase Order' status and be open for modification to items.\n  // When true or omitted, the order will be confirmed, closing the items for modification.\n  \"shipping_service\": \"UPS Ground\", // Optional. Accepted only when confirming pricing.\n  \"requested_ship_date\": \"2021-09-29\", // Optional. Must be in the format \"YYYY-MM-DD\".\n  \"total_shipping\": 200.00, // Optional. Integer or decimal number representing the cost of shipping.  If omitted shipping will be calculated based on user settings.\n  \"internal_order_number\": \"IN#000293764\", // Optional.\n  \"credit_term_id\": 64537, // Optional. Only editable when \"payment_method\": \"credit\" and before the order is confirmed.\n  \"order_items\": [ // Required.\n    {\n      \"id\": 167935, // Required.\n      \"warehouse_id\": 41241, // Required.\n      \"quantity\": 10, // Required.  The variant must have inventory available to satisfy this quantity.\n      \"price\": 10.50, // Optional. If omitted, Price will be determined using the provided \"retailer_id\" and configured dealer tier data.\n      \"inventory_transfer_id\": null // Optional.  Must be a valid inventory_transfer_id.  The inventory transfer must have enough available quantity to satisfy the provided \"quantity\".\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/orders/:order_id","description":"<p>Edit details of a specific order</p>\n<p>From here you can edit an orders <code>internal_order_number</code> or <code>requested_ship_date</code>.  These can be edited at any time.</p>\n<p>You can also edit the orders items by modifying <code>quantity</code>, <code>price</code>, or <code>inventory_transfer_id</code>.</p>\n<p>To edit an item, you can include an <code>order_items</code> key that is a list of objects with a key of <code>id</code>. This <code>id</code> is the id of the order item you wish to modify. An example request body can be seen in the example request.</p>\n<p>Only an order with <code>order_type: wholesale</code> can have its items modified. This is further restricted by the status of the wholesale order. When the wholesale order has <code>\"order_status\": (\"Purchase Order\"|\"Processing\")</code>, <code>inventory_transfer_id</code> can be modified. Only when the <code>\"order_status\": \"Purchase Order\"</code> can <code>quantity</code> or <code>price</code> be modified. When a request would attempt to modify these fields outside these conditions it will be indicated in the response and nothing will be updated.</p>\n<p>When an order is ready conmplete and no mare modifications will be made, you can confirm the order with <code>\"confirm_pricing\": true</code>.  This will prevent modification to the order with the exception of <code>internal_order_number</code> and <code>requested_ship_date</code>.</p>\n<p><code>inventory_transfer_id</code> must be the id of a valid inventory transfer with quantity equal to or greater than the quantity of the order item. If the quantity of the order item exceeds the quantity available on the inventory transfer it will be indicated in the response and nothing will be updated.  This restriction also applies to when the quantity is modified.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"c02685a5-27da-4fc3-8d93-09b7c728d359","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"495652c7-5705-4b42-a88a-6ce086703499","name":"Edit details for a specific order","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"1290837\",\n    \"customer\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"email_address\": \"aham@email.com\",\n      \"accepts_marketing\": false,\n      \"order_count\": \"5\",\n      \"total_spent\": \"482.72\",\n      \"average_order\": \"96.54\"\n    },\n    \"billing_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"shipping_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"retailer\": {\n      \"id\": \"25600\",\n      \"account_id\": \"81772832\",\n      \"status\": \"Connected\",\n      \"company_name\": \"Company A\",\n      \"address1\": \"4094 Garfield Road\",\n      \"address2\": \"Suite 309\",\n      \"city\": \"Chicago\",\n      \"state_code\": \"IL\",\n      \"zip_code\": \"61614\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.853196\",\n      \"longitude\": \"-87.601958\",\n      \"pricing_tier_id\": \"7283\",\n      \"sales_reps\": [\n        \"28767\",\n        \"82632\"\n      ],\n      \"credit_terms\": [\n        \"532\",\n        \"455\"\n      ],\n      \"territory\": \"West\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\",\n      \"dealer_protect_radius\": \"50\",\n      \"billing_email\": \"billing@companya.com\",\n      \"billing_company\": \"Company A\",\n      \"credit_limit\": \"5000\",\n      \"has_active_inventory_integration\": true,\n      \"enable_credit_card\": true\n    },\n    \"store\": \"James Bike Shop\",\n    \"order_type\": \"wholesale\",\n    \"order_status\": \"Purchase Order\",\n    \"internal_order_number\": \"IN#000293764\",\n    \"ecommerce_id\": \"#92734\",\n    \"order_number\": \"#SE0019257\",\n    \"discount_code\": null,\n    \"verification_code\": \"AJD47S\",\n    \"risk_level\": \"normal\",\n    \"requested_ship_date\": \"2021-12-31 00:00:00\",\n    \"shipped_date\": null,\n    \"delivery_date\": null,\n    \"fulfillment_status\": \"unfulfilled\",\n    \"shipping_lines\": [\n      {\n        \"service\": null,\n        \"price\": \"120.00\",\n        \"discount\": \"0.00\",\n        \"discounted_price\": \"120.00\",\n        \"total_tax\": \"1.92\"\n      }\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"10\",\n        \"quantity_to_fulfill\": \"10\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"350.00\",\n        \"subtotal\": \"3500.00\",\n        \"tax_amount\": \"56.00\",\n        \"total_price\": \"3500.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"6\",\n        \"quantity_to_fulfill\": \"3\",\n        \"total_discount\": \"10.00\",\n        \"price\": \"150.00\",\n        \"subtotal\": \"900.00\",\n        \"tax_amount\": \"14.24\",\n        \"total_price\": \"890.00\",\n        \"inventory_transfer_id\": \"15\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"fulfillments\": [],\n    \"refunds\": [],\n    \"dealer_order\": null,\n    \"payment_method\": \"Stripe\",\n    \"payment_status\": \"On Hold\",\n    \"credit_term\": null,\n    \"currency_code\": \"USD\",\n    \"total_discount\": \"10.00\",\n    \"subtotal\": \"4400.00\",\n    \"total_shipping\": \"120.00\",\n    \"total_tax\": \"72.16\",\n    \"total_price\": \"4582.16\",\n    \"total_refund\": \"0.00\",\n    \"net_total\": \"4582.16\",\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n  }\n}\n"}],"_postman_id":"446f212a-083d-4a4c-b61c-467cd03828f5"},{"name":"/orders/:order_id/items","id":"bbf18102-8974-4d61-83cd-af9697607c8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/items?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all items for a specific order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","items"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"55c662d8-3d6c-421e-883b-55bee034e35a","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"2125bf4d-8121-4af3-9de5-75b47dafc288","name":"Get all items for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/items","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","items"],"query":[{"key":"page","value":"1","disabled":true},{"key":"limit","value":"50","disabled":true},{"key":"sort","value":"-updated_at","disabled":true},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00","disabled":true}],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"167935\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"891272\",\n      \"variant_id\": \"891272\",\n      \"sku\": \"182820382\",\n      \"upc\": \"912822123\",\n      \"title\": \"product1\",\n      \"quantity\": \"5\",\n      \"quantity_to_fulfill\": \"5\",\n      \"total_discount\": \"0.00\",\n      \"price\": \"250.00\",\n      \"tax_amount\": \"20.00\",\n      \"total_price\": \"1270.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:31:53\",\n      \"updated_at\": \"2020-04-13 12:31:53\"\n    },\n    {\n      \"id\": \"562363\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"4223457\",\n      \"variant_id\": \"3452346\",\n      \"sku\": \"233453465\",\n      \"upc\": \"342655343\",\n      \"title\": \"product2\",\n      \"quantity\": \"6\",\n      \"quantity_to_fulfill\": \"3\",\n      \"total_discount\": \"10.00\",\n      \"price\": \"150.00\",\n      \"tax_amount\": \"15.00\",\n      \"total_price\": \"455.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:32:53\",\n      \"updated_at\": \"2020-04-13 12:32:53\"\n    }\n  ]\n}\n"}],"_postman_id":"bbf18102-8974-4d61-83cd-af9697607c8d"},{"name":"/orders/:order_id/items/:order_item_id","id":"c592b42f-b34d-4607-a6e2-4c6a5cbbe094","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/items/:order_item_id","description":"<p>Get a specific item of an order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","items",":order_item_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"26ba51a0-9c47-4bd0-991c-b6721a89e846","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"7e15413d-5d0c-4046-9334-73395f7ba4a8","description":{"content":"<p>(Required) Id of an order item.</p>\n","type":"text/plain"},"type":"any","value":"562363","key":"order_item_id"}]}},"response":[{"id":"cbfe4d66-ff9f-43de-b0ab-51f7f3f21838","name":"/orders/:order_id/items/:order_item_id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/items/:order_item_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","items",":order_item_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"order_item_id","value":"562363"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"562363\",\n    \"order_id\": \"1290837\",\n    \"warehouse_id\": \"5231\",\n    \"product_id\": \"4223457\",\n    \"variant_id\": \"3452346\",\n    \"sku\": \"233453465\",\n    \"upc\": \"342655343\",\n    \"title\": \"product2\",\n    \"quantity\": \"6\",\n    \"quantity_to_fulfill\": \"3\",\n    \"total_discount\": \"10.00\",\n    \"price\": \"150.00\",\n    \"tax_amount\": \"15.00\",\n    \"total_price\": \"455.00\",\n    \"inventory_transfer_id\": \"14\",\n    \"estimated_ship_date\": \"2021-09-15\",\n    \"created_at\": \"2020-04-13 12:32:53\",\n    \"updated_at\": \"2020-04-13 12:32:53\"\n  }\n}\n"}],"_postman_id":"c592b42f-b34d-4607-a6e2-4c6a5cbbe094"},{"name":"/orders/:order_id/refunds","id":"f622743e-be47-408a-a052-6991c4c87d21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all refunds for an order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","refunds"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"b81871a0-5c0b-4452-8d49-69b8b5a7c3b7","type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"1639b009-9c1f-4e20-9713-4b7f367c252b","name":"Get all refunds for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","refunds"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 23732,\n      \"items\": [\n        {\n          \"id\": 82933,\n          \"product_id\": 43452,\n          \"variant_id\": 65562,\n          \"sku\": \"82938278123\",\n          \"upc\": \"92000182633\",\n          \"title\": \"product1\",\n          \"quantity_refunded\": 4,\n          \"price\": 200.5,\n          \"total_refunded\": 802\n        }\n      ],\n      \"amount\": 802,\n      \"shipping_amount\": 0,\n      \"tax_amount\": 0,\n      \"created_at\": \"2020-04-13 12:30:09\"\n    },\n    {\n      \"id\": 23733,\n      \"items\": [\n        {\n          \"id\": 82842,\n          \"product_id\": 43453,\n          \"variant_id\": 65564,\n          \"sku\": \"29481241241\",\n          \"upc\": \"63627844562\",\n          \"title\": \"product2\",\n          \"quantity_refunded\": 2,\n          \"price\": 25,\n          \"total_refunded\": 50\n        }\n      ],\n      \"amount\": 75,\n      \"shipping_amount\": 15,\n      \"tax_amount\": 10,\n      \"created_at\": \"2020-04-13 12:30:09\"\n    }\n  ]\n}"}],"_postman_id":"f622743e-be47-408a-a052-6991c4c87d21"},{"name":"/orders/:order_id/refunds/:refund_id","id":"3ea0a255-aeac-4199-afe7-dfa7ff770d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds/:refund_id","description":"<p>Get a specific refund of an order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","refunds",":refund_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"14f1c10b-66de-426d-b36c-d5d3ef11f48a","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"d26eb353-b405-424f-9b7c-1ec748f0566a","description":{"content":"<p>(Required) Id of a refund.</p>\n","type":"text/plain"},"type":"any","value":"23733","key":"refund_id"}]}},"response":[{"id":"e3622574-9664-4963-80f6-a59a4192e184","name":"Get a specific refund for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds/:refund_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","refunds",":refund_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"refund_id","value":"23733"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 23733,\n    \"items\": [\n    {\n        \"id\": 82842,\n        \"product_id\": 43453,\n        \"variant_id\": 65564,\n        \"sku\": \"29481241241\",\n        \"upc\": \"63627844562\",\n        \"title\": \"product2\",\n        \"quantity_refunded\": 2,\n        \"price\": 25,\n        \"total_refunded\": 50\n    }\n    ],\n    \"amount\": 75,\n    \"shipping_amount\": 15,\n    \"tax_amount\": 10,\n    \"created_at\": \"2020-04-13 12:30:09\"\n}"}],"_postman_id":"3ea0a255-aeac-4199-afe7-dfa7ff770d56"},{"name":"/orders/:order_id/dealer_order","id":"d7d87e44-785a-43d9-8afb-3af7a6f99863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"ef17b70d-c7f2-49e2-959e-f6e42071d003","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"5e1c864d-7222-4f4a-8ad0-c0c93eee5aea","name":"Get dealer order associated with an order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"242634\",\n    \"subtotal\": \"1550.50\",\n    \"total_price\": \"1695.57\",\n    \"total_discount\": \"100.00\",\n    \"total_shipping\": \"50.00\",\n    \"total_tax\": \"195.07\",\n    \"total_refund\": \"35.56\",\n    \"net_total\": \"1660.01\",\n    \"shipping_lines\": [\n      {\n        \"service\": null,\n        \"price\": \"50.00\",\n        \"discount\": \"0.00\",\n        \"discounted_price\": \"50.00\",\n        \"total_tax\": \"0.00\"\n      }\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"5\",\n        \"quantity_to_fulfill\": \"5\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"250.00\",\n        \"subtotal\": \"1250.00\",\n        \"tax_amount\": \"20.00\",\n        \"total_price\": \"1250.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"6\",\n        \"quantity_to_fulfill\": \"3\",\n        \"total_discount\": \"10.00\",\n        \"price\": \"150.00\",\n        \"subtotal\": \"900.00\",\n        \"tax_amount\": \"15.00\",\n        \"total_price\": \"890.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"fulfillments\": [\n      {\n        \"id\": \"128273\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA972372788US\",\n        \"items\": [\n          {\n            \"id\": \"128974\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"2\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"128274\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA328517597US\",\n        \"items\": [\n          {\n            \"id\": \"128975\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"3\"\n          },\n          {\n            \"id\": \"927832\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"fulfilled_quantity\": \"3\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"refunds\": [\n      {\n        \"id\": \"23732\",\n        \"items\": [\n          {\n            \"id\": \"82933\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"quantity_refunded\": \"3\",\n            \"price\": \"150.00\",\n            \"total_refunded\": \"450.00\"\n          }\n        ],\n        \"amount\": \"450.00\",\n        \"shipping_amount\": \"0.00\",\n        \"tax_amount\": \"0.00\",\n        \"created_at\": \"2020-04-13 12:30:09\"\n      }\n    ],\n    \"created_at\": \"2020-04-13 12:32:53\",\n    \"updated_at\": \"2020-04-13 12:32:53\"\n  }\n}\n"}],"_postman_id":"d7d87e44-785a-43d9-8afb-3af7a6f99863"},{"name":"/orders/:order_id/dealer_order/items","id":"b9dbd3bc-c853-4b7a-be11-390789861fc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","items"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"921c47bc-a912-4dbc-87a8-75666b9feb30","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"eac08b9c-9f1b-47ce-acb8-dd8384e32f0f","name":"Get items on a dealer order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","items"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"167935\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"891272\",\n      \"variant_id\": \"891272\",\n      \"sku\": \"182820382\",\n      \"upc\": \"912822123\",\n      \"title\": \"product1\",\n      \"quantity\": \"5\",\n      \"quantity_to_fulfill\": \"5\",\n      \"total_discount\": \"0.00\",\n      \"price\": \"250.00\",\n      \"subtotal\": \"1250.00\",\n      \"tax_amount\": \"20.00\",\n      \"total_price\": \"1250.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:31:53\",\n      \"updated_at\": \"2020-04-13 12:31:53\"\n    },\n    {\n      \"id\": \"562363\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"4223457\",\n      \"variant_id\": \"3452346\",\n      \"sku\": \"233453465\",\n      \"upc\": \"342655343\",\n      \"title\": \"product2\",\n      \"quantity\": \"6\",\n      \"quantity_to_fulfill\": \"3\",\n      \"total_discount\": \"10.00\",\n      \"price\": \"150.00\",\n      \"subtotal\": \"900.00\",\n      \"tax_amount\": \"15.00\",\n      \"total_price\": \"890.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:32:53\",\n      \"updated_at\": \"2020-04-13 12:32:53\"\n    }\n  ]\n}\n"}],"_postman_id":"b9dbd3bc-c853-4b7a-be11-390789861fc7"},{"name":"/orders/:order_id/dealer_order/items/:dealer_order_item_id","id":"2b3783cf-9151-4ee0-9554-80d3afadc8dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items/:dealer_order_item_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","items",":dealer_order_item_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"a704068f-234b-46ac-af6b-1fb8a649c198","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"78cdcb86-bbd7-43c1-86c0-e25d90e8d434","description":{"content":"<p>(Required) Id of a dealer order item.</p>\n","type":"text/plain"},"type":"any","value":"167935","key":"dealer_order_item_id"}]}},"response":[{"id":"7e9fd914-c560-4c12-9057-95efe1cb0673","name":"Get a specific item of a dealer order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items/:dealer_order_item_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","items",":dealer_order_item_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"dealer_order_item_id","value":"167935"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"167935\",\n    \"order_id\": \"1290837\",\n    \"warehouse_id\": \"5231\",\n    \"product_id\": \"891272\",\n    \"variant_id\": \"891272\",\n    \"sku\": \"182820382\",\n    \"upc\": \"912822123\",\n    \"title\": \"product1\",\n    \"quantity\": \"5\",\n    \"quantity_to_fulfill\": \"5\",\n    \"total_discount\": \"0.00\",\n    \"price\": \"250.00\",\n    \"subtotal\": \"1250.00\",\n    \"tax_amount\": \"20.00\",\n    \"total_price\": \"1250.00\",\n    \"inventory_transfer_id\": \"14\",\n    \"estimated_ship_date\": \"2021-09-15\",\n    \"created_at\": \"2020-04-13 12:31:53\",\n    \"updated_at\": \"2020-04-13 12:31:53\"\n  }\n}\n"}],"_postman_id":"2b3783cf-9151-4ee0-9554-80d3afadc8dc"},{"name":"/orders/:order_id/dealer_order/refunds","id":"a65f77ed-4f07-47e8-8a61-67fa33c2f3ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","refunds"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"9f1297af-a66b-4a52-ad88-18b05bae2ac3","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"2e628511-96c5-4cee-ae6d-bcc928e0c793","name":"Get refunds of a dealer order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","refunds"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"23732\",\n            \"items\": [\n                {\n                    \"id\": \"82933\",\n                    \"product_id\": \"4624356\",\n                    \"variant_id\": \"3783456\",\n                    \"sku\": \"23457227\",\n                    \"upc\": \"2372373\",\n                    \"title\": \"product2\",\n                    \"quantity_refunded\": \"3\",\n                    \"price\": \"150.00\",\n                    \"total_refunded\": \"450.00\"\n                }\n            ],\n            \"amount\": \"450.00\",\n            \"shipping_amount\": \"0.00\",\n            \"tax_amount\": \"0.00\",\n            \"created_at\": \"2020-04-13 12:30:09\"\n        }\n    ]\n}"}],"_postman_id":"a65f77ed-4f07-47e8-8a61-67fa33c2f3ee"},{"name":"/orders/:order_id/dealer_order/refunds/:refund_id","id":"6e3942c7-9712-413d-84f4-cc2ddb45a3ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds/:refund_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","refunds",":refund_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"9831811c-3eab-4577-81a3-19b17656640d","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"4e4777a9-ea31-4b09-a6b9-9279cb124e39","description":{"content":"<p>(Required) Id of a dealer order refund.</p>\n","type":"text/plain"},"type":"any","value":"23732","key":"refund_id"}]}},"response":[{"id":"55e72159-3f86-47ce-830e-48acf65d3164","name":"Get specific refund of a dealer order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds/:refund_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","refunds",":refund_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"refund_id","value":"23732"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"23732\",\n        \"items\": [\n            {\n                \"id\": \"82933\",\n                \"product_id\": \"4624356\",\n                \"variant_id\": \"3783456\",\n                \"sku\": \"23457227\",\n                \"upc\": \"2372373\",\n                \"title\": \"product2\",\n                \"quantity_refunded\": \"3\",\n                \"price\": \"150.00\",\n                \"total_refunded\": \"450.00\"\n            }\n        ],\n        \"amount\": \"450.00\",\n        \"shipping_amount\": \"0.00\",\n        \"tax_amount\": \"0.00\",\n        \"created_at\": \"2020-04-13 12:30:09\"\n    }\n}"}],"_postman_id":"6e3942c7-9712-413d-84f4-cc2ddb45a3ae"}],"id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8","description":"<p>Give merchants new ways to receive, process, and manage their orders.</p>\n<p>Orders can be thought of as having two layers</p>\n<ol>\n<li>Order – Consumer Orders (Direct &amp; Retail Transactions)</li>\n<li>Dealer Order – Out of Stock Ship to Store Orders &amp; B2B Orders</li>\n</ol>\n<p><strong>Note:</strong> Order IDs are shared when an Order for a Retailer that is out of stock creates a Dealer Order.\nWhen an order has a dealer order, the fulfillment should be passed to the Dealer Order. The only orders that require fulfillment on the Orders endpoint are direct orders. These orders will have the order_type of <code>Sell_Direct</code> and need to be fulfilled (via <code>/order/:order_id/fulfillments</code>).</p>\n<p>For all other order types (<code>In_store</code>, <code>Local_delivery</code>, <code>Ship_store</code>, <code>wholesale</code>) the dealer order will need to be fulfilled via <code>/order/:order_id/dealer_order/fulfillments</code> </p>\n<p>When fulfilling any order type, the corresponding order_item_id values will need to be used to identify the items being fulfilled. \nIf a fulfillment is attempted at the incorrect URL, you will receive a response indicating this and the correct URL to use.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"14013657-fcf4-40d6-9172-1b5baae3818f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"1357dc1f-b89f-4a21-aa9d-ccd8e6122339"}}],"_postman_id":"1f9f49b5-637a-45c1-a1a0-7fb775ad78a8"},{"name":"Order Fulfillments","item":[{"name":"/orders/:order_id/fulfillments","id":"efe046fc-6cf2-49e5-8de8-ac5a0d2f8470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/fulfillments?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all fulfillments for a specific order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","name":"Order Fulfillments","type":"folder"}},"urlObject":{"path":["orders",":order_id","fulfillments"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"e9e8a8ec-d701-4c34-83a1-3ba0ff1fb94d","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"eaffbb40-b72e-475c-8093-148aa2dd33c0","name":"Get all fulfillments for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/fulfillments","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","fulfillments"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 128273,\n      \"warehouse_id\": 28328,\n      \"courier\": {\n        \"id\": \"3421\",\n        \"name\": \"Fedex\"\n      },\n      \"tracking_number\": \"RA972372788US\",\n      \"items\": [\n        {\n          \"id\": 128974,\n          \"product_id\": 891272,\n          \"variant_id\": 891272,\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"fulfilled_quantity\": 2\n        }\n      ],\n      \"created_at\": \"2020-04-13 12:31:53\"\n    },\n    {\n      \"id\": 128274,\n      \"warehouse_id\": 28328,\n      \"courier\": {\n        \"id\": \"3421\",\n        \"name\": \"Fedex\"\n      },\n      \"tracking_number\": \"RA328517597US\",\n      \"items\": [\n        {\n          \"id\": 128975,\n          \"product_id\": 891272,\n          \"variant_id\": 891272,\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"fulfilled_quantity\": 3\n        },\n        {\n          \"id\": 927832,\n          \"product_id\": 4624356,\n          \"variant_id\": 3783456,\n          \"sku\": \"23457227\",\n          \"upc\": \"2372373\",\n          \"title\": \"product2\",\n          \"fulfilled_quantity\": 3\n        }\n      ],\n      \"created_at\": \"2020-04-13 12:32:53\"\n    }\n  ]\n}"}],"_postman_id":"efe046fc-6cf2-49e5-8de8-ac5a0d2f8470"},{"name":"/orders/:order_id/fulfillments","id":"d6a476e6-df30-4dc6-995f-41621c75f3d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"warehouse_id\": 3523, // Required.\n    \"courier_id\": 3421, \n    \"tracking_number\": \"FEDEX1238007383\",\n    \"tracking_url\": \"https://www.fedex.com/track/fedex1238007383\",\n    \"add_to_ecommerce\": true,\n    \"items\": [ // Required.\n        {\n            \"order_item_id\": 128974, // Required.\n            \"fulfilled_quantity\": 2 // Required.\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/orders/:order_id/fulfillments","description":"<p>Create a Fulfillment for an Order.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","name":"Order Fulfillments","type":"folder"}},"urlObject":{"path":["orders",":order_id","fulfillments"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"163ad16b-2253-4621-b7f4-cb9b930b5c6d","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"24ed8f8b-a55c-49e0-b58d-f5cd7993a0c8","name":"Create a fulfillment for an order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"warehouse_id\": 3523,\n    \"courier_id\": 3421,\n    \"tracking_number\": \"FEDEX1238007383\",\n    \"tracking_url\": \"https://www.fedex.com/track/fedex1238007383\",\n    \"add_to_ecommerce\": true,\n    \"items\": [\n        {\n            \"order_item_id\": 128974,\n            \"fulfilled_quantity\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/fulfillments","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","fulfillments"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"id\": 128273,\n      \"warehouse_id\": 3523,\n      \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n      },\n      \"tracking_number\": \"FEDEX1238007383\",\n      \"tracking_url\": \"https://www.fedex.com/track/fedex1238007383\",\n      \"items\": [\n        {\n          \"id\": 128974,\n          \"product_id\": 891272,\n          \"variant_id\": 891272,\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"fulfilled_quantity\": 2\n        }\n      ],\n      \"created_at\": \"2020-04-13 12:31:53\"\n    }\n}"}],"_postman_id":"d6a476e6-df30-4dc6-995f-41621c75f3d7"},{"name":"/orders/:order_id/fulfillments/:fulfillment_id","id":"73f25015-0435-442c-9866-94e7a9e7d41c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/fulfillments/:fulfillment_id","description":"<p>Get specific fulfillment for a specific order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","name":"Order Fulfillments","type":"folder"}},"urlObject":{"path":["orders",":order_id","fulfillments",":fulfillment_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"63585066-5089-422c-a4d6-630cb398cb21","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"c9874222-a799-402b-95dd-19f0ed45bba3","description":{"content":"<p>(Required) Id of a fulfillment.</p>\n","type":"text/plain"},"type":"any","value":"128273","key":"fulfillment_id"}]}},"response":[{"id":"0c91e6ba-b408-426a-aece-b33037d0a640","name":"Get specific fulfillment for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/fulfillments/:fulfillment_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","fulfillments",":fulfillment_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"fulfillment_id","value":"128273"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 128273,\n    \"warehouse_id\": 28328,\n    \"courier\": {\n        \"id\": \"3421\",\n        \"name\": \"Fedex\"\n    },\n    \"tracking_number\": \"RA972372788US\",\n    \"items\": [\n        {\n            \"id\": 128974,\n            \"product_id\": 891272,\n            \"variant_id\": 891272,\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": 2\n        }\n    ],\n    \"created_at\": \"2020-04-13 12:31:53\"\n}"}],"_postman_id":"73f25015-0435-442c-9866-94e7a9e7d41c"},{"name":"/orders/:order_id/dealer_order/fulfillments","id":"5f6f475f-2cf4-4d14-b397-910918514921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/fulfillments","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","name":"Order Fulfillments","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","fulfillments"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"cb3b42f3-4deb-4722-adf4-ddf58fe62b81","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"ee52d450-bd0d-459d-a884-96d57f6527cb","name":"Get fulfillments for a dealer order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/fulfillments","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","fulfillments"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"128273\",\n            \"warehouse_id\": \"28328\",\n            \"courier\": {\n                \"id\": \"3421\",\n                \"name\": \"Fedex\"\n            },\n            \"tracking_number\": \"RA972372788US\",\n            \"items\": [\n                {\n                    \"id\": \"128974\",\n                    \"product_id\": \"891272\",\n                    \"variant_id\": \"891272\",\n                    \"sku\": \"182820382\",\n                    \"upc\": \"912822123\",\n                    \"title\": \"product1\",\n                    \"fulfilled_quantity\": \"2\"\n                }\n            ],\n            \"created_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n            \"id\": \"128274\",\n            \"warehouse_id\": \"28328\",\n            \"courier\": {\n                \"id\": \"3421\",\n                \"name\": \"Fedex\"\n            },\n            \"tracking_number\": \"RA328517597US\",\n            \"items\": [\n                {\n                    \"id\": \"128975\",\n                    \"product_id\": \"891272\",\n                    \"variant_id\": \"891272\",\n                    \"sku\": \"182820382\",\n                    \"upc\": \"912822123\",\n                    \"title\": \"product1\",\n                    \"fulfilled_quantity\": \"3\"\n                },\n                {\n                    \"id\": \"927832\",\n                    \"product_id\": \"4624356\",\n                    \"variant_id\": \"3783456\",\n                    \"sku\": \"23457227\",\n                    \"upc\": \"2372373\",\n                    \"title\": \"product2\",\n                    \"fulfilled_quantity\": \"3\"\n                }\n            ],\n            \"created_at\": \"2020-04-13 12:32:53\"\n        }\n    ]\n}"}],"_postman_id":"5f6f475f-2cf4-4d14-b397-910918514921"},{"name":"/orders/:order_id/dealer_order/fulfillments","id":"53377acc-d477-4def-93de-6814f32a87ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"warehouse_id\": 3523, // Required.\n    \"courier_id\": 3421, \n    \"tracking_number\": \"FEDEX1238007383\",\n    \"tracking_url\": \"https://www.fedex.com/track/fedex1238007383\",\n    \"add_to_ecommerce\": true,\n    \"items\": [ // Required.\n        {\n            \"order_item_id\": 128974, // Required.\n            \"fulfilled_quantity\": 2 // Required.\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/fulfillments","description":"<p>Create a Fulfillment for a Dealer Order.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","name":"Order Fulfillments","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","fulfillments"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"9cb59261-18e0-4062-882e-f70c8dbf4b4b","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"daeebc14-8b66-4f1e-9443-f0218f241b44","name":"Create a fulfillment for a dealer order.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"warehouse_id\": 3523,\n    \"courier_id\": 3421,\n    \"tracking_number\": \"FEDEX1238007383\",\n    \"tracking_url\": \"https://www.fedex.com/track/fedex1238007383\",\n    \"add_to_ecommerce\": true,\n    \"items\": [\n        {\n            \"order_item_id\": 128273,\n            \"fulfilled_quantity\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/fulfillments","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","fulfillments"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n      \"id\": 128273,\n      \"warehouse_id\": 3523,\n      \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n      },\n      \"tracking_number\": \"FEDEX1238007383\",\n      \"tracking_url\": \"https://www.fedex.com/track/fedex1238007383\",\n      \"items\": [\n        {\n          \"id\": 128273,\n          \"product_id\": 891272,\n          \"variant_id\": 891272,\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"fulfilled_quantity\": 2\n        }\n      ],\n      \"created_at\": \"2020-04-13 12:31:53\"\n    }\n}"}],"_postman_id":"53377acc-d477-4def-93de-6814f32a87ef"},{"name":"/orders/:order_id/dealer_order/fulfillments/:fulfillment_id","id":"0ca77e7a-7c2d-4942-95d0-b22d89dd32b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/fulfillments/:fulfillment_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","name":"Order Fulfillments","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","fulfillments",":fulfillment_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"129c6b71-d232-4a0b-b54a-932c4ac154ff","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"a93b3717-1579-4c82-887b-2728ff950d4d","description":{"content":"<p>(Required) Id of a dealer order fulfillment.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"fulfillment_id"}]}},"response":[{"id":"cc737c52-3810-4f38-a87d-7905731ccab2","name":"Get a specific fulfillment of a dealer order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/fulfillments/:fulfillment_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","fulfillments",":fulfillment_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"fulfillment_id","value":"128273"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"128273\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA972372788US\",\n        \"items\": [\n            {\n                \"id\": \"128974\",\n                \"product_id\": \"891272\",\n                \"variant_id\": \"891272\",\n                \"sku\": \"182820382\",\n                \"upc\": \"912822123\",\n                \"title\": \"product1\",\n                \"fulfilled_quantity\": \"2\"\n            }\n        ],\n        \"created_at\": \"2020-04-13 12:31:53\"\n    }\n}"}],"_postman_id":"0ca77e7a-7c2d-4942-95d0-b22d89dd32b3"}],"id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"4409fb07-be4c-4c55-a4d1-5524815ebb01"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"f4286310-dec5-4694-af38-7ec8c8e5e022"}}],"_postman_id":"9ee47aed-75b2-4840-8dad-829d0ec0aae2","description":""},{"name":"Dealer Tiers","item":[{"name":"/pricing_tiers","id":"599e0281-ce83-43ab-8490-b4e4216c08fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/pricing_tiers?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get details for all dealer tiers.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","name":"Dealer Tiers","type":"folder"}},"urlObject":{"path":["pricing_tiers"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"3fef2c3f-8553-4604-a221-2fecc66041a2","name":"Details about all dealer tiers.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/pricing_tiers"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"id\": \"7283\",\n   \"name\": \"Tier 1 Pricing\",\n   \"currency_code\": \"CAD\",\n   \"created_at\": \"2020-01-13 15:24:22\",\n   \"updated_at\": \"2021-01-26 22:26:36\"\n  },\n  {\n   \"id\": \"5231\",\n   \"name\": \"Tier 2 Pricing\",\n   \"currency_code\": \"USD\",\n   \"created_at\": \"2020-04-13 12:30:09\",\n   \"updated_at\": \"2021-02-22 15:26:36\"\n  }\n ]\n}"}],"_postman_id":"599e0281-ce83-43ab-8490-b4e4216c08fc"},{"name":"/pricing_tiers","id":"f49eae7f-375d-4a8e-81ff-cc909a0f0c5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Tier 1 Pricing\",\n    \"currency_code\": \"CAD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/pricing_tiers","description":"<p>Add a dealer tier.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","name":"Dealer Tiers","type":"folder"}},"urlObject":{"path":["pricing_tiers"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"b4444a65-04ef-4eb2-9da2-d4b356561d7a","description":{"content":"<p>(Required) Id of a dealer tier.</p>\n","type":"text/plain"},"type":"any","value":"26463","key":"pricing_tier_id"}]}},"response":[{"id":"105a2023-2bca-4088-a309-ce97591222c0","name":"Add a dealer tier.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Tier 1 Pricing\",\n    \"currency_code\": \"CAD\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/pricing_tiers/:pricing_tier_id","host":["https://shipearlyapp.com/api/v1"],"path":["pricing_tiers",":pricing_tier_id"],"variable":[{"key":"pricing_tier_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"id\": \"7283\",\n  \"name\": \"Tier 1 Pricing\",\n  \"currency_code\": \"CAD\",\n  \"created_at\": \"2021-01-26 22:26:36\",\n  \"updated_at\": \"2021-01-26 22:26:36\"\n }\n}"},{"id":"8f46c540-61a3-4eb5-b9b3-12bec960fa41","name":"Dealer tier name already exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Tier 1 Pricing\",\n    \"currency_code\": \"CAD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/pricing_tiers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Pricing Tier Tier 1 Pricing already exists.\",\n    \"message\": \"Pricing Tier Tier 1 Pricing already exists.\",\n    \"url\": \"/api/v1/pricing_tiers\"\n}"}],"_postman_id":"f49eae7f-375d-4a8e-81ff-cc909a0f0c5e"},{"name":"/pricing_tiers/count","id":"61334bff-14d8-4fb7-bf47-1e83ee2ebf34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/pricing_tiers/count","description":"<p>Get count of all dealer tiers.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","name":"Dealer Tiers","type":"folder"}},"urlObject":{"path":["pricing_tiers","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"faa10f2e-4971-428b-b17c-6d25c43b3abd","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/pricing_tiers/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"61334bff-14d8-4fb7-bf47-1e83ee2ebf34"},{"name":"/pricing_tiers/:pricing_tier_id","id":"c56c18ed-5fcc-4879-addd-09da09af1f90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/pricing_tiers/:pricing_tier_id","description":"<p>Get details of a specific dealer tier.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","name":"Dealer Tiers","type":"folder"}},"urlObject":{"path":["pricing_tiers",":pricing_tier_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"d22ea9c5-a44a-4fc6-b766-bb0e15576c14","description":{"content":"<p>(Required) Id of a dealer tier.</p>\n","type":"text/plain"},"type":"any","value":"67283","key":"pricing_tier_id"}]}},"response":[{"id":"7f85d95d-0982-4980-9b1c-08cfdc75d4d3","name":"Details about specific dealer tier.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/pricing_tiers/:pricing_tier_id","host":["https://shipearlyapp.com/api/v1"],"path":["pricing_tiers",":pricing_tier_id"],"variable":[{"key":"pricing_tier_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"id\": \"7283\",\n  \"name\": \"Tier 1 Pricing\",\n  \"currency_code\": \"CAD\",\n  \"created_at\": \"2020-01-13 15:24:22\",\n  \"updated_at\": \"2021-01-26 22:26:36\"\n }\n}"}],"_postman_id":"c56c18ed-5fcc-4879-addd-09da09af1f90"},{"name":"/pricing_tiers/:pricing_tier_id","id":"21c315c8-6c05-453e-999f-fc5533469a39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Tier 1 Pricing\",\n    \"currency_code\": \"CAD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/pricing_tiers/:pricing_tier_id","description":"<p>Edit details of a specific dealer tier.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","name":"Dealer Tiers","type":"folder"}},"urlObject":{"path":["pricing_tiers",":pricing_tier_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"02866f5c-c5be-40f8-a35c-835b1ce0cf11","description":{"content":"<p>(Required) Id of a dealer tier.</p>\n","type":"text/plain"},"type":"any","value":"26463","key":"pricing_tier_id"}]}},"response":[{"id":"064befad-2771-4829-b292-75b8eeb446ef","name":"Edit a dealer tier.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Tier 1 Pricing\",\n    \"currency_code\": \"CAD\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/pricing_tiers/:pricing_tier_id","host":["https://shipearlyapp.com/api/v1"],"path":["pricing_tiers",":pricing_tier_id"],"variable":[{"key":"pricing_tier_id","value":"7283"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"7283\",\n  \"name\": \"Tier 1 Pricing\",\n  \"currency_code\": \"CAD\",\n  \"created_at\": \"2020-01-13 15:24:22\",\n  \"updated_at\": \"2021-01-26 22:26:36\"\n}"}],"_postman_id":"21c315c8-6c05-453e-999f-fc5533469a39"}],"id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6","description":"<p>Access, edit, or add dealer tier details.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"559d6237-2fcf-4958-b4a9-910d273d5754"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"b3724eeb-aaf3-47aa-ac1b-befc650e140e"}}],"_postman_id":"456b292b-2b1c-46bb-b2e0-9abebcd861e6"},{"name":"Products","item":[{"name":"/products","id":"af6fe2fb-c742-458a-84c7-9340504f28d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/products?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get details for all products.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","name":"Products","type":"folder"}},"urlObject":{"path":["products"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"4dd88783-69c2-43a5-bbb3-8b89e5eef983","name":"Details about all products.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/products"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"26980\",\n      \"source_id\": \"1823719\",\n      \"source_type\": \"shopify\",\n      \"handle\": \"over-ear-headphones\",\n      \"title\": \"Over Ear Headphones\",\n      \"description_html\": \"<p>Focus on your favourite tunes with over-ear noise-cancelling Bluetooth headphones.</p>\",\n      \"total_warehouse_inventory\": \"823\",\n      \"total_retail_inventory\": \"273\",\n      \"created_at\": \"2020-01-13 15:24:22\",\n      \"updated_at\": \"2021-01-26 22:26:36\",\n      \"variant_options\": [\n        {\n          \"id\": \"422\",\n          \"product_id\": \"26980\",\n          \"source_id\": \"594680422\",\n          \"name\": \"Color\",\n          \"position\": 1,\n          \"created_at\": \"2020-01-13 15:24:22\",\n          \"updated_at\": \"2020-01-13 15:24:22\"\n        }\n      ],\n      \"variants\": [\n        {\n          \"id\": \"28374627\",\n          \"product_id\": \"26980\",\n          \"source_id\": \"28374627\",\n          \"sku\": \"OEH-1987123\",\n          \"upc\": \"2012876123\",\n          \"title\": \"Over Ear Headphones - Red\",\n          \"status\": \"Active\",\n          \"is_in_stock_only\": false,\n          \"is_non_stocking\": false,\n          \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n          \"enable_b2b_oversell\": false,\n          \"b2b_min_order_quantity\": null,\n          \"b2b_max_order_quantity\": \"15\",\n          \"enable_store_pickup\": true,\n          \"enable_local_delivery\": false,\n          \"enable_ship_from_store\": false,\n          \"weight\": \"410\",\n          \"weight_unit\": \"g\",\n          \"total_warehouse_inventory\": \"135\",\n          \"total_retail_inventory\": \"338\",\n          \"published_at\": \"2021-04-11 15:26:36\",\n          \"created_at\": \"2020-07-22 14:15:09\",\n          \"updated_at\": \"2021-04-11 15:26:36\",\n          \"variant_values\": [\n            {\n              \"variant_id\": \"28374627\",\n              \"variant_option_id\": \"422\",\n              \"name\": \"Color\",\n              \"value\": \"Red\",\n              \"created_at\": \"2020-07-22 14:15:09\",\n              \"updated_at\": \"2020-07-22 14:15:09\"\n            }\n          ],\n          \"pricing_tiers\": [\n            {\n              \"id\": \"5231\",\n              \"variant_id\": \"28374627\",\n              \"dealer_price\": \"120.00\",\n              \"ship_to_store_price\": null,\n              \"created_at\": \"2020-09-13 12:30:09\",\n              \"updated_at\": \"2021-02-22 15:26:36\"\n            },\n            {\n              \"id\": \"7283\",\n              \"variant_id\": \"28374627\",\n              \"dealer_price\": \"140.00\",\n              \"ship_to_store_price\": \"150.00\",\n              \"created_at\": \"2020-09-13 12:34:00\",\n              \"updated_at\": \"2021-02-22 15:30:07\"\n            }\n          ],\n          \"variant_prices\": [\n            {\n              \"currency_code\": \"CAD\",\n              \"price\": \"249.99\",\n              \"compare_at_price\": \"249.99\"\n            },\n            {\n              \"currency_code\": \"USD\",\n              \"price\": \"199.98\",\n              \"compare_at_price\": \"200.00\"\n            }\n          ]\n        },\n        {\n          \"id\": \"9189072\",\n          \"product_id\": \"26980\",\n          \"source_id\": \"9189072\",\n          \"sku\": \"OEH-23456874\",\n          \"upc\": \"24824545\",\n          \"title\": \"Over Ear Headphones - Blue\",\n          \"status\": \"Active\",\n          \"is_in_stock_only\": false,\n          \"is_non_stocking\": false,\n          \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n          \"enable_b2b_oversell\": false,\n          \"b2b_min_order_quantity\": \"5\",\n          \"b2b_max_order_quantity\": null,\n          \"enable_store_pickup\": true,\n          \"enable_local_delivery\": false,\n          \"enable_ship_from_store\": false,\n          \"weight\": \"410\",\n          \"weight_unit\": \"g\",\n          \"total_warehouse_inventory\": \"103\",\n          \"total_retail_inventory\": \"205\",\n          \"published_at\": \"2021-04-12 08:34:09\",\n          \"created_at\": \"2020-07-22 15:01:08\",\n          \"updated_at\": \"2021-04-12 08:34:09\",\n          \"variant_values\": [\n            {\n              \"variant_id\": \"9189072\",\n              \"variant_option_id\": \"422\",\n              \"name\": \"Color\",\n              \"value\": \"Blue\",\n              \"created_at\": \"2020-07-22 15:01:08\",\n              \"updated_at\": \"2020-07-22 15:01:08\"\n            }\n          ],\n          \"pricing_tiers\": [\n            {\n              \"id\": \"5231\",\n              \"variant_id\": \"9189072\",\n              \"dealer_price\": \"120.00\",\n              \"ship_to_store_price\": null,\n              \"created_at\": \"2020-09-13 12:30:09\",\n              \"updated_at\": \"2021-02-22 15:26:36\"\n            }\n          ],\n          \"variant_prices\": [\n            {\n              \"currency_code\": \"CAD\",\n              \"price\": \"149.99\",\n              \"compare_at_price\": \"149.99\"\n            },\n            {\n              \"currency_code\": \"USD\",\n              \"price\": \"99.99\",\n              \"compare_at_price\": \"99.99\"\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"id\": \"464356\",\n      \"source_id\": null,\n      \"source_type\": null,\n      \"handle\": \"wireless-speaker\",\n      \"title\": \"Wireless Speaker\",\n      \"description_html\": \"<p>Enjoy your music on the go with a portable wireless speaker.</p>\",\n      \"total_warehouse_inventory\": \"907\",\n      \"total_retail_inventory\": \"187\",\n      \"created_at\": \"2020-01-13 15:24:22\",\n      \"updated_at\": \"2021-01-26 22:26:36\",\n      \"variant_options\": [\n        {\n          \"id\": \"356\",\n          \"product_id\": \"464356\",\n          \"source_id\": \"594680356\",\n          \"name\": \"Color\",\n          \"position\": 1,\n          \"created_at\": \"2020-01-13 15:24:22\",\n          \"updated_at\": \"2020-01-13 15:24:22\"\n        }\n      ],\n      \"variants\": [\n        {\n          \"id\": \"827932\",\n          \"product_id\": \"464356\",\n          \"source_id\": \"827932\",\n          \"sku\": \"WS-198723423\",\n          \"upc\": \"239847234\",\n          \"title\": \"Wireless Speaker - Red\",\n          \"status\": \"Active\",\n          \"is_in_stock_only\": false,\n          \"is_non_stocking\": false,\n          \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n          \"enable_b2b_oversell\": false,\n          \"b2b_min_order_quantity\": null,\n          \"b2b_max_order_quantity\": null,\n          \"enable_store_pickup\": true,\n          \"enable_local_delivery\": true,\n          \"enable_ship_from_store\": true,\n          \"weight\": \"304\",\n          \"weight_unit\": \"g\",\n          \"total_warehouse_inventory\": \"456\",\n          \"total_retail_inventory\": \"123\",\n          \"published_at\": \"2021-04-11 15:26:36\",\n          \"created_at\": \"2020-07-22 14:15:09\",\n          \"updated_at\": \"2021-04-11 15:26:36\",\n          \"variant_values\": [\n            {\n              \"variant_id\": \"827932\",\n              \"variant_option_id\": \"356\",\n              \"name\": \"Color\",\n              \"value\": \"Red\",\n              \"created_at\": \"2020-07-22 14:15:09\",\n              \"updated_at\": \"2020-07-22 14:15:09\"\n            }\n          ],\n          \"pricing_tiers\": [\n            {\n              \"id\": \"5231\",\n              \"variant_id\": \"827932\",\n              \"dealer_price\": \"150.00\",\n              \"ship_to_store_price\": \"180.00\",\n              \"created_at\": \"2020-09-13 12:30:09\",\n              \"updated_at\": \"2021-02-22 15:26:36\"\n            },\n            {\n              \"id\": \"7283\",\n              \"variant_id\": \"827932\",\n              \"dealer_price\": \"160.00\",\n              \"ship_to_store_price\": null,\n              \"created_at\": \"2020-09-13 12:34:00\",\n              \"updated_at\": \"2021-02-22 15:30:07\"\n            }\n          ],\n          \"variant_prices\": [\n            {\n              \"currency_code\": \"USD\",\n              \"price\": \"199.99\",\n              \"compare_at_price\": \"199.99\"\n            }\n          ]\n        },\n        {\n          \"id\": \"198223\",\n          \"product_id\": \"464356\",\n          \"source_id\": \"198223\",\n          \"sku\": \"WS-37861234\",\n          \"upc\": \"23789462\",\n          \"title\": \"Wireless Speaker - Blue\",\n          \"status\": \"Active\",\n          \"is_in_stock_only\": false,\n          \"is_non_stocking\": false,\n          \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n          \"enable_b2b_oversell\": false,\n          \"b2b_min_order_quantity\": null,\n          \"b2b_max_order_quantity\": null,\n          \"enable_store_pickup\": true,\n          \"enable_local_delivery\": true,\n          \"enable_ship_from_store\": true,\n          \"weight\": \"304\",\n          \"weight_unit\": \"g\",\n          \"total_warehouse_inventory\": \"451\",\n          \"total_retail_inventory\": \"64\",\n          \"published_at\": \"2021-04-12 08:34:09\",\n          \"created_at\": \"2020-07-22 15:01:08\",\n          \"updated_at\": \"2021-04-12 08:34:09\",\n          \"variant_values\": [\n            {\n              \"variant_id\": \"198223\",\n              \"variant_option_id\": \"356\",\n              \"name\": \"Color\",\n              \"value\": \"Blue\",\n              \"created_at\": \"2020-07-22 15:01:08\",\n              \"updated_at\": \"2020-07-22 15:01:08\"\n            }\n          ],\n          \"pricing_tiers\": [\n            {\n              \"id\": \"5231\",\n              \"variant_id\": \"198223\",\n              \"dealer_price\": \"150.00\",\n              \"ship_to_store_price\": \"180.00\",\n              \"created_at\": \"2020-09-13 12:30:09\",\n              \"updated_at\": \"2021-02-22 15:26:36\"\n            }\n          ],\n          \"variant_prices\": [\n            {\n              \"currency_code\": \"USD\",\n              \"price\": \"199.99\",\n              \"compare_at_price\": \"199.99\"\n            }\n          ]\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"af6fe2fb-c742-458a-84c7-9340504f28d5"},{"name":"/products/count","id":"76c98f62-032f-4fc8-b364-5c5f9549817c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/products/count","description":"<p>Get count of all products.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","name":"Products","type":"folder"}},"urlObject":{"path":["products","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c2982106-fb4b-4ea8-a511-e03cc58979b4","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/products/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 2\n}"}],"_postman_id":"76c98f62-032f-4fc8-b364-5c5f9549817c"},{"name":"/products/:product_id","id":"14361dc0-dae2-46bc-a7c3-1f5541ce8b3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/products/:product_id","description":"<p>Get details for a specific product.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","name":"Products","type":"folder"}},"urlObject":{"path":["products",":product_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6742aedc-547d-4288-881e-bfbfe34eb003","description":{"content":"<p>(Required) Id of a product.</p>\n","type":"text/plain"},"type":"any","value":"26980","key":"product_id"}]}},"response":[{"id":"fe77229e-6e37-4226-ad68-f69717dc600f","name":"Details about specific product.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/products/:product_id","host":["https://shipearlyapp.com/api/v1"],"path":["products",":product_id"],"variable":[{"key":"product_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"26980\",\n    \"source_id\": \"1823719\",\n    \"source_type\": \"shopify\",\n    \"handle\": \"over-ear-headphones\",\n    \"title\": \"Over Ear Headphones\",\n    \"description_html\": \"<p>Focus on your favourite tunes with over-ear noise-cancelling Bluetooth headphones.</p>\",\n    \"total_warehouse_inventory\": \"823\",\n    \"total_retail_inventory\": \"273\",\n    \"created_at\": \"2020-01-13 15:24:22\",\n    \"updated_at\": \"2021-01-26 22:26:36\",\n    \"variant_options\": [\n      {\n        \"id\": \"422\",\n        \"product_id\": \"26980\",\n        \"source_id\": \"594680422\",\n        \"name\": \"Color\",\n        \"position\": 1,\n        \"created_at\": \"2020-01-13 15:24:22\",\n        \"updated_at\": \"2020-01-13 15:24:22\"\n      }\n    ],\n    \"variants\": [\n      {\n        \"id\": \"28374627\",\n        \"product_id\": \"26980\",\n        \"source_id\": \"28374627\",\n        \"sku\": \"OEH-1987123\",\n        \"upc\": \"2012876123\",\n        \"title\": \"Over Ear Headphones - Red\",\n        \"status\": \"Active\",\n        \"is_in_stock_only\": false,\n        \"is_non_stocking\": false,\n        \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n        \"enable_b2b_oversell\": false,\n        \"b2b_min_order_quantity\": null,\n        \"b2b_max_order_quantity\": \"15\",\n        \"enable_store_pickup\": true,\n        \"enable_local_delivery\": false,\n        \"enable_ship_from_store\": false,\n        \"weight\": \"410\",\n        \"weight_unit\": \"g\",\n        \"total_warehouse_inventory\": \"135\",\n        \"total_retail_inventory\": \"338\",\n        \"published_at\": \"2021-04-11 15:26:36\",\n        \"created_at\": \"2020-07-22 14:15:09\",\n        \"updated_at\": \"2021-04-11 15:26:36\",\n        \"variant_values\": [\n          {\n            \"variant_id\": \"28374627\",\n            \"variant_option_id\": \"422\",\n            \"name\": \"Color\",\n            \"value\": \"Red\",\n            \"created_at\": \"2020-07-22 14:15:09\",\n            \"updated_at\": \"2020-07-22 14:15:09\"\n          }\n        ],\n        \"pricing_tiers\": [\n          {\n            \"id\": \"5231\",\n            \"variant_id\": \"28374627\",\n            \"dealer_price\": \"120.00\",\n            \"ship_to_store_price\": null,\n            \"created_at\": \"2020-09-13 12:30:09\",\n            \"updated_at\": \"2021-02-22 15:26:36\"\n          },\n          {\n            \"id\": \"7283\",\n            \"variant_id\": \"28374627\",\n            \"dealer_price\": \"140.00\",\n            \"ship_to_store_price\": \"150.00\",\n            \"created_at\": \"2020-09-13 12:34:00\",\n            \"updated_at\": \"2021-02-22 15:30:07\"\n          }\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"CAD\",\n            \"price\": \"249.99\",\n            \"compare_at_price\": \"249.99\"\n          },\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"199.98\",\n            \"compare_at_price\": \"200.00\"\n          }\n        ]\n      },\n      {\n        \"id\": \"9189072\",\n        \"product_id\": \"26980\",\n        \"source_id\": \"9189072\",\n        \"sku\": \"OEH-23456874\",\n        \"upc\": \"24824545\",\n        \"title\": \"Over Ear Headphones - Blue\",\n        \"status\": \"Active\",\n        \"is_in_stock_only\": false,\n        \"is_non_stocking\": false,\n        \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n        \"enable_b2b_oversell\": false,\n        \"b2b_min_order_quantity\": \"5\",\n        \"b2b_max_order_quantity\": null,\n        \"enable_store_pickup\": true,\n        \"enable_local_delivery\": false,\n        \"enable_ship_from_store\": false,\n        \"weight\": \"410\",\n        \"weight_unit\": \"g\",\n        \"total_warehouse_inventory\": \"103\",\n        \"total_retail_inventory\": \"205\",\n        \"published_at\": \"2021-04-12 08:34:09\",\n        \"created_at\": \"2020-07-22 15:01:08\",\n        \"updated_at\": \"2021-04-12 08:34:09\",\n        \"variant_values\": [\n          {\n            \"variant_id\": \"9189072\",\n            \"variant_option_id\": \"422\",\n            \"name\": \"Color\",\n            \"value\": \"Blue\",\n            \"created_at\": \"2020-07-22 15:01:08\",\n            \"updated_at\": \"2020-07-22 15:01:08\"\n          }\n        ],\n        \"pricing_tiers\": [\n          {\n            \"id\": \"5231\",\n            \"variant_id\": \"9189072\",\n            \"dealer_price\": \"120.00\",\n            \"ship_to_store_price\": null,\n            \"created_at\": \"2020-09-13 12:30:09\",\n            \"updated_at\": \"2021-02-22 15:26:36\"\n          }\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"CAD\",\n            \"price\": \"149.99\",\n            \"compare_at_price\": \"149.99\"\n          },\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"99.99\",\n            \"compare_at_price\": \"99.99\"\n          }\n        ]\n      }\n    ]\n  }\n}"}],"_postman_id":"14361dc0-dae2-46bc-a7c3-1f5541ce8b3f"},{"name":"/products/:product_id","id":"4f646264-5aa9-4ee8-823b-068f06857c99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"handle\": \"comfort-over-ear-headphones\",\n  \"title\": \"Comfort Over Ear Headphones\",\n  \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n  \"variant_options\": [\n    {\n      \"id\": \"422\",\n      \"name\": \"Color\",\n      \"position\": 1\n    }\n  ],\n  \"variants\": [\n    {\n      \"id\": \"28374627\",\n      \"sku\": \"EDITED-OEH-1987123\",\n      \"upc\": \"0707070707070\",\n      \"status\": \"Deactivated\",\n      \"is_in_stock_only\": true,\n      \"is_non_stocking\": true,\n      \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n      \"enable_b2b_oversell\": true,\n      \"b2b_min_order_quantity\": 5,\n      \"b2b_max_order_quantity\": 20,\n      \"enable_store_pickup\": false,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": 14.4623,\n      \"weight_unit\": \"oz\",\n      \"variant_values\": [\n        {\n          \"variant_option_id\": 422,\n          \"value\": \"Black\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"commission_price\": \"100.00\"\n        },\n        {\n          \"id\": \"7283\",\n          \"dealer_price\": \"140.00\",\n          \"ship_to_store_price\": \"150.00\",\n          \"commission_price\": \"130.00\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"USD\",\n          \"price\": 190.00,\n          \"compare_at_price\": 200.00\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/products/:product_id","description":"<p>Edit details of an existing product.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","name":"Products","type":"folder"}},"urlObject":{"path":["products",":product_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"description":{"content":"<p>(Required) Id of a product.</p>\n","type":"text/plain"},"type":"any","value":"26980","key":"product_id"}]}},"response":[{"id":"1cd7ea7e-a2f1-4c89-b248-322d538e8caa","name":"Edit a specific product.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"handle\": \"comfort-over-ear-headphones\",\n  \"title\": \"Comfort Over Ear Headphones\",\n  \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n  \"variant_options\": [\n    {\n      \"id\": \"422\",\n      \"name\": \"Accent Color\",\n      \"position\": 1\n    }\n  ],\n  \"variants\": [\n    {\n      \"id\": \"28374627\",\n      \"sku\": \"EDITED-OEH-1987123\",\n      \"upc\": \"0707070707070\",\n      \"status\": \"Deactivated\",\n      \"is_in_stock_only\": true,\n      \"is_non_stocking\": true,\n      \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n      \"enable_b2b_oversell\": true,\n      \"b2b_min_order_quantity\": 5,\n      \"b2b_max_order_quantity\": 20,\n      \"enable_store_pickup\": false,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": 14.4623,\n      \"weight_unit\": \"oz\",\n      \"variant_values\": [\n        {\n          \"variant_option_id\": 422,\n          \"value\": \"Black\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"commission_price\": \"100.00\"\n        },\n        {\n          \"id\": \"7283\",\n          \"dealer_price\": \"140.00\",\n          \"ship_to_store_price\": \"150.00\",\n          \"commission_price\": \"130.00\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"USD\",\n          \"price\": 190.00,\n          \"compare_at_price\": 200.00\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/products/:product_id","host":["https://shipearlyapp.com/api/v1"],"path":["products",":product_id"],"variable":[{"key":"product_id","value":"26980","description":"(Required) Id of a product."}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"26980\",\n    \"source_id\": \"1823719\",\n    \"source_type\": \"shopify\",\n    \"handle\": \"comfort-over-ear-headphones\",\n    \"title\": \"Comfort Over Ear Headphones\",\n    \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n    \"total_warehouse_inventory\": \"823\",\n    \"total_retail_inventory\": \"273\",\n    \"created_at\": \"2020-01-13 15:24:22\",\n    \"updated_at\": \"2021-01-26 22:26:36\",\n    \"variant_options\": [\n      {\n        \"id\": \"422\",\n        \"product_id\": \"26980\",\n        \"source_id\": \"594680422\",\n        \"name\": \"Accent Color\",\n        \"position\": 1,\n        \"created_at\": \"2020-01-13 15:24:22\",\n        \"updated_at\": \"2020-01-13 15:24:22\"\n      }\n    ],\n    \"variants\": [\n      {\n        \"id\": \"28374627\",\n        \"product_id\": \"26980\",\n        \"source_id\": \"28374627\",\n        \"sku\": \"EDITED-OEH-1987123\",\n        \"upc\": \"0707070707070\",\n        \"title\": \"Comfort Over Ear Headphones - Black\",\n        \"status\": \"Deactivated\",\n        \"is_in_stock_only\": true,\n        \"is_non_stocking\": true,\n        \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n        \"enable_b2b_oversell\": true,\n        \"b2b_min_order_quantity\": \"5\",\n        \"b2b_max_order_quantity\": \"20\",\n        \"enable_store_pickup\": false,\n        \"enable_local_delivery\": true,\n        \"enable_ship_from_store\": true,\n        \"weight\": \"14.4623\",\n        \"weight_unit\": \"oz\",\n        \"total_warehouse_inventory\": \"135\",\n        \"total_retail_inventory\": \"338\",\n        \"published_at\": \"2021-04-11 15:26:36\",\n        \"created_at\": \"2020-07-22 14:15:09\",\n        \"updated_at\": \"2021-04-11 15:26:36\",\n        \"variant_values\": [\n          {\n            \"variant_id\": \"28374627\",\n            \"variant_option_id\": \"422\",\n            \"name\": \"Accent Color\",\n            \"value\": \"Black\",\n            \"created_at\": \"2020-07-22 14:15:09\",\n            \"updated_at\": \"2020-07-22 14:15:09\"\n          }\n        ],\n        \"pricing_tiers\": [\n          {\n            \"id\": \"5231\",\n            \"variant_id\": \"28374627\",\n            \"dealer_price\": \"120.00\",\n            \"ship_to_store_price\": null,\n            \"commission_price\": \"100.00\",\n            \"created_at\": \"2020-09-13 12:30:09\",\n            \"updated_at\": \"2021-02-22 15:26:36\"\n          },\n          {\n            \"id\": \"7283\",\n            \"variant_id\": \"28374627\",\n            \"dealer_price\": \"140.00\",\n            \"ship_to_store_price\": \"150.00\",\n            \"commission_price\": \"130.00\",\n            \"created_at\": \"2020-09-13 12:34:00\",\n            \"updated_at\": \"2021-02-22 15:30:07\"\n          }\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"CAD\",\n            \"price\": \"249.99\",\n            \"compare_at_price\": \"249.99\"\n          },\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"190.00\",\n            \"compare_at_price\": \"200.00\"\n          }\n        ]\n      },\n      {\n        \"id\": \"9189072\",\n        \"product_id\": \"26980\",\n        \"source_id\": \"9189072\",\n        \"sku\": \"OEH-23456874\",\n        \"upc\": \"24824545\",\n        \"title\": \"Comfort Over Ear Headphones - Blue\",\n        \"status\": \"Active\",\n        \"is_in_stock_only\": false,\n        \"is_non_stocking\": false,\n        \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n        \"enable_b2b_oversell\": false,\n        \"b2b_min_order_quantity\": \"5\",\n        \"b2b_max_order_quantity\": null,\n        \"enable_store_pickup\": true,\n        \"enable_local_delivery\": false,\n        \"enable_ship_from_store\": false,\n        \"weight\": \"410\",\n        \"weight_unit\": \"g\",\n        \"total_warehouse_inventory\": \"103\",\n        \"total_retail_inventory\": \"205\",\n        \"published_at\": \"2021-04-12 08:34:09\",\n        \"created_at\": \"2020-07-22 15:01:08\",\n        \"updated_at\": \"2021-04-12 08:34:09\",\n        \"variant_values\": [\n          {\n            \"variant_id\": \"9189072\",\n            \"variant_option_id\": \"422\",\n            \"name\": \"Accent Color\",\n            \"value\": \"Blue\",\n            \"created_at\": \"2020-07-22 15:01:08\",\n            \"updated_at\": \"2020-07-22 15:01:08\"\n          }\n        ],\n        \"pricing_tiers\": [\n          {\n            \"id\": \"5231\",\n            \"variant_id\": \"9189072\",\n            \"dealer_price\": \"120.00\",\n            \"ship_to_store_price\": null,\n            \"commission_price\": \"100.00\",\n            \"created_at\": \"2020-09-13 12:30:09\",\n            \"updated_at\": \"2021-02-22 15:26:36\"\n          }\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"CAD\",\n            \"price\": \"149.99\",\n            \"compare_at_price\": \"149.99\"\n          },\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"99.99\",\n            \"compare_at_price\": \"99.99\"\n          }\n        ]\n      }\n    ]\n  }\n}"}],"_postman_id":"4f646264-5aa9-4ee8-823b-068f06857c99"},{"name":"/products","id":"11c86b0c-916b-4da5-9e93-883d466567ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"handle\": \"comfort-over-ear-headphones\",\n  \"title\": \"Comfort Over Ear Headphones\",\n  \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n  \"variant_options\": [\n    {\n      \"name\": \"Accent Color\",\n      \"position\": 1\n    }\n  ],\n  \"variants\": [\n    {\n      \"sku\": \"EDITED-OEH-1987123\",\n      \"upc\": \"0707070707070\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": true,\n      \"is_non_stocking\": true,\n      \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n      \"enable_b2b_oversell\": true,\n      \"b2b_min_order_quantity\": 5,\n      \"b2b_max_order_quantity\": 20,\n      \"enable_store_pickup\": false,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": 14.4623,\n      \"weight_unit\": \"oz\",\n      \"variant_values\": [\n        {\n          \"value\": \"Black\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"commission_price\": \"100.00\"\n        },\n        {\n          \"id\": \"7283\",\n          \"dealer_price\": \"140.00\",\n          \"ship_to_store_price\": \"150.00\",\n          \"commission_price\": \"130.00\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"CAD\",\n          \"price\": \"249.99\",\n          \"compare_at_price\": \"249.99\"\n        },        \n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"190.00\",\n          \"compare_at_price\": \"200.00\"\n        }\n      ]\n    },\n    {\n      \"sku\": \"EDITED-OEH-1987124\",\n      \"upc\": \"0707070707071\",\n      \"status\": \"Incomplete\",\n      \"variant_values\": [\n        {\n          \"value\": \"White\"\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/products","description":"<p>Create a new product.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","name":"Products","type":"folder"}},"urlObject":{"path":["products"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"75a6f240-eb84-4cee-b6b7-379e531bcbdc","name":"Create a simple product.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"handle\": \"comfort-over-ear-headphones\",\n  \"title\": \"Comfort Over Ear Headphones\",\n  \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/products/:product_id","host":["https://shipearlyapp.com/api/v1"],"path":["products",":product_id"],"variable":[{"key":"product_id","value":"26980","description":"(Required) Id of a product."}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"26981\",\n    \"source_id\": null,\n    \"source_type\": null,\n    \"handle\": \"comfort-over-ear-headphones\",\n    \"title\": \"Comfort Over Ear Headphones\",\n    \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n    \"total_warehouse_inventory\": \"0\",\n    \"total_retail_inventory\": \"0\",\n    \"created_at\": \"2026-02-20 16:00:00\",\n    \"updated_at\": \"2026-02-20 16:00:00\",\n    \"variant_options\": [\n    ],\n    \"variants\": [\n      {\n        \"id\": \"28374627\",\n        \"product_id\": \"26981\",\n        \"source_id\": \"28374627\",\n        \"sku\": null,\n        \"upc\": null,\n        \"title\": \"Comfort Over Ear Headphones\",\n        \"status\": \"Incomplete\",\n        \"is_in_stock_only\": false,\n        \"is_non_stocking\": false,\n        \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n        \"enable_b2b_oversell\": false,\n        \"b2b_min_order_quantity\": null,\n        \"b2b_max_order_quantity\": null,\n        \"enable_store_pickup\": true,\n        \"enable_local_delivery\": false,\n        \"enable_ship_from_store\": false,\n        \"weight\": \"0\",\n        \"weight_unit\": \"kg\",\n        \"total_warehouse_inventory\": null,\n        \"total_retail_inventory\": \"0\",\n        \"published_at\": null,\n        \"created_at\": \"2026-02-20 16:00:00\",\n        \"updated_at\": \"2026-02-20 16:00:00\",\n        \"variant_values\": [\n        ],\n        \"pricing_tiers\": [\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"0.00\",\n            \"compare_at_price\": \"0.00\"\n          }\n        ]\n      }\n    ]\n  }\n}\n"},{"id":"e5699414-29cb-4113-bc1d-a96c16742b60","name":"Create a product with variants.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"handle\": \"comfort-over-ear-headphones\",\n  \"title\": \"Comfort Over Ear Headphones\",\n  \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n  \"variant_options\": [\n    {\n      \"name\": \"Accent Color\",\n      \"position\": 1\n    }\n  ],\n  \"variants\": [\n    {\n      \"sku\": \"EDITED-OEH-1987123\",\n      \"upc\": \"0707070707070\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": true,\n      \"is_non_stocking\": true,\n      \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n      \"enable_b2b_oversell\": true,\n      \"b2b_min_order_quantity\": 5,\n      \"b2b_max_order_quantity\": 20,\n      \"enable_store_pickup\": false,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": 14.4623,\n      \"weight_unit\": \"oz\",\n      \"variant_values\": [\n        {\n          \"value\": \"Black\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"commission_price\": \"100.00\"\n        },\n        {\n          \"id\": \"7283\",\n          \"dealer_price\": \"140.00\",\n          \"ship_to_store_price\": \"150.00\",\n          \"commission_price\": \"130.00\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"CAD\",\n          \"price\": \"249.99\",\n          \"compare_at_price\": \"249.99\"\n        },        \n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"190.00\",\n          \"compare_at_price\": \"200.00\"\n        }\n      ]\n    },\n    {\n      \"sku\": \"EDITED-OEH-1987124\",\n      \"upc\": \"0707070707071\",\n      \"status\": \"Incomplete\",\n      \"variant_values\": [\n        {\n          \"value\": \"White\"\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/products/:product_id","host":["https://shipearlyapp.com/api/v1"],"path":["products",":product_id"],"variable":[{"key":"product_id","value":"26980","description":"(Required) Id of a product."}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"26981\",\n    \"source_id\": null,\n    \"source_type\": null,\n    \"handle\": \"comfort-over-ear-headphones\",\n    \"title\": \"Comfort Over Ear Headphones\",\n    \"description_html\": \"<p>Quickly rechargeable, they sit comfortably on your head even after hours of listening pleasure.</p>\",\n    \"total_warehouse_inventory\": \"0\",\n    \"total_retail_inventory\": \"0\",\n    \"created_at\": \"2026-02-20 16:00:00\",\n    \"updated_at\": \"2026-02-20 16:00:00\",\n    \"variant_options\": [\n    ],\n    \"variants\": [\n      {\n        \"id\": \"28374627\",\n        \"product_id\": \"26981\",\n        \"source_id\": \"28374627\",\n        \"sku\": \"EDITED-OEH-1987123\",\n        \"upc\": \"0707070707070\",\n        \"title\": \"Comfort Over Ear Headphones - Black\",\n        \"status\": \"Active\",\n        \"is_in_stock_only\": true,\n        \"is_non_stocking\": true,\n        \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n        \"enable_b2b_oversell\": true,\n        \"b2b_min_order_quantity\": \"5\",\n        \"b2b_max_order_quantity\": \"20\",\n        \"enable_store_pickup\": false,\n        \"enable_local_delivery\": true,\n        \"enable_ship_from_store\": true,\n        \"weight\": \"14.4623\",\n        \"weight_unit\": \"oz\",\n        \"total_warehouse_inventory\": \"135\",\n        \"total_retail_inventory\": \"338\",\n        \"published_at\": \"2026-02-20 16:00:00\",\n        \"created_at\": \"2026-02-20 16:00:00\",\n        \"updated_at\": \"2026-02-20 16:00:00\",\n        \"variant_values\": [\n          {\n            \"variant_id\": \"28374627\",\n            \"variant_option_id\": \"422\",\n            \"name\": \"Accent Color\",\n            \"value\": \"Black\",\n            \"created_at\": \"2026-02-20 16:00:00\",\n            \"updated_at\": \"2026-02-20 16:00:00\"\n          }\n        ],\n        \"pricing_tiers\": [\n          {\n            \"id\": \"5231\",\n            \"variant_id\": \"28374627\",\n            \"dealer_price\": \"120.00\",\n            \"ship_to_store_price\": null,\n            \"commission_price\": \"100.00\",\n            \"created_at\": \"2026-02-20 16:00:00\",\n            \"updated_at\": \"2026-02-20 16:00:00\"\n          },\n          {\n            \"id\": \"7283\",\n            \"variant_id\": \"28374627\",\n            \"dealer_price\": \"140.00\",\n            \"ship_to_store_price\": \"150.00\",\n            \"commission_price\": \"130.00\",\n            \"created_at\": \"2026-02-20 16:00:00\",\n            \"updated_at\": \"2026-02-20 16:00:00\"\n          }\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"CAD\",\n            \"price\": \"249.99\",\n            \"compare_at_price\": \"249.99\"\n          },\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"190.00\",\n            \"compare_at_price\": \"200.00\"\n          }\n        ]\n      },\n      {\n        \"id\": \"28374628\",\n        \"product_id\": \"26981\",\n        \"source_id\": \"28374628\",\n        \"sku\": \"EDITED-OEH-1987124\",\n        \"upc\": \"0707070707071\",\n        \"title\": \"Comfort Over Ear Headphones - White\",\n        \"status\": \"Incomplete\",\n        \"is_in_stock_only\": false,\n        \"is_non_stocking\": false,\n        \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n        \"enable_b2b_oversell\": false,\n        \"b2b_min_order_quantity\": null,\n        \"b2b_max_order_quantity\": null,\n        \"enable_store_pickup\": true,\n        \"enable_local_delivery\": false,\n        \"enable_ship_from_store\": false,\n        \"weight\": \"0\",\n        \"weight_unit\": \"kg\",\n        \"total_warehouse_inventory\": null,\n        \"total_retail_inventory\": \"0\",\n        \"published_at\": null,\n        \"created_at\": \"2026-02-20 16:00:00\",\n        \"updated_at\": \"2026-02-20 16:00:00\",\n        \"variant_values\": [\n          {\n            \"variant_id\": \"28374627\",\n            \"variant_option_id\": \"422\",\n            \"name\": \"Accent Color\",\n            \"value\": \"White\",\n            \"created_at\": \"2026-02-20 16:00:00\",\n            \"updated_at\": \"2026-02-20 16:00:00\"\n          }\n        ],\n        \"pricing_tiers\": [\n        ],\n        \"variant_prices\": [\n          {\n            \"currency_code\": \"USD\",\n            \"price\": \"0.00\",\n            \"compare_at_price\": \"0.00\"\n          }\n        ]\n      }\n    ]\n  }\n}\n"}],"_postman_id":"11c86b0c-916b-4da5-9e93-883d466567ec"}],"id":"c18326fc-b3a6-4c3c-81d2-e32d67736323","description":"<p>Access product records.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>\"id\": \"26980\"</code>  <br />(read-only)</td>\n<td>The ID of the product record.</td>\n</tr>\n<tr>\n<td><code>\"source_id\": \"1823719\"</code>  <br />(read-only)</td>\n<td>The external ID of the product if linked to an eCommerce platform or <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>\"source_type\": \"shopify\"</code>  <br />(read-only)</td>\n<td>The linked eCommerce platform type: <code>\"shopify\"</code>, <code>\"woocommerce\"</code>, <code>\"magento\"</code>, or <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>\"handle\": \"over-ear-headphones\"</code></td>\n<td>Unique slug.</td>\n</tr>\n<tr>\n<td><code>\"title\": \"Over Ear Headphones\"</code></td>\n<td>Presentable product name.</td>\n</tr>\n<tr>\n<td><code>\"description_html\": \"Focus on your favourite tunes with over-ear noise-cancelling Bluetooth headphones.\"</code></td>\n<td>A description of the product. Supports HTML formatting.</td>\n</tr>\n<tr>\n<td><code>\"total_warehouse_inventory\": \"823\"</code>  <br />(read-only)</td>\n<td>Sum of warehouse location inventories.</td>\n</tr>\n<tr>\n<td><code>\"total_retail_inventory\": \"273\"</code>  <br />(read-only)</td>\n<td>Sum of retailer inventories.</td>\n</tr>\n<tr>\n<td><code>\"created_at\": \"2019-02-25 10:50:24\"</code>  <br />(read-only)</td>\n<td>UTC datetime of product creation.</td>\n</tr>\n<tr>\n<td><code>\"updated_at\": \"2023-09-15 02:05:37\"</code>  <br />(read-only)</td>\n<td>UTC datetime of last product update.</td>\n</tr>\n<tr>\n<td><code>\"variant_options\": [...]</code></td>\n<td>Array of variant options for this product such as Size, Color, and Material. Product variants are made of up combinations of option values.</td>\n</tr>\n<tr>\n<td><code>\"variants\": [...]</code></td>\n<td>Array of variants for this product.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"39a21820-8dcc-4ad2-8cce-04d77b3bd936"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"de091bca-7432-434d-9cc1-a553b522c533"}}],"_postman_id":"c18326fc-b3a6-4c3c-81d2-e32d67736323"},{"name":"Product Variants","item":[{"name":"/variants","id":"110c4769-3dd3-422e-8ac8-07843657a728","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get details for all variants.</p>\n<p>More specific results can be obtained using filter query params like</p>\n<ul>\n<li><code>filter[sku]=OEH-1987123,WS-198723423</code> for specific SKUs.</li>\n<li><code>sort=-updated_at&amp;filter[updated_at &gt;]=2020-01-01 00:00:00</code> for the most recently updated variants after a specific datetime.</li>\n</ul>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","name":"Product Variants","type":"folder"}},"urlObject":{"path":["variants"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"870570a7-7f26-451a-9901-33c71cfa936f","name":"Details about all variants.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"28374627\",\n      \"product_id\": \"26980\",\n      \"sku\": \"OEH-1987123\",\n      \"upc\": \"2012876123\",\n      \"title\": \"Over Ear Headphones - Red\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": false,\n      \"is_non_stocking\": false,\n      \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n      \"enable_b2b_oversell\": false,\n      \"b2b_min_order_quantity\": null,\n      \"b2b_max_order_quantity\": \"15\",\n      \"enable_store_pickup\": true,\n      \"enable_local_delivery\": false,\n      \"enable_ship_from_store\": false,\n      \"weight\": \"410\",\n      \"weight_unit\": \"g\",\n      \"total_warehouse_inventory\": \"135\",\n      \"total_retail_inventory\": \"338\",\n      \"published_at\": \"2021-04-11 15:26:36\",\n      \"created_at\": \"2020-07-22 14:15:09\",\n      \"updated_at\": \"2021-04-11 15:26:36\",\n      \"variant_values\": [\n        {\n          \"variant_id\": \"28374627\",\n          \"variant_option_id\": \"422\",\n          \"name\": \"Color\",\n          \"value\": \"Red\",\n          \"created_at\": \"2020-07-22 14:15:09\",\n          \"updated_at\": \"2020-07-22 14:15:09\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"variant_id\": \"28374627\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"commission_price\": \"100.00\",\n          \"created_at\": \"2020-09-13 12:30:09\",\n          \"updated_at\": \"2021-02-22 15:26:36\"\n        },\n        {\n          \"id\": \"7283\",\n          \"variant_id\": \"28374627\",\n          \"dealer_price\": \"140.00\",\n          \"ship_to_store_price\": \"150.00\",\n          \"commission_price\": \"130.00\",\n          \"created_at\": \"2020-09-13 12:34:00\",\n          \"updated_at\": \"2021-02-22 15:30:07\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"CAD\",\n          \"price\": \"249.99\",\n          \"compare_at_price\": \"249.99\"\n        },\n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"199.98\",\n          \"compare_at_price\": \"200.00\"\n        }\n      ]\n    },\n    {\n      \"id\": \"9189072\",\n      \"product_id\": \"26980\",\n      \"sku\": \"OEH-23456874\",\n      \"upc\": \"24824545\",\n      \"title\": \"Over Ear Headphones - Blue\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": false,\n      \"is_non_stocking\": false,\n      \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n      \"enable_b2b_oversell\": false,\n      \"b2b_min_order_quantity\": \"5\",\n      \"b2b_max_order_quantity\": null,\n      \"enable_store_pickup\": true,\n      \"enable_local_delivery\": false,\n      \"enable_ship_from_store\": false,\n      \"weight\": \"410\",\n      \"weight_unit\": \"g\",\n      \"total_warehouse_inventory\": \"103\",\n      \"total_retail_inventory\": \"205\",\n      \"published_at\": \"2021-04-12 08:34:09\",\n      \"created_at\": \"2020-07-22 15:01:08\",\n      \"updated_at\": \"2021-04-12 08:34:09\",\n      \"variant_values\": [\n        {\n          \"variant_id\": \"9189072\",\n          \"variant_option_id\": \"422\",\n          \"name\": \"Color\",\n          \"value\": \"Blue\",\n          \"created_at\": \"2020-07-22 15:01:08\",\n          \"updated_at\": \"2020-07-22 15:01:08\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"variant_id\": \"9189072\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"created_at\": \"2020-09-13 12:30:09\",\n          \"updated_at\": \"2021-02-22 15:26:36\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"CAD\",\n          \"price\": \"149.99\",\n          \"compare_at_price\": \"149.99\"\n        },\n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"99.99\",\n          \"compare_at_price\": \"99.99\"\n        }\n      ]\n    },\n    {\n      \"id\": \"827932\",\n      \"product_id\": \"464356\",\n      \"sku\": \"WS-198723423\",\n      \"upc\": \"239847234\",\n      \"title\": \"Wireless Speaker - Red\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": false,\n      \"is_non_stocking\": false,\n      \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n      \"enable_b2b_oversell\": false,\n      \"b2b_min_order_quantity\": null,\n      \"b2b_max_order_quantity\": null,\n      \"enable_store_pickup\": true,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": \"304\",\n      \"weight_unit\": \"g\",\n      \"total_warehouse_inventory\": \"456\",\n      \"total_retail_inventory\": \"123\",\n      \"published_at\": \"2021-04-11 15:26:36\",\n      \"created_at\": \"2020-07-22 14:15:09\",\n      \"updated_at\": \"2021-04-11 15:26:36\",\n      \"variant_values\": [\n        {\n          \"variant_id\": \"827932\",\n          \"variant_option_id\": \"356\",\n          \"name\": \"Color\",\n          \"value\": \"Red\",\n          \"created_at\": \"2020-07-22 14:15:09\",\n          \"updated_at\": \"2020-07-22 14:15:09\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"variant_id\": \"827932\",\n          \"dealer_price\": \"150.00\",\n          \"ship_to_store_price\": \"180.00\",\n          \"created_at\": \"2020-09-13 12:30:09\",\n          \"updated_at\": \"2021-02-22 15:26:36\"\n        },\n        {\n          \"id\": \"7283\",\n          \"variant_id\": \"827932\",\n          \"dealer_price\": \"160.00\",\n          \"ship_to_store_price\": null,\n          \"created_at\": \"2020-09-13 12:34:00\",\n          \"updated_at\": \"2021-02-22 15:30:07\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"199.99\",\n          \"compare_at_price\": \"199.99\"\n        }\n      ]\n    },\n    {\n      \"id\": \"198223\",\n      \"product_id\": \"464356\",\n      \"sku\": \"WS-37861234\",\n      \"upc\": \"23789462\",\n      \"title\": \"Wireless Speaker - Blue\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": false,\n      \"is_non_stocking\": false,\n      \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n      \"enable_b2b_oversell\": false,\n      \"b2b_min_order_quantity\": null,\n      \"b2b_max_order_quantity\": null,\n      \"enable_store_pickup\": true,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": \"304\",\n      \"weight_unit\": \"g\",\n      \"total_warehouse_inventory\": \"451\",\n      \"total_retail_inventory\": \"64\",\n      \"published_at\": \"2021-04-12 08:34:09\",\n      \"created_at\": \"2020-07-22 15:01:08\",\n      \"updated_at\": \"2021-04-12 08:34:09\",\n      \"variant_values\": [\n        {\n          \"variant_id\": \"198223\",\n          \"variant_option_id\": \"356\",\n          \"name\": \"Color\",\n          \"value\": \"Blue\",\n          \"created_at\": \"2020-07-22 15:01:08\",\n          \"updated_at\": \"2020-07-22 15:01:08\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"variant_id\": \"198223\",\n          \"dealer_price\": \"150.00\",\n          \"ship_to_store_price\": \"180.00\",\n          \"created_at\": \"2020-09-13 12:30:09\",\n          \"updated_at\": \"2021-02-22 15:26:36\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"199.99\",\n          \"compare_at_price\": \"199.99\"\n        }\n      ]\n    }\n  ]\n}\n"},{"id":"5323389c-a803-41be-a3e2-8dae25e5df38","name":"Search for a specific SKUs.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants?filter[sku]=OEH-1987123,WS-198723423","host":["https://shipearlyapp.com/api/v1"],"path":["variants"],"query":[{"key":"filter[sku]","value":"OEH-1987123,WS-198723423","description":"Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE."}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"28374627\",\n      \"product_id\": \"26980\",\n      \"sku\": \"OEH-1987123\",\n      \"upc\": \"2012876123\",\n      \"title\": \"Over Ear Headphones - Red\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": false,\n      \"is_non_stocking\": false,\n      \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n      \"enable_b2b_oversell\": false,\n      \"b2b_min_order_quantity\": null,\n      \"b2b_max_order_quantity\": \"15\",\n      \"enable_store_pickup\": true,\n      \"enable_local_delivery\": false,\n      \"enable_ship_from_store\": false,\n      \"weight\": \"410\",\n      \"weight_unit\": \"g\",\n      \"total_warehouse_inventory\": \"135\",\n      \"total_retail_inventory\": \"338\",\n      \"published_at\": \"2021-04-11 15:26:36\",\n      \"created_at\": \"2020-07-22 14:15:09\",\n      \"updated_at\": \"2021-04-11 15:26:36\",\n      \"variant_values\": [\n        {\n          \"variant_id\": \"28374627\",\n          \"variant_option_id\": \"422\",\n          \"name\": \"Color\",\n          \"value\": \"Red\",\n          \"created_at\": \"2020-07-22 14:15:09\",\n          \"updated_at\": \"2020-07-22 14:15:09\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"variant_id\": \"28374627\",\n          \"dealer_price\": \"120.00\",\n          \"ship_to_store_price\": null,\n          \"commission_price\": \"100.00\",\n          \"created_at\": \"2020-09-13 12:30:09\",\n          \"updated_at\": \"2021-02-22 15:26:36\"\n        },\n        {\n          \"id\": \"7283\",\n          \"variant_id\": \"28374627\",\n          \"dealer_price\": \"140.00\",\n          \"ship_to_store_price\": \"150.00\",\n          \"commission_price\": \"130.00\",\n          \"created_at\": \"2020-09-13 12:34:00\",\n          \"updated_at\": \"2021-02-22 15:30:07\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"CAD\",\n          \"price\": \"249.99\",\n          \"compare_at_price\": \"249.99\"\n        },\n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"199.98\",\n          \"compare_at_price\": \"200.00\"\n        }\n      ]\n    },\n    {\n      \"id\": \"827932\",\n      \"product_id\": \"464356\",\n      \"sku\": \"WS-198723423\",\n      \"upc\": \"239847234\",\n      \"title\": \"Wireless Speaker - Red\",\n      \"status\": \"Active\",\n      \"is_in_stock_only\": false,\n      \"is_non_stocking\": false,\n      \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n      \"enable_b2b_oversell\": false,\n      \"b2b_min_order_quantity\": null,\n      \"b2b_max_order_quantity\": null,\n      \"enable_store_pickup\": true,\n      \"enable_local_delivery\": true,\n      \"enable_ship_from_store\": true,\n      \"weight\": \"304\",\n      \"weight_unit\": \"g\",\n      \"total_warehouse_inventory\": \"456\",\n      \"total_retail_inventory\": \"123\",\n      \"published_at\": \"2021-04-11 15:26:36\",\n      \"created_at\": \"2020-07-22 14:15:09\",\n      \"updated_at\": \"2021-04-11 15:26:36\",\n      \"variant_values\": [\n        {\n          \"variant_id\": \"827932\",\n          \"variant_option_id\": \"356\",\n          \"name\": \"Color\",\n          \"value\": \"Red\",\n          \"created_at\": \"2020-07-22 14:15:09\",\n          \"updated_at\": \"2020-07-22 14:15:09\"\n        }\n      ],\n      \"pricing_tiers\": [\n        {\n          \"id\": \"5231\",\n          \"variant_id\": \"827932\",\n          \"dealer_price\": \"150.00\",\n          \"ship_to_store_price\": \"180.00\",\n          \"created_at\": \"2020-09-13 12:30:09\",\n          \"updated_at\": \"2021-02-22 15:26:36\"\n        },\n        {\n          \"id\": \"7283\",\n          \"variant_id\": \"827932\",\n          \"dealer_price\": \"160.00\",\n          \"ship_to_store_price\": null,\n          \"created_at\": \"2020-09-13 12:34:00\",\n          \"updated_at\": \"2021-02-22 15:30:07\"\n        }\n      ],\n      \"variant_prices\": [\n        {\n          \"currency_code\": \"USD\",\n          \"price\": \"199.99\",\n          \"compare_at_price\": \"199.99\"\n        }\n      ]\n    }\n  ]\n}\n"}],"_postman_id":"110c4769-3dd3-422e-8ac8-07843657a728"},{"name":"/variants/count","id":"34eced40-96d1-49f0-81f7-370379230e4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/count","description":"<p>Get count of all variants.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","name":"Product Variants","type":"folder"}},"urlObject":{"path":["variants","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"25459542-7764-4d7a-9c2e-993de3a8ff84","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 4\n}"}],"_postman_id":"34eced40-96d1-49f0-81f7-370379230e4b"},{"name":"/variants/:variant_id","id":"9abad6ff-98a7-4fd7-8b34-af8888fe005e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id","description":"<p>Get details of a specific variant.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","name":"Product Variants","type":"folder"}},"urlObject":{"path":["variants",":variant_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"149c6d6c-5713-4980-a258-1d7d485d3cca","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"28374627","key":"variant_id"}]}},"response":[{"id":"638f8018-96dc-42de-bc1e-10f3ac52dc2e","name":"Details about specific variant.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id"],"variable":[{"key":"variant_id","value":"28374627"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"28374627\",\n    \"product_id\": \"26980\",\n    \"sku\": \"OEH-1987123\",\n    \"upc\": \"2012876123\",\n    \"title\": \"Over Ear Headphones - Red\",\n    \"status\": \"Active\",\n    \"is_in_stock_only\": false,\n    \"is_non_stocking\": false,\n    \"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\",\n    \"enable_b2b_oversell\": false,\n    \"b2b_min_order_quantity\": null,\n    \"b2b_max_order_quantity\": \"15\",\n    \"enable_store_pickup\": true,\n    \"enable_local_delivery\": false,\n    \"enable_ship_from_store\": false,\n    \"weight\": \"410\",\n    \"weight_unit\": \"g\",\n    \"total_warehouse_inventory\": \"135\",\n    \"total_retail_inventory\": \"338\",\n    \"published_at\": \"2021-04-11 15:26:36\",\n    \"created_at\": \"2020-07-22 14:15:09\",\n    \"updated_at\": \"2021-04-11 15:26:36\",\n    \"variant_values\": [\n      {\n        \"variant_id\": \"28374627\",\n        \"variant_option_id\": \"422\",\n        \"name\": \"Color\",\n        \"value\": \"Red\",\n        \"created_at\": \"2020-07-22 14:15:09\",\n        \"updated_at\": \"2020-07-22 14:15:09\"\n      }\n    ],\n    \"pricing_tiers\": [\n      {\n        \"id\": \"5231\",\n        \"variant_id\": \"28374627\",\n        \"dealer_price\": \"120.00\",\n        \"ship_to_store_price\": null,\n        \"commission_price\": \"100.00\",\n        \"created_at\": \"2020-09-13 12:30:09\",\n        \"updated_at\": \"2021-02-22 15:26:36\"\n      },\n      {\n        \"id\": \"7283\",\n        \"variant_id\": \"28374627\",\n        \"dealer_price\": \"140.00\",\n        \"ship_to_store_price\": \"150.00\",\n        \"commission_price\": \"130.00\",\n        \"created_at\": \"2020-09-13 12:34:00\",\n        \"updated_at\": \"2021-02-22 15:30:07\"\n      }\n    ],\n    \"variant_prices\": [\n      {\n        \"currency_code\": \"CAD\",\n        \"price\": \"249.99\",\n        \"compare_at_price\": \"249.99\"\n      },\n      {\n        \"currency_code\": \"USD\",\n        \"price\": \"199.98\",\n        \"compare_at_price\": \"200.00\"\n      }\n    ]\n  }\n}"}],"_postman_id":"9abad6ff-98a7-4fd7-8b34-af8888fe005e"},{"name":"/variants","id":"e1b8d3a9-d930-4b36-bc78-01488c3fa2fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"product_id\": \"26980\", // Required\n  \"sku\": \"EDITED-OEH-1987123\",\n  \"upc\": \"0707070707070\",\n  \"title\": \"Over Ear Headphones - Red\",\n  \"status\": \"Incomplete\",\n  \"is_in_stock_only\": true,\n  \"is_non_stocking\": true,\n  \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n  \"enable_b2b_oversell\": true,\n  \"b2b_min_order_quantity\": \"5\",\n  \"b2b_max_order_quantity\": \"20\",\n  \"enable_store_pickup\": false,\n  \"enable_local_delivery\": true,\n  \"enable_ship_from_store\": true,\n  \"weight\": \"14.4623\",\n  \"weight_unit\": \"oz\",\n  \"variant_values\": [\n    {\n      \"variant_option_id\": 422,\n      \"value\": \"Black\"\n    }\n  ],\n  \"pricing_tiers\": [\n    {\n      \"id\": \"5231\",\n      \"dealer_price\": \"120.00\",\n      \"ship_to_store_price\": null,\n      \"commission_price\": \"100.00\"\n    },\n    {\n      \"id\": \"7283\",\n      \"dealer_price\": \"140.00\",\n      \"ship_to_store_price\": \"150.00\",\n      \"commission_price\": \"130.00\"\n    }\n  ],\n  \"variant_prices\": [\n    {\n      \"currency_code\": \"USD\",\n      \"price\": 199.98,\n      \"compare_at_price\": 200.00\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/variants","description":"<p>Create a new variant under a <code>product_id</code>.</p>\n<p><strong>status</strong></p>\n<p>The default <code>status</code> is \"Incomplete\". Setting it to \"Active\" requires setting the variant's <code>sku</code> and having Product Categories configured in the main app. The variant can also be set to \"Deactivated\" to hide it.</p>\n<p><strong>sell_direct_method</strong></p>\n<p>When editing <code>sell_direct_method</code> you are limited to available values. These are: <code>SELL_DIRECT_EXCLUSIVELY</code>, <code>SELL_DIRECT_UNLESS_BUNDLED</code>, <code>ALWAYS_SELL_DIRECT</code>, <code>ONLY_IN_UNPROTECTED_TERRITORIES</code>, <code>RETAIL_EXCLUSIVE_PRODUCT</code>. The <code>IN_STOCK_ONLY</code> option is deprecated. You are advised to use the <code>is_in_stock_only</code> property instead. other value will result in a 400 response code and a message detailing the valid values.</p>\n<p><strong>variant_values</strong></p>\n<p>The variant's title is made up of the values assigned to each of the variant options associated with its parent product. These can be assigned by an array of objects mapped to known <code>variant_option_id</code> values.</p>\n<pre>\"variant_values\": [\n  { \"variant_option_id\": 422, \"value\": \"Black\" },\n  { \"variant_option_id\": 423, \"value\": \"Large\" }\n],</pre>\n\n<p>Or positionally if the variant_option positions are known.</p>\n<pre>\"variant_values\": [\n  { \"value\": \"Black\" },\n  { \"value\": \"Large\" }\n],</pre>\n\n<p><strong>variant_prices</strong></p>\n<p>Variant retail pricing can be edited through this endpoint. When editing <code>variant_prices</code> you may include a list of objects with price definitions you wish to update. You must include a <code>currency_code</code> and a <code>price</code>, with an optional <code>compare_at_price</code> for each price definition. Each item in the list must have a unique <code>currency_code</code>.</p>\n<p>Every variant will have at least one entry in the <code>variant_prices</code> list in the accounts default currency. This entry cannot be edited and requests editing it will recieve and error response indicating so.</p>\n<p><code>currency_code</code> must be a currency that the account is configured to use. If a request uses a <code>currency_code</code> that is not valid an error response will be recieved.</p>\n<p><code>price</code> and <code>compare_at_price</code> must be greater than zero.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","name":"Product Variants","type":"folder"}},"urlObject":{"path":["variants"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"77a8345a-6d52-4806-ae7a-393cbd809e97","name":"Create a variant under a product_id.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"product_id\": \"26980\",\n  \"sku\": \"EDITED-OEH-1987123\",\n  \"upc\": \"0707070707070\",\n  \"status\": \"Incomplete\",\n  \"is_in_stock_only\": true,\n  \"is_non_stocking\": true,\n  \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n  \"enable_b2b_oversell\": true,\n  \"b2b_min_order_quantity\": 5,\n  \"b2b_max_order_quantity\": 20,\n  \"enable_store_pickup\": false,\n  \"enable_local_delivery\": true,\n  \"enable_ship_from_store\": true,\n  \"weight\": 14.4623,\n  \"weight_unit\": \"oz\",\n  \"variant_values\": [\n    {\n      \"variant_option_id\": 422,\n      \"value\": \"Black\"\n    }\n  ],\n  \"pricing_tiers\": [\n    {\n      \"id\": \"5231\",\n      \"dealer_price\": \"120.00\",\n      \"ship_to_store_price\": null,\n      \"commission_price\": \"100.00\"\n    },\n    {\n      \"id\": \"7283\",\n      \"dealer_price\": \"140.00\",\n      \"ship_to_store_price\": \"150.00\",\n      \"commission_price\": \"130.00\"\n    }\n  ],\n  \"variant_prices\": [\n    {\n      \"currency_code\": \"USD\",\n      \"price\": 190.00,\n      \"compare_at_price\": 200.00\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id"],"variable":[{"key":"variant_id","value":"28374627"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"28374627\",\n    \"product_id\": \"26980\",\n    \"source_id\": \"28374627\",\n    \"sku\": \"EDITED-OEH-1987123\",\n    \"upc\": \"0707070707070\",\n    \"title\": \"Over Ear Headphones - Red\",\n    \"status\": \"Incomplete\",\n    \"is_in_stock_only\": true,\n    \"is_non_stocking\": true,\n    \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n    \"enable_b2b_oversell\": true,\n    \"b2b_min_order_quantity\": \"5\",\n    \"b2b_max_order_quantity\": \"20\",\n    \"enable_store_pickup\": false,\n    \"enable_local_delivery\": true,\n    \"enable_ship_from_store\": true,\n    \"weight\": \"14.4623\",\n    \"weight_unit\": \"oz\",\n    \"total_warehouse_inventory\": \"135\",\n    \"total_retail_inventory\": \"338\",\n    \"published_at\": null,\n    \"created_at\": \"2026-02-20 16:00:00\",\n    \"updated_at\": \"2026-02-20 16:00:00\",\n    \"variant_values\": [\n      {\n        \"variant_id\": \"28374627\",\n        \"variant_option_id\": \"422\",\n        \"name\": \"Color\",\n        \"value\": \"Red\",\n        \"created_at\": \"2026-02-20 16:00:00\",\n        \"updated_at\": \"2026-02-20 16:00:00\"\n      }\n    ],\n    \"pricing_tiers\": [\n      {\n        \"id\": \"5231\",\n        \"variant_id\": \"28374627\",\n        \"dealer_price\": \"120.00\",\n        \"ship_to_store_price\": null,\n        \"commission_price\": \"100.00\",\n        \"created_at\": \"2026-02-20 16:00:00\",\n        \"updated_at\": \"2026-02-20 16:00:00\"\n      },\n      {\n        \"id\": \"7283\",\n        \"variant_id\": \"28374627\",\n        \"dealer_price\": \"140.00\",\n        \"ship_to_store_price\": \"150.00\",\n        \"commission_price\": \"130.00\",\n        \"created_at\": \"2026-02-20 16:00:00\",\n        \"updated_at\": \"2026-02-20 16:00:00\"\n      }\n    ],\n    \"variant_prices\": [\n      {\n        \"currency_code\": \"CAD\",\n        \"price\": \"249.99\",\n        \"compare_at_price\": \"249.99\"\n      },\n      {\n        \"currency_code\": \"USD\",\n        \"price\": \"190.00\",\n        \"compare_at_price\": \"200.00\"\n      }\n    ]\n  }\n}"}],"_postman_id":"e1b8d3a9-d930-4b36-bc78-01488c3fa2fd"},{"name":"/variants/:variant_id","id":"f0b9923e-57f3-48e9-8d99-ee203ce00e6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"sku\": \"EDITED-OEH-1987123\",\n  \"upc\": \"0707070707070\",\n  \"title\": \"Over Ear Headphones - Red\",\n  \"status\": \"Deactivated\",\n  \"is_in_stock_only\": true,\n  \"is_non_stocking\": true,\n  \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n  \"enable_b2b_oversell\": true,\n  \"b2b_min_order_quantity\": \"5\",\n  \"b2b_max_order_quantity\": \"20\",\n  \"enable_store_pickup\": false,\n  \"enable_local_delivery\": true,\n  \"enable_ship_from_store\": true,\n  \"weight\": \"14.4623\",\n  \"weight_unit\": \"oz\",\n  \"variant_values\": [\n    {\n      \"variant_option_id\": 422,\n      \"value\": \"Black\"\n    }\n  ],\n  \"pricing_tiers\": [\n    {\n      \"id\": \"5231\",\n      \"dealer_price\": \"120.00\",\n      \"ship_to_store_price\": null,\n      \"commission_price\": \"100.00\"\n    },\n    {\n      \"id\": \"7283\",\n      \"dealer_price\": \"140.00\",\n      \"ship_to_store_price\": \"150.00\",\n      \"commission_price\": \"130.00\"\n    }\n  ],\n  \"variant_prices\": [\n    {\n      \"currency_code\": \"USD\",\n      \"price\": 199.98,\n      \"compare_at_price\": 200.00\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/variants/:variant_id","description":"<p>Edit details of a specific variant.</p>\n<p><strong>sell_direct_method</strong></p>\n<p>When editing <code>sell_direct_method</code> you are limited to available values. These are: <code>SELL_DIRECT_EXCLUSIVELY</code>, <code>SELL_DIRECT_UNLESS_BUNDLED</code>, <code>ALWAYS_SELL_DIRECT</code>, <code>ONLY_IN_UNPROTECTED_TERRITORIES</code>, <code>RETAIL_EXCLUSIVE_PRODUCT</code>. The <code>IN_STOCK_ONLY</code> option is deprecated. You are advised to use the <code>is_in_stock_only</code> property instead. other value will result in a 400 response code and a message detailing the valid values.</p>\n<p><strong>variant_prices</strong></p>\n<p>Variant retail pricing can be edited through this endpoint. When editing <code>variant_prices</code> you may include a list of objects with price definitions you wish to update. You must include a <code>currency_code</code> and a <code>price</code>, with an optional <code>compare_at_price</code> for each price definition. Each item in the list must have a unique <code>currency_code</code>.</p>\n<p>Every variant will have at least one entry in the <code>variant_prices</code> list in the accounts default currency. This entry cannot be edited and requests editing it will recieve and error response indicating so.</p>\n<p><code>currency_code</code> must be a currency that the account is configured to use. If a request uses a <code>currency_code</code> that is not valid an error response will be recieved.</p>\n<p><code>price</code> and <code>compare_at_price</code> must be greater than zero.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","name":"Product Variants","type":"folder"}},"urlObject":{"path":["variants",":variant_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"28374627","key":"variant_id"}]}},"response":[{"id":"5939fbac-1f7b-40ec-b389-c7461cddf580","name":"Edit a specific variant.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"sku\": \"EDITED-OEH-1987123\",\n  \"upc\": \"0707070707070\",\n  \"status\": \"Deactivated\",\n  \"is_in_stock_only\": true,\n  \"is_non_stocking\": true,\n  \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n  \"enable_b2b_oversell\": true,\n  \"b2b_min_order_quantity\": 5,\n  \"b2b_max_order_quantity\": 20,\n  \"enable_store_pickup\": false,\n  \"enable_local_delivery\": true,\n  \"enable_ship_from_store\": true,\n  \"weight\": 14.4623,\n  \"weight_unit\": \"oz\",\n  \"variant_values\": [\n    {\n      \"variant_option_id\": 422,\n      \"value\": \"Black\"\n    }\n  ],\n  \"pricing_tiers\": [\n    {\n      \"id\": \"5231\",\n      \"dealer_price\": \"120.00\",\n      \"ship_to_store_price\": null,\n      \"commission_price\": \"100.00\"\n    },\n    {\n      \"id\": \"7283\",\n      \"dealer_price\": \"140.00\",\n      \"ship_to_store_price\": \"150.00\",\n      \"commission_price\": \"130.00\"\n    }\n  ],\n  \"variant_prices\": [\n    {\n      \"currency_code\": \"USD\",\n      \"price\": 190.00,\n      \"compare_at_price\": 200.00\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id"],"variable":[{"key":"variant_id","value":"28374627"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"28374627\",\n    \"product_id\": \"26980\",\n    \"source_id\": \"28374627\",\n    \"sku\": \"EDITED-OEH-1987123\",\n    \"upc\": \"0707070707070\",\n    \"title\": \"Over Ear Headphones - Red\",\n    \"status\": \"Deactivated\",\n    \"is_in_stock_only\": true,\n    \"is_non_stocking\": true,\n    \"sell_direct_method\": \"SELL_DIRECT_UNLESS_BUNDLED\",\n    \"enable_b2b_oversell\": true,\n    \"b2b_min_order_quantity\": \"5\",\n    \"b2b_max_order_quantity\": \"20\",\n    \"enable_store_pickup\": false,\n    \"enable_local_delivery\": true,\n    \"enable_ship_from_store\": true,\n    \"weight\": \"14.4623\",\n    \"weight_unit\": \"oz\",\n    \"total_warehouse_inventory\": \"135\",\n    \"total_retail_inventory\": \"338\",\n    \"published_at\": \"2021-04-11 15:26:36\",\n    \"created_at\": \"2020-07-22 14:15:09\",\n    \"updated_at\": \"2021-04-11 15:26:36\",\n    \"variant_values\": [\n      {\n        \"variant_id\": \"28374627\",\n        \"variant_option_id\": \"422\",\n        \"name\": \"Color\",\n        \"value\": \"Black\",\n        \"created_at\": \"2020-07-22 14:15:09\",\n        \"updated_at\": \"2020-07-22 14:15:09\"\n      }\n    ],\n    \"pricing_tiers\": [\n      {\n        \"id\": \"5231\",\n        \"variant_id\": \"28374627\",\n        \"dealer_price\": \"120.00\",\n        \"ship_to_store_price\": null,\n        \"commission_price\": \"100.00\",\n        \"created_at\": \"2020-09-13 12:30:09\",\n        \"updated_at\": \"2021-02-22 15:26:36\"\n      },\n      {\n        \"id\": \"7283\",\n        \"variant_id\": \"28374627\",\n        \"dealer_price\": \"140.00\",\n        \"ship_to_store_price\": \"150.00\",\n        \"commission_price\": \"130.00\",\n        \"created_at\": \"2020-09-13 12:34:00\",\n        \"updated_at\": \"2021-02-22 15:30:07\"\n      }\n    ],\n    \"variant_prices\": [\n      {\n        \"currency_code\": \"CAD\",\n        \"price\": \"249.99\",\n        \"compare_at_price\": \"249.99\"\n      },\n      {\n        \"currency_code\": \"USD\",\n        \"price\": \"190.00\",\n        \"compare_at_price\": \"200.00\"\n      }\n    ]\n  }\n}"}],"_postman_id":"f0b9923e-57f3-48e9-8d99-ee203ce00e6d"}],"id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7","description":"<p>Access and edit product variant details.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>\"id\": \"28374627\"</code>  <br />(read-only)</td>\n<td>The ID of the product variant record.</td>\n</tr>\n<tr>\n<td><code>\"product_id\": \"26980\"</code>  <br />(read-only)</td>\n<td>The ID of the parent product record.</td>\n</tr>\n<tr>\n<td><code>\"source_id\": \"46272837\"</code>  <br />(read-only)</td>\n<td>The external ID of the variant if linked to an eCommerce platform.</td>\n</tr>\n<tr>\n<td><code>\"sku\": \"OEH-1987123\"</code></td>\n<td>A unique stock keeping unit identifier.</td>\n</tr>\n<tr>\n<td><code>\"upc\": \"2012876123\"</code></td>\n<td>The barcode, UPC, or ISBN number.</td>\n</tr>\n<tr>\n<td><code>\"title\": \"Over Ear Headphones - Red\"</code>  <br />(read-only)</td>\n<td>Full title generated from the product title and selected variant options.</td>\n</tr>\n<tr>\n<td><code>\"status\": \"Active\"</code></td>\n<td>Can be <code>\"Active\"</code>, <code>\"Deactivated\"</code>, or <code>\"Incomplete\"</code>.</td>\n</tr>\n<tr>\n<td><code>\"is_in_stock_only\": false</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"is_non_stocking\": false</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"sell_direct_method\": \"ONLY_IN_UNPROTECTED_TERRITORIES\"</code></td>\n<td>Can be <code>\"SELL_DIRECT_EXCLUSIVELY\"</code>, <code>\"SELL_DIRECT_UNLESS_BUNDLED\"</code>, <code>\"ALWAYS_SELL_DIRECT\"</code>, <code>\"ONLY_IN_UNPROTECTED_TERRITORIES\"</code>, or <code>\"RETAIL_EXCLUSIVE_PRODUCT\"</code>.</td>\n</tr>\n<tr>\n<td><code>\"enable_b2b_oversell\": false</code></td>\n<td>Continue selling through the B2B platform when warehouse inventory is out-of-stock.</td>\n</tr>\n<tr>\n<td><code>\"b2b_min_order_quantity\": null</code></td>\n<td>Can be a postive integer or <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>\"b2b_max_order_quantity\": \"15\"</code></td>\n<td>Can be a postive integer or <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>\"enable_store_pickup\": true</code></td>\n<td>Enable the delivery method Store Pickup.</td>\n</tr>\n<tr>\n<td><code>\"enable_local_delivery\": false</code></td>\n<td>Enable the delivery method Local Delivery.</td>\n</tr>\n<tr>\n<td><code>\"enable_ship_from_store\": false</code></td>\n<td>Enable the delivery method Ship From Store.</td>\n</tr>\n<tr>\n<td><code>\"weight\": \"410\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"weight_unit\": \"g\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"total_warehouse_inventory\": \"135\"</code>  <br />(read-only)</td>\n<td>Sum of warehouse location inventories.</td>\n</tr>\n<tr>\n<td><code>\"total_retail_inventory\": \"338\"</code>  <br />(read-only)</td>\n<td>Sum of retailer inventories.</td>\n</tr>\n<tr>\n<td><code>\"published_at\": \"2021-04-11 15:26:36\"</code>  <br />(read-only)</td>\n<td>UTC datetime of the first time <code>status</code> is set to <code>\"Active\"</code> or <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>\"created_at\": \"2020-07-22 14:15:09\"</code>  <br />(read-only)</td>\n<td>UTC datetime of variant creation.</td>\n</tr>\n<tr>\n<td><code>\"updated_at\": \"2021-04-11 15:26:36\"</code>  <br />(read-only)</td>\n<td>UTC datetime of last variant update.</td>\n</tr>\n<tr>\n<td><code>\"variant_values\": [...]</code></td>\n<td>Array of variant option values that define this variant such as Size:Small, Color:Red, and Material:Silver.</td>\n</tr>\n<tr>\n<td><code>\"pricing_tiers\": [...]</code>  <br />(read-only)</td>\n<td>Array of B2B dealer tier price configurations.</td>\n</tr>\n<tr>\n<td><code>\"variant_prices\": [...]</code></td>\n<td>Array of B2C currency price configurations.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"c13d7d21-28da-40d7-925f-70aa73ea32c4"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6baf1b78-ad0f-458f-8b55-8b9800b41985"}}],"_postman_id":"7b2f12d7-dc1d-43ad-9cba-757175e0dcb7"},{"name":"Product Variant Retail Inventory","item":[{"name":"/variants/:variant_id/retail_inventory","id":"50dc830f-8b48-4676-8525-992be134db1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/retail_inventory?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get inventory details for specific variant.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","name":"Product Variant Retail Inventory","type":"folder"}},"urlObject":{"path":["variants",":variant_id","retail_inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"1d137c25-0170-4fd3-b1aa-f3ca00f9d9fb","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"29289","key":"variant_id"}]}},"response":[{"id":"5d17e092-f268-4c51-ad9e-d0ca0cd3b55c","name":"Inventory details for specific retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/retail_inventory","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id","retail_inventory"],"variable":[{"key":"variant_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"retailer_id\": \"25600\",\n   \"variant_id\": \"28374627\",\n   \"quantity\": \"200\",\n   \"updated_at\": \"2020-12-31 23:44:12\"\n  },\n  {\n   \"retailer_id\": \"25600\",\n   \"variant_id\": \"9189072\",\n   \"quantity\": \"198\",\n   \"updated_at\": \"2021-01-05 02:28:56\"\n  },\n  {\n   \"retailer_id\": \"25601\",\n   \"variant_id\": \"9189072\",\n   \"quantity\": \"90\",\n   \"updated_at\": \"2021-01-06 04:48:26\"\n  }\n ]\n}"}],"_postman_id":"50dc830f-8b48-4676-8525-992be134db1c"},{"name":"/variants/:variant_id/retail_inventory/count","id":"b4bf832b-6875-47f7-81db-89ccf6238309","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/retail_inventory/count","description":"<p>Get count of all retailers with variant in stock.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","name":"Product Variant Retail Inventory","type":"folder"}},"urlObject":{"path":["variants",":variant_id","retail_inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"72080ab1-1dbe-4d40-a088-a2993b87bd55","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"29289","key":"variant_id"}]}},"response":[{"id":"1a601930-9d98-4f22-bc97-ce6aa655f5f1","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/retail_inventory/count","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id","retail_inventory","count"],"variable":[{"key":"variant_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"b4bf832b-6875-47f7-81db-89ccf6238309"},{"name":"/variants/:variant_id/retail_inventory/:retailer_id","id":"85e97d0d-304b-4974-b2e7-571d20b47ad2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/retail_inventory/:retailer_id","description":"<p>Get inventory details of specific retailer for specific variant.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","name":"Product Variant Retail Inventory","type":"folder"}},"urlObject":{"path":["variants",":variant_id","retail_inventory",":retailer_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"8ffbf9db-9e0b-4f1b-9675-59a2f384c7b2","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"29289","key":"variant_id"},{"id":"28e45a76-cf52-439d-9523-7b52b9170318","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"65765ff5-ba7e-4454-9b9c-978512579a5f","name":"Inventory details of specific retailer for specific variant.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/retail_inventory/:retailer_id","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id","retail_inventory",":retailer_id"],"variable":[{"key":"variant_id"},{"key":"retailer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n  \"retailer_id\": \"25600\",\n  \"variant_id\": \"28374627\",\n  \"quantity\": \"200\",\n  \"updated_at\": \"2020-12-31 23:44:12\"\n }\n}"}],"_postman_id":"85e97d0d-304b-4974-b2e7-571d20b47ad2"}],"id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"f891672b-1cd5-4002-ab5f-657d487a5e35"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"a7199a6d-c336-4d44-a7b6-7d9108ef2ab8"}}],"_postman_id":"9302c9ba-7f0e-4ff8-829e-afc9ce5afca6","description":""},{"name":"Product Variant B2B Pricing","item":[{"name":"/variants/:variant_id/pricing_tiers","id":"76185b73-4640-435f-b037-61e8d57ef82b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/pricing_tiers?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get pricing details for a specfic variant.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","name":"Product Variant B2B Pricing","type":"folder"}},"urlObject":{"path":["variants",":variant_id","pricing_tiers"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"b8798244-a14c-4f8e-9d49-40f7d77c72c7","type":"any","value":"28374627","key":"variant_id"}]}},"response":[{"id":"dcd15f85-4416-4f29-b9d7-1cf5da5c322c","name":"Get pricing details for a specific variant","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/pricing_tiers","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id","pricing_tiers"],"variable":[{"key":"variant_id","value":"28374627"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"5231\",\n      \"variant_id\": \"28374627\",\n      \"dealer_price\": \"120.00\",\n      \"ship_to_store_price\": null,\n      \"commission_price\": \"100.00\",\n      \"created_at\": \"2020-09-13 12:30:09\",\n      \"updated_at\": \"2021-02-22 15:26:36\"\n    },\n    {\n      \"id\": \"7283\",\n      \"variant_id\": \"28374627\",\n      \"dealer_price\": \"140.00\",\n      \"ship_to_store_price\": \"150.00\",\n      \"commission_price\": \"130.00\",\n      \"created_at\": \"2020-09-13 12:34:00\",\n      \"updated_at\": \"2021-02-22 15:30:07\"\n    }\n  ]\n}"}],"_postman_id":"76185b73-4640-435f-b037-61e8d57ef82b"},{"name":"/variants/:variant_id/pricing_tiers/:pricing_tier_id","id":"3c6dac34-fe7d-4bc5-868e-709ef8cc0c99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/pricing_tiers/:pricing_tier_id","description":"<p>Get pricing details for a specific variant and dealer tier.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","name":"Product Variant B2B Pricing","type":"folder"}},"urlObject":{"path":["variants",":variant_id","pricing_tiers",":pricing_tier_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"e36ccac4-0f74-432f-b053-411a6e27aef8","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"28374627","key":"variant_id"},{"id":"5c5ce7f0-d015-4b94-81be-d34dcf7aebb7","description":{"content":"<p>(Required) Id of a dealer tier.</p>\n","type":"text/plain"},"type":"any","value":"67283","key":"pricing_tier_id"}]}},"response":[{"id":"28664c0d-2279-44d7-a255-25cca11ff397","name":"Get pricing details for specific variant.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/pricing_tiers/:pricing_tier_id","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id","pricing_tiers",":pricing_tier_id"],"variable":[{"key":"variant_id","value":"28374627","description":"(Required) Id of a product variant"},{"key":"pricing_tier_id","value":"67283","description":"(Required) Id of a dealer tier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"7283\",\n    \"variant_id\": \"28374627\",\n    \"dealer_price\": \"140.00\",\n    \"ship_to_store_price\": \"150.00\",\n    \"commission_price\": \"130.00\",\n    \"created_at\": \"2020-09-13 12:34:00\",\n    \"updated_at\": \"2021-02-22 15:30:07\"\n  }\n}"}],"_postman_id":"3c6dac34-fe7d-4bc5-868e-709ef8cc0c99"},{"name":"/variants/:variant_id/pricing_tiers","id":"dd5adf8d-6ed5-47ba-8a60-1b7b345505ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"id\": 97283, // ID from /pricing_tiers.\n  \"dealer_price\": 994.38, // or `null` to exclude from B2B\n  \"ship_to_store_price\": 221.15, // or `null` to use dealer_price\n  \"commission_price\": 221.15\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/variants/:variant_id/pricing_tiers","description":"<p>Add or edit pricing details for a specific variant's dealer tier. All price fields are optional.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","name":"Product Variant B2B Pricing","type":"folder"}},"urlObject":{"path":["variants",":variant_id","pricing_tiers"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"992484f8-d0d4-4471-9dde-b966eff80928","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"28374627","key":"variant_id"}]}},"response":[{"id":"fe7e0383-859c-45b9-a365-01b639e464c6","name":"Add pricing details for a specific variant.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": 97283,\n  \"dealer_price\": 994.38,\n  \"ship_to_store_price\": 221.15,\n  \"commission_price\": 221.15\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/variants/:variant_id/pricing_tiers","host":["https://shipearlyapp.com/api/v1"],"path":["variants",":variant_id","pricing_tiers"],"variable":[{"key":"variant_id","value":"28374627","description":"(Required) Id of a product variant"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"97283\",\n    \"variant_id\": \"28374627\",\n    \"dealer_price\": \"994.38\",\n    \"ship_to_store_price\": \"221.15\",\n    \"commission_price\": \"221.15\",\n    \"created_at\": \"2020-12-04 11:29:45\",\n    \"updated_at\": \"2021-03-11 14:38:57\"\n  }\n}"}],"_postman_id":"dd5adf8d-6ed5-47ba-8a60-1b7b345505ee"}],"id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"29b5af66-3b84-4175-afbc-4c125c3e6a4b"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"a52cb0d8-c1c7-48b0-bcff-66958be6a88d"}}],"_postman_id":"bfd4d07c-5ef9-4db6-9e79-62f5d5c7b2c5","description":""},{"name":"Product Locator","item":[{"name":"/product_locator","id":"8c937862-0cd3-47da-a897-91149dd268fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/product_locator?zip_code=90210&postal_code=K1A 0A9&country_code=US&variant_id=28374627,9189072&retailer_id=25600&delivery_method=in_store&in_stock=1&limit=5&page=1","description":"<p>With this endpoint you can retrieve retailers and their available delivery methods based on location and products. The response will contain retailer contact details, store hours, current inventory details, and their available delivery methods for the provided location and products. This response can also be filtered to only included retailers with a specific delivery method available, or just a specific retailer.</p>\n<p>Inventory details will include the variant_id, current quantity, product title, time of last update, and if the products inventory level are currently being tracked by the retailer. In the case that a products inventory levels are not tracked, <code>has_inventory_tracking</code> will be false and <code>quantity</code> and <code>updated_at</code> will be <code>null</code>. Only variants provided in the request will be included in the response.</p>\n<p>For locations in the US you will provide a US zipcode in the <code>zip_code</code> argument, for locations outside of the US, the <code>postal_code</code> argument will be used. <code>postal_code</code> must be in the format <code>A1B 2C3</code>.</p>\n<p><code>variant_id</code> can be a singular variant_id or a comma separated list of variant_ids. These variant ids will be the ids of the variants in your ecommerce platform.</p>\n<p><code>delivery_method</code>, if provided, must be one of the following values: <code>in_store</code>, <code>local_delivery</code>, <code>ship_from_store</code>, <code>local_install</code></p>\n<p><code>retailer_id</code> must be a singular retailer id as responded from this endpoint or from <code>/retailers</code></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef48afa3-4847-4944-baa8-7979e518adc7","id":"ef48afa3-4847-4944-baa8-7979e518adc7","name":"Product Locator","type":"folder"}},"urlObject":{"path":["product_locator"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Required for locations in the US, cannot be used with <code>postal_code</code></p>\n","type":"text/plain"},"key":"zip_code","value":"90210"},{"description":{"content":"<p>Required for locations outside of the US, cannot be used with <code>zip_code</code></p>\n","type":"text/plain"},"key":"postal_code","value":"K1A 0A9"},{"description":{"content":"<p>Optional ISO 3166-1 2-letter country code. Required for countries outside of <code>US</code> and <code>CA</code>.<br />\nDefaults to <code>US</code> if <code>zip_code</code> is provided or <code>CA</code> if <code>postal_code</code> is provided.</p>\n","type":"text/plain"},"key":"country_code","value":"US"},{"description":{"content":"<p>Required. Must be a comma separated list of variant ids from the ecommerce platform</p>\n","type":"text/plain"},"key":"variant_id","value":"28374627,9189072"},{"description":{"content":"<p>Optional. May be provided to restrict the results to a specific retailer</p>\n","type":"text/plain"},"key":"retailer_id","value":"25600"},{"description":{"content":"<p>Optional. May be provided to restrict the results to retailers with the specified delivery method available.</p>\n<p>Valid values are:\n<code>in_store</code>\n<code>local_delivery</code>\n<code>ship_from_store</code>\n<code>local_install</code></p>\n","type":"text/plain"},"key":"delivery_method","value":"in_store"},{"description":{"content":"<p>Optional. Restrict the results to retailers that are either<br />\n1: in-stock for all items<br />\n0: out-of-stock of at least one item.</p>\n","type":"text/plain"},"key":"in_stock","value":"1"},{"description":{"content":"<p>Optional limit for the max number of retailers to fetch. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"<p>Optional page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"4b47db48-6c95-4ecf-becc-7485c6201a3d","name":"Get retailers available for a product","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/product_locator?postal_code=K1A 0A9&variant_id=28374627,9189072","host":["https://shipearlyapp.com/api/v1"],"path":["product_locator"],"query":[{"key":"postal_code","value":"K1A 0A9","description":"Required for locations outside of the US"},{"key":"variant_id","value":"28374627,9189072","description":"Required. Must be a comma separated list of variant ids from the ecommerce platform"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"4326346\",\n      \"distance\": \"0.619\",\n      \"distance_unit\": \"km\",\n      \"delivery_methods\": [\n        \"local_install\",\n        \"local_delivery\",\n        \"in_store\"\n      ],\n      \"email_address\": \"admin@retailerA.com\",\n      \"company_name\": \"Retailer A\",\n      \"store_timing\": {\n        \"1\": {\n          \"weekday\": \"Monday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"2\": {\n          \"weekday\": \"Tuesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"3\": {\n          \"weekday\": \"Wednesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"4\": {\n          \"weekday\": \"Thursday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"5\": {\n          \"weekday\": \"Friday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"6\": {\n          \"weekday\": \"Saturday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"7\": {\n          \"weekday\": \"Sunday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        }\n      },\n      \"city\": \"Ottawa\",\n      \"zipcode\": \"K1P 5K8\",\n      \"latitude\": \"45.4215565\",\n      \"longitude\": \"-75.6936530\",\n      \"address1\": \"100 Elgin St\",\n      \"address2\": \"\",\n      \"state\": \"Ontario\",\n      \"country\": \"Canada\",\n      \"telephone\": \"8005555555\",\n      \"inventory\": [\n        {\n          \"has_inventory_tracking\": true,\n          \"in_stock\": true,\n          \"quantity\": 22,\n          \"variant_id\": \"9189072\",\n          \"variant_shipearly_id\": \"9189072\",\n          \"sku\": \"OEH-23456874\",\n          \"upc\": \"0000024824545\",\n          \"variant_title\": \"Over Ear Headphones - Blue\",\n          \"updated_at\": \"2022-09-01 13:25:59\"\n        },\n        {\n          \"has_inventory_tracking\": true,\n          \"in_stock\": true,\n          \"quantity\": 33,\n          \"variant_id\": \"28374627\",\n          \"variant_shipearly_id\": \"198223\",\n          \"sku\": \"WS-37861234\",\n          \"upc\": \"0000023789462\",\n          \"variant_title\": \"Wireless Speaker - Blue\",\n          \"updated_at\": \"2022-09-01 15:45:40\"\n        }\n      ]\n    },\n    {\n      \"id\": \"499234\",\n      \"distance\": \"0.982\",\n      \"distance_unit\": \"km\",\n      \"delivery_methods\": [\n        \"local_install\",\n        \"local_delivery\",\n        \"in_store\",\n        \"ship_from_store\"\n      ],\n      \"email_address\": \"mgmt@retailerb.com\",\n      \"company_name\": \"retailer B\",\n      \"store_timing\": {\n        \"1\": {\n          \"weekday\": \"Monday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"2\": {\n          \"weekday\": \"Tuesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"3\": {\n          \"weekday\": \"Wednesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"4\": {\n          \"weekday\": \"Thursday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"5\": {\n          \"weekday\": \"Friday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"6\": {\n          \"weekday\": \"Saturday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"7\": {\n          \"weekday\": \"Sunday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        }\n      },\n      \"city\": \"Ottawa\",\n      \"zipcode\": \"K2P 1L8\",\n      \"latitude\": \"45.4184827\",\n      \"longitude\": \"-75.6905756\",\n      \"address1\": \"255 Elgin St\",\n      \"address2\": \"\",\n      \"state\": \"Ontario\",\n      \"country\": \"Canada\",\n      \"telephone\": \"8005555555\",\n      \"inventory\": [\n        {\n          \"has_inventory_tracking\": true,\n          \"in_stock\": true,\n          \"quantity\": 22,\n          \"variant_id\": \"9189072\",\n          \"variant_shipearly_id\": \"9189072\",\n          \"sku\": \"OEH-23456874\",\n          \"upc\": \"0000024824545\",\n          \"variant_title\": \"Over Ear Headphones - Blue\",\n          \"updated_at\": \"2022-08-29 09:43:33\"\n        },\n        {\n          \"has_inventory_tracking\": false,\n          \"in_stock\": false,\n          \"quantity\": null,\n          \"variant_id\": \"198223\",\n          \"variant_shipearly_id\": \"198223\",\n          \"sku\": \"WS-37861234\",\n          \"upc\": \"0000023789462\",\n          \"variant_title\": \"Wireless Speaker - Blue\",\n          \"updated_at\": null\n        }\n      ]\n    }\n  ]\n}"},{"id":"8e9abe4e-9d8d-4916-8f7b-66bf71e817eb","name":"Filter by retailer id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/product_locator?postal_code=K1A 0A9&variant_id=28374627,9189072&retailer_id=4326346","host":["https://shipearlyapp.com/api/v1"],"path":["product_locator"],"query":[{"key":"postal_code","value":"K1A 0A9"},{"key":"variant_id","value":"28374627,9189072"},{"key":"retailer_id","value":"4326346"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"4326346\",\n      \"distance\": \"0.619\",\n      \"distance_unit\": \"km\",\n      \"delivery_methods\": [\n        \"local_install\",\n        \"local_delivery\",\n        \"in_store\"\n      ],\n      \"email_address\": \"admin@retailerA.com\",\n      \"company_name\": \"Retailer A\",\n      \"store_timing\": {\n        \"1\": {\n          \"weekday\": \"Monday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"2\": {\n          \"weekday\": \"Tuesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"3\": {\n          \"weekday\": \"Wednesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"4\": {\n          \"weekday\": \"Thursday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"5\": {\n          \"weekday\": \"Friday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"6\": {\n          \"weekday\": \"Saturday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"7\": {\n          \"weekday\": \"Sunday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        }\n      },\n      \"city\": \"Ottawa\",\n      \"zipcode\": \"K1P 5K8\",\n      \"latitude\": \"45.4215565\",\n      \"longitude\": \"-75.6936530\",\n      \"address1\": \"100 Elgin St\",\n      \"address2\": \"\",\n      \"state\": \"Ontario\",\n      \"country\": \"Canada\",\n      \"telephone\": \"8005555555\",\n      \"inventory\": [\n        {\n          \"has_inventory_tracking\": true,\n          \"in_stock\": true,\n          \"quantity\": 22,\n          \"variant_id\": \"9189072\",\n          \"variant_shipearly_id\": \"9189072\",\n          \"sku\": \"OEH-23456874\",\n          \"upc\": \"0000024824545\",\n          \"variant_title\": \"Over Ear Headphones - Blue\",\n          \"updated_at\": \"2022-09-01 13:25:59\"\n        },\n        {\n          \"has_inventory_tracking\": true,\n          \"in_stock\": true,\n          \"quantity\": 33,\n          \"variant_id\": \"28374627\",\n          \"variant_shipearly_id\": \"198223\",\n          \"sku\": \"WS-37861234\",\n          \"upc\": \"0000023789462\",\n          \"variant_title\": \"Wireless Speaker - Blue\",\n          \"updated_at\": \"2022-09-01 15:45:40\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"a37d6ae0-5449-4d43-b9c0-f575374f14ab","name":"Filter by fulfillment method","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/product_locator?postal_code=K1A 0A9&variant_id=28374627,9189072&delivery_method=ship_from_store","host":["https://shipearlyapp.com/api/v1"],"path":["product_locator"],"query":[{"key":"postal_code","value":"K1A 0A9","description":"Required for locations outside of the US, cannot be used with zipcode"},{"key":"variant_id","value":"28374627,9189072","description":"Required. Must be a comma separated list of variant ids from the ecommerce platform"},{"key":"delivery_method","value":"ship_from_store","description":"Optional, May be provided to restrict the results to retailers with the specified delivery method available.\n\nValid values are:\nin_store\nlocal_delivery\nship_from_store\nlocal_install"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"499234\",\n      \"distance\": \"0.982\",\n      \"distance_unit\": \"km\",\n      \"delivery_methods\": [\n        \"local_install\",\n        \"local_delivery\",\n        \"in_store\",\n        \"ship_from_store\"\n      ],\n      \"email_address\": \"mgmt@retailerb.com\",\n      \"company_name\": \"retailer B\",\n      \"store_timing\": {\n        \"1\": {\n          \"weekday\": \"Monday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"2\": {\n          \"weekday\": \"Tuesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"3\": {\n          \"weekday\": \"Wednesday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"4\": {\n          \"weekday\": \"Thursday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"5\": {\n          \"weekday\": \"Friday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"6\": {\n          \"weekday\": \"Saturday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        },\n        \"7\": {\n          \"weekday\": \"Sunday\",\n          \"start\": \"9:00 AM\",\n          \"end\": \"7:00 PM\",\n          \"Closed\": \"0\"\n        }\n      },\n      \"city\": \"Ottawa\",\n      \"zipcode\": \"K2P 1L8\",\n      \"latitude\": \"45.4184827\",\n      \"longitude\": \"-75.6905756\",\n      \"address1\": \"255 Elgin St\",\n      \"address2\": \"\",\n      \"state\": \"Ontario\",\n      \"country\": \"Canada\",\n      \"telephone\": \"8005555555\",\n      \"inventory\": [\n        {\n          \"has_inventory_tracking\": true,\n          \"in_stock\": true,\n          \"quantity\": 22,\n          \"variant_id\": \"9189072\",\n          \"variant_shipearly_id\": \"9189072\",\n          \"sku\": \"OEH-23456874\",\n          \"upc\": \"0000024824545\",\n          \"variant_title\": \"Over Ear Headphones - Blue\",\n          \"updated_at\": \"2022-08-29 09:43:33\"\n        },\n        {\n          \"has_inventory_tracking\": false,\n          \"in_stock\": false,\n          \"quantity\": null,\n          \"variant_id\": \"198223\",\n          \"variant_shipearly_id\": \"198223\",\n          \"sku\": \"WS-37861234\",\n          \"upc\": \"0000023789462\",\n          \"variant_title\": \"Wireless Speaker - Blue\",\n          \"updated_at\": null\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"8c937862-0cd3-47da-a897-91149dd268fc"}],"id":"ef48afa3-4847-4944-baa8-7979e518adc7","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"58e4f8b0-9016-4d81-b811-28e94309bb20"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"8e0094ab-db80-4865-9d43-29c604c2978f"}}],"_postman_id":"ef48afa3-4847-4944-baa8-7979e518adc7","description":""},{"name":"Retailers","item":[{"name":"/retailers","id":"7b8041e1-cff0-4e03-b0b8-d0f6976d5bfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get details for all retailers.</p>\n<p>The response object will contain details of all retailer that match the provide filter conditions.  </p>\n<p>Any branches of a particular retailer will appear in the <code>branches</code> field in the response object.  These branches will contain only information that is specific to the branch like: address, dealer tier, delivery and protect radius, etc.  Any information not in the branch object will be inherited from the parent retailer.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"bbc7dadd-3200-4f43-87af-721fc4c2e395","name":"Details about all retailers.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"25600\",\n      \"account_id\": \"E1#113594\",\n      \"status\": \"Connected\",\n      \"company_name\": \"Company A\",\n      \"address1\": \"4094 Garfield Road\",\n      \"address2\": \"Suite 309\",\n      \"city\": \"Chicago\",\n      \"state_code\": \"IL\",\n      \"zip_code\": \"61614\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.853196\",\n      \"longitude\": \"-87.601958\",\n      \"pricing_tier_id\": \"7283\",\n      \"sales_reps\": [\n        \"28767\",\n        \"82632\"\n      ],\n      \"credit_terms\": [\n        \"532\",\n        \"455\"\n      ],\n      \"territory\": \"West\",\n      \"default_warehouse_id\": \"53433\",\n      \"dealer_protect_radius\": \"50\",\n      \"local_delivery_radius\": \"150\",\n      \"billing_email\": \"billing@companya.com\",\n      \"billing_company\": \"Company A\",\n      \"credit_limit\": \"5000\",\n      \"enable_credit_card\": true,\n      \"enable_on_file_payment\": true,\n      \"is_installer\": false,\n      \"ship_from_store_distance\": \"300\",\n      \"is_non_stocking\": true,\n      \"b2b_tax_rate\": \"13.0000\",\n      \"b2b_minimum_order_value\": \"0.00\",\n      \"has_active_inventory_integration\": true,\n      \"branches\": [\n        {\n          \"address1\": \"2342 Goodwin Plaza\",\n          \"address2\": \"PO BOX 880\",\n          \"status\": \"Connected\",\n          \"state_code\": \"AB\",\n          \"country_code\": \"CA\",\n          \"account_id\": \"53114900\",\n          \"pricing_tier_id\": \"2352\",\n          \"dealer_protect_radius\": \"900\",\n          \"local_delivery_radius\": \"900\",\n          \"is_installer\": false,\n          \"ship_from_store_distance\": \"500\",\n          \"is_non_stocking\": false,\n          \"created_at\": \"2020-12-17 09:13:01\",\n          \"updated_at\": \"2022-01-25 12:10:48\",\n          \"id\": \"43634\",\n          \"company_name\": \"Company A Branch 1\",\n          \"city\": \"Rutherfordstad\",\n          \"zip_code\": \"P7A 4R5\",\n          \"latitude\": \"48.4486777\",\n          \"longitude\": \"-89.1986742\"\n        },\n        {\n          \"address1\": \"394 Monahan Square\",\n          \"address2\": \"PO BOX 619\",\n          \"status\": \"Connected\",\n          \"state_code\": \"AB\",\n          \"country_code\": \"CA\",\n          \"account_id\": \"4352344\",\n          \"pricing_tier_id\": \"3522\",\n          \"dealer_protect_radius\": \"0\",\n          \"local_delivery_radius\": \"500\",\n          \"is_installer\": true,\n          \"ship_from_store_distance\": \"750\",\n          \"is_non_stocking\": false,\n          \"created_at\": \"2020-12-17 15:51:15\",\n          \"updated_at\": \"2022-01-25 12:10:48\",\n          \"id\": \"74\",\n          \"company_name\": \"Company A Branch 2\",\n          \"city\": \"Pourostown\",\n          \"zip_code\": \"P7E 4T9\",\n          \"latitude\": \"48.3732261\",\n          \"longitude\": \"-89.283635\"\n        }\n      ],\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\"\n    },\n    {\n      \"id\": \"52345\",\n      \"account_id\": \"0817822\",\n      \"status\": \"Pending\",\n      \"company_name\": \"Company B\",\n      \"address1\": \"805 Colony Street\",\n      \"address2\": \"\",\n      \"city\": \"North Haven\",\n      \"state_code\": \"CT\",\n      \"zip_code\": \"06473\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.385205\",\n      \"longitude\": \"-72.85967\",\n      \"pricing_tier_id\": \"5231\",\n      \"sales_reps\": [\n        \"25602\",\n        \"76845\"\n      ],\n      \"credit_terms\": [\n        \"532\",\n        \"455\"\n      ],\n      \"territory\": \"Central\",\n      \"default_warehouse_id\": \"53433\",\n      \"dealer_protect_radius\": \"50\",\n      \"local_delivery_radius\": \"50\",\n      \"billing_email\": \"billing@companyb.com\",\n      \"billing_company\": \"Company B\",\n      \"credit_limit\": \"2500\",\n      \"enable_credit_card\": false,\n      \"enable_on_file_payment\": true,\n      \"is_installer\": false,\n      \"ship_from_store_distance\": \"300\",\n      \"is_non_stocking\": true,\n      \"b2b_tax_rate\": \"13.0000\",\n      \"b2b_minimum_order_value\": \"0.00\",\n      \"has_active_inventory_integration\": false,\n      \"branches\": [],\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\"\n    }\n  ]\n}"}],"_postman_id":"7b8041e1-cff0-4e03-b0b8-d0f6976d5bfb"},{"name":"/retailers/count","id":"7a426f23-8198-4285-9b43-0752c746e1b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/count","description":"<p>Get count of all retailers.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2d3c60ff-5dce-4d17-a44a-74d817124f46","name":"Count of all Retailers","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"7a426f23-8198-4285-9b43-0752c746e1b1"},{"name":"/retailers/:retailer_id","id":"5f8c0e2c-ff71-4c14-b694-db43fdf8de8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id","description":"<p>This endpoint retrieves the details for a specific retailer identified by <code>retailer_id</code>.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6f3a3941-bc12-45ea-9619-9818d4a37f85","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"4b2f4548-d41e-43d2-9c2a-29f4282973b8","name":"Details for a specific retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","retailers",":retailer_id"],"variable":[{"key":"retailer_id","value":"25600"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"25600\",\n    \"account_id\": \"E1#113594\",\n    \"status\": \"Connected\",\n    \"company_name\": \"Company A\",\n    \"address1\": \"4094 Garfield Road\",\n    \"address2\": \"Suite 309\",\n    \"city\": \"Chicago\",\n    \"state_code\": \"IL\",\n    \"zip_code\": \"61614\",\n    \"country_code\": \"US\",\n    \"latitude\": \"41.853196\",\n    \"longitude\": \"-87.601958\",\n    \"pricing_tier_id\": \"7283\",\n    \"sales_reps\": [\n      \"28767\",\n      \"82632\"\n    ],\n    \"credit_terms\": [\n      \"532\",\n      \"455\"\n    ],\n    \"territory\": \"West\",\n    \"default_warehouse_id\": \"53433\",\n    \"dealer_protect_radius\": \"50\",\n    \"local_delivery_radius\": \"150\",\n    \"billing_email\": \"billing@companya.com\",\n    \"billing_company\": \"Company A\",\n    \"credit_limit\": \"5000\",\n    \"enable_credit_card\": true,\n    \"enable_on_file_payment\": true,\n    \"is_installer\": false,\n    \"ship_from_store_distance\": \"300\",\n    \"is_non_stocking\": true,\n    \"b2b_tax_rate\": \"13.0000\",\n    \"b2b_minimum_order_value\": \"0.00\",\n    \"has_active_inventory_integration\": true,\n    \"branches\": [\n      {\n        \"address1\": \"2342 Goodwin Plaza\",\n        \"address2\": \"PO BOX 880\",\n        \"status\": \"Connected\",\n        \"state_code\": \"AB\",\n        \"country_code\": \"CA\",\n        \"account_id\": \"53114900\",\n        \"pricing_tier_id\": \"2352\",\n        \"dealer_protect_radius\": \"900\",\n        \"local_delivery_radius\": \"900\",\n        \"is_installer\": false,\n        \"ship_from_store_distance\": \"500\",\n        \"is_non_stocking\": false,\n        \"created_at\": \"2020-12-17 09:13:01\",\n        \"updated_at\": \"2022-01-25 12:10:48\",\n        \"id\": \"43634\",\n        \"company_name\": \"Company A Branch 1\",\n        \"city\": \"Rutherfordstad\",\n        \"zip_code\": \"P7A 4R5\",\n        \"latitude\": \"48.4486777\",\n        \"longitude\": \"-89.1986742\"\n      },\n      {\n        \"address1\": \"394 Monahan Square\",\n        \"address2\": \"PO BOX 619\",\n        \"status\": \"Connected\",\n        \"state_code\": \"AB\",\n        \"country_code\": \"CA\",\n        \"account_id\": \"4352344\",\n        \"pricing_tier_id\": \"3522\",\n        \"dealer_protect_radius\": \"0\",\n        \"local_delivery_radius\": \"500\",\n        \"is_installer\": true,\n        \"ship_from_store_distance\": \"750\",\n        \"is_non_stocking\": false,\n        \"created_at\": \"2020-12-17 15:51:15\",\n        \"updated_at\": \"2022-01-25 12:10:48\",\n        \"id\": \"74\",\n        \"company_name\": \"Company A Branch 2\",\n        \"city\": \"Pourostown\",\n        \"zip_code\": \"P7E 4T9\",\n        \"latitude\": \"48.3732261\",\n        \"longitude\": \"-89.283635\"\n      }\n    ],\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n  }\n}"}],"_postman_id":"5f8c0e2c-ff71-4c14-b694-db43fdf8de8f"},{"name":"/retailers/:retailer_id","id":"1efc4e32-7ebf-4265-bd1c-9360ae9e4112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"pricing_tier_id\": 67283,\n    \"account_id\": \"E1#86783264\",\n    \"territory\": \"East\",\n    \"billing_company\": \"Dooley LLC\",\n    \"billing_email\": \"Terence_Sanford79@gmail.com\",\n    \"dealer_protect_radius\": 617,\n    \"credit_limit\": 510.16,\n    \"local_delivery_radius\": 150,\n    \"default_warehouse_id\": 53433,\n    \"enable_credit_card\": true,\n    \"enable_on_file_payment\": false,\n    \"is_installer\": true,\n    \"is_non_stocking\": false,\n    \"state_code\": \"BC\",\n    \"country_code\": \"CA\",\n    \"address1\": \"4094 Garfield Road\",\n    \"address2\": \"Suite 309\",\n    \"city\": \"Vancouver\",\n    \"zipcode\": \"V6G 1W5\",\n    \"sales_reps\": [\n        24234,\n        6845\n    ],\n    \"credit_terms\": [\n        7568,\n        532\n    ],\n    \"status\": \"Not Connected\" // Must be one of ['Connected', 'Not Connected']\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id","description":"<p>Edit details of a retailer.</p>\n<p>The fields available to edit are listed in the example request body below.  </p>\n<p>To connect or disconnect a retailer, include the status field in the request with the corresonding <code>['Connected', 'Not Connected']</code> value.</p>\n<p>When updating the <code>territory</code> field,  You may provide any string as a territory.  If a territory exists matching that name, it will be used, otherwise a new territory will be created and visible in the <code>/territories</code> endpoint.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"73853c9e-a358-4208-83d2-a1ad18803d54","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"258b2f82-0573-4709-8cc7-c89841c06d3a","name":"Edit details of specific retailer.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pricing_tier_id\": 67283,\n    \"account_id\": \"E1#86783264\",\n    \"territory\": \"East\",\n    \"billing_company\": \"Dooley LLC\",\n    \"billing_email\": \"Terence_Sanford79@gmail.com\",\n    \"dealer_protect_radius\": 617,\n    \"credit_limit\": 510.16,\n    \"local_delivery_radius\": 150,\n    \"default_warehouse_id\": 53433,\n    \"enable_credit_card\": true,\n    \"enable_on_file_payment\": false,\n    \"is_installer\": true,\n    \"is_non_stocking\": false,\n    \"state_code\": \"BC\",\n    \"country_code\": \"CA\",\n    \"address1\": \"4094 Garfield Road\",\n    \"address2\": \"Suite 309\",\n    \"city\": \"Vancouver\",\n    \"zipcode\": \"V6G 1W5\",\n    \"sales_reps\": [\n        24234,\n        6845\n    ],\n    \"credit_terms\": [\n        7568,\n        532\n    ],\n    \"status\": \"Not Connected\" // Must be one of ['Connected', 'Not Connected']\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id","protocol":"https","host":["shipearlyapp","com"],"path":["api","v1","retailers",":retailer_id"],"variable":[{"key":"retailer_id","value":"25600"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"25600\",\n    \"account_id\": \"E1#86783264\",\n    \"status\": \"Not Connected\",\n    \"company_name\": \"Company A\",\n    \"address1\": \"4094 Garfield Road\",\n    \"address2\": \"Suite 309\",\n    \"city\": \"Vancouver\",\n    \"state_code\": \"BC\",\n    \"zip_code\": \"V6G 1W5\",\n    \"country_code\": \"CA\",\n    \"latitude\": \"49.286839\",\n    \"longitude\": \"-123.140974\",\n    \"pricing_tier_id\": \"67283\",\n    \"sales_reps\": [\n      \"24234\",\n      \"6845\"\n    ],\n    \"credit_terms\": [\n      \"7568\",\n      \"532\"\n    ],\n    \"territory\": \"East\",\n    \"default_warehouse_id\": \"53433\",\n    \"dealer_protect_radius\": \"617\",\n    \"local_delivery_radius\": \"150\",\n    \"billing_email\": \"Terence_Sanford79@gmail.com\",\n    \"billing_company\": \"Dooley LLC\",\n    \"credit_limit\": \"510.16\",\n    \"enable_credit_card\": true,\n    \"enable_on_file_payment\": false,\n    \"is_installer\": true,\n    \"ship_from_store_distance\": \"300\",\n    \"is_non_stocking\": false,\n    \"b2b_tax_rate\": \"13.0000\",\n    \"b2b_minimum_order_value\": \"0.00\",\n    \"has_active_inventory_integration\": true,\n    \"branches\": [\n      {\n        \"address1\": \"2342 Goodwin Plaza\",\n        \"address2\": \"PO BOX 880\",\n        \"status\": \"Connected\",\n        \"state_code\": \"AB\",\n        \"country_code\": \"CA\",\n        \"account_id\": \"53114900\",\n        \"pricing_tier_id\": \"2352\",\n        \"dealer_protect_radius\": \"900\",\n        \"local_delivery_radius\": \"900\",\n        \"is_installer\": false,\n        \"ship_from_store_distance\": \"500\",\n        \"is_non_stocking\": false,\n        \"created_at\": \"2020-12-17 09:13:01\",\n        \"updated_at\": \"2022-01-25 12:10:48\",\n        \"id\": \"43634\",\n        \"company_name\": \"Company A Branch 1\",\n        \"city\": \"Rutherfordstad\",\n        \"zip_code\": \"P7A 4R5\",\n        \"latitude\": \"48.4486777\",\n        \"longitude\": \"-89.1986742\"\n      },\n      {\n        \"address1\": \"394 Monahan Square\",\n        \"address2\": \"PO BOX 619\",\n        \"status\": \"Connected\",\n        \"state_code\": \"AB\",\n        \"country_code\": \"CA\",\n        \"account_id\": \"4352344\",\n        \"pricing_tier_id\": \"3522\",\n        \"dealer_protect_radius\": \"0\",\n        \"local_delivery_radius\": \"500\",\n        \"is_installer\": true,\n        \"ship_from_store_distance\": \"750\",\n        \"is_non_stocking\": false,\n        \"created_at\": \"2020-12-17 15:51:15\",\n        \"updated_at\": \"2022-01-25 12:10:48\",\n        \"id\": \"74\",\n        \"company_name\": \"Company A Branch 2\",\n        \"city\": \"Pourostown\",\n        \"zip_code\": \"P7E 4T9\",\n        \"latitude\": \"48.3732261\",\n        \"longitude\": \"-89.283635\"\n      }\n    ],\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n  }\n}"}],"_postman_id":"1efc4e32-7ebf-4265-bd1c-9360ae9e4112"},{"name":"/retailers/:retailer_id/branches","id":"b467865e-3d0a-4158-90a9-83d7cc209cd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/branches","description":"<p>List branches for a retailer.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","branches"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"cc6bc626-834a-48b2-9d74-b73734348c12","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"58570780-c52e-4968-b61f-43e68a10ece9","name":"List branches for a retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/branches","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","branches"],"variable":[{"key":"retailer_id","value":"25600"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"address1\": \"2342 Goodwin Plaza\",\n            \"address2\": \"PO BOX 880\",\n            \"status\": \"Connected\",\n            \"state_code\": \"AB\",\n            \"country_code\": \"CA\",\n            \"account_id\": \"53114900\",\n            \"pricing_tier_id\": \"2352\",\n            \"dealer_protect_radius\": \"900\",\n            \"local_delivery_radius\": \"900\",\n            \"is_installer\": false,\n            \"ship_from_store_distance\": \"500\",\n            \"is_non_stocking\": false,\n            \"created_at\": \"2020-12-17 09:13:01\",\n            \"updated_at\": \"2022-01-25 12:10:48\",\n            \"id\": \"43634\",\n            \"company_name\": \"Company A Branch 1\",\n            \"city\": \"Rutherfordstad\",\n            \"zip_code\": \"P7A 4R5\",\n            \"latitude\": \"48.4486777\",\n            \"longitude\": \"-89.1986742\"\n        },\n        {\n            \"address1\": \"394 Monahan Square\",\n            \"address2\": \"PO BOX 619\",\n            \"status\": \"Connected\",\n            \"state_code\": \"AB\",\n            \"country_code\": \"CA\",\n            \"account_id\": \"4352344\",\n            \"pricing_tier_id\": \"3522\",\n            \"dealer_protect_radius\": \"0\",\n            \"local_delivery_radius\": \"500\",\n            \"is_installer\": true,\n            \"ship_from_store_distance\": \"750\",\n            \"is_non_stocking\": false,\n            \"created_at\": \"2020-12-17 15:51:15\",\n            \"updated_at\": \"2022-01-25 12:10:48\",\n            \"id\": \"74\",\n            \"company_name\": \"Company A Branch 2\",\n            \"city\": \"Pourostown\",\n            \"zip_code\": \"P7E 4T9\",\n            \"latitude\": \"48.3732261\",\n            \"longitude\": \"-89.283635\"\n        }\n    ]\n}"}],"_postman_id":"b467865e-3d0a-4158-90a9-83d7cc209cd6"},{"name":"/retailers/:retailer_id/branches/:branch_id","id":"20ccfa41-d874-4700-a770-c95409f9b0e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/branches/:branch_id","description":"<p>Get details for a specific branch of a retailer.</p>\n<p>The response will contain only fields specific to the branch being retrieved.  Fields avialable from the parent retailer but not from the branch will be inherited be the branch.  e.g. <code>billing_company</code>, <code>billing_email</code></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","branches",":branch_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"a844d997-8711-413e-a6cd-4bfb0dd5020d","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"},{"id":"07b54cea-cbe7-4310-8bf4-ceee9cf819cf","type":"any","value":"43634","key":"branch_id"}]}},"response":[{"id":"0c237bbe-9bc8-4820-9752-b05b150a6688","name":"Details for a specific branch of a retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/branches/:branch_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","branches",":branch_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"branch_id","value":"43634"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n        \"address1\": \"2342 Goodwin Plaza\",\n        \"address2\": \"PO BOX 880\",\n        \"status\": \"Connected\",\n        \"state_code\": \"AB\",\n        \"country_code\": \"CA\",\n        \"account_id\": \"53114900\",\n        \"pricing_tier_id\": \"2352\",\n        \"dealer_protect_radius\": \"900\",\n        \"local_delivery_radius\": \"900\",\n        \"is_installer\": false,\n        \"ship_from_store_distance\": \"500\",\n        \"is_non_stocking\": false,\n        \"created_at\": \"2020-12-17 09:13:01\",\n        \"updated_at\": \"2022-01-25 12:10:48\",\n        \"id\": \"43634\",\n        \"company_name\": \"Company A Branch 1\",\n        \"city\": \"Rutherfordstad\",\n        \"zip_code\": \"P7A 4R5\",\n        \"latitude\": \"48.4486777\",\n        \"longitude\": \"-89.1986742\"\n    }\n}"}],"_postman_id":"20ccfa41-d874-4700-a770-c95409f9b0e1"},{"name":"/retailers/:retailer_id/branches/:branch_id","id":"873cf8d1-95ef-457f-9728-39c66dc144cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"pricing_tier_id\": 4563,\n    \"account_id\": \"54634564\",\n    \"dealer_protect_radius\": 750,\n    \"local_delivery_radius\": 750,\n    \"ship_from_store_distance\": 500,\n    \"is_installer\": false,\n    \"is_non_stocking\": true,\n    \"state_code\": \"ON\",\n    \"country_code\": \"CA\",\n    \"address1\": \"1800 Sheppard Ave E\",\n    \"address2\": \"\",\n    \"city\": \"Toronto\",\n    \"zipcode\": \"M2J 5A7\",\n    \"status\": \"Not Connected\" // Must be one of ['Connected', 'Not Connected']\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/branches/:branch_id","description":"<p>Edit details for a specific branch of a retailer.</p>\n<p>This is similar to <code>PUT /retailers/:retailer_id</code> but some fields are not available in <code>PUT /retailer/:retailer_id/branches/:branch_id</code>.  Only fields specific to the branch are available for edit from this endpoint. Other fields editable from <code>PUT /retailers/:retailer_id</code> will be inherited from the parent retailer.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7","id":"62922d6c-4886-44db-bc77-0010ace9d5e7","name":"Retailers","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","branches",":branch_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"535b2de1-a94c-4cb7-85d9-db2ed9c73f70","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"},{"id":"b5fb3c78-7df8-417c-8b7e-5e08203d3485","type":"any","value":"43634","key":"branch_id"}]}},"response":[{"id":"59e117c9-3890-4f93-87c8-8a6b355802d9","name":"Edit details for a specific branch of a retailer.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pricing_tier_id\": 4563,\n    \"account_id\": \"54634564\",\n    \"dealer_protect_radius\": 750,\n    \"local_delivery_radius\": 750,\n    \"ship_from_store_distance\": 500,\n    \"is_installer\": false,\n    \"is_non_stocking\": true,\n    \"state_code\": \"ON\",\n    \"country_code\": \"CA\",\n    \"address1\": \"1800 Sheppard Ave E\",\n    \"address2\": \"\",\n    \"city\": \"Toronto\",\n    \"zipcode\": \"M2J 5A7\",\n    \"status\": \"Not Connected\" // Must be one of ['Connected', 'Not Connected']\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/branches/:branch_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","branches",":branch_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"branch_id","value":"43634"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"address1\": \"1800 Sheppard Ave E\",\n        \"address2\": \"\",\n        \"status\": \"Not Connected\",\n        \"state_code\": \"ON\",\n        \"country_code\": \"CA\",\n        \"account_id\": \"54634564\",\n        \"pricing_tier_id\": \"4563\",\n        \"dealer_protect_radius\": \"750\",\n        \"local_delivery_radius\": \"750\",\n        \"is_installer\": false,\n        \"ship_from_store_distance\": \"500\",\n        \"is_non_stocking\": true,\n        \"created_at\": \"2020-12-17 09:13:01\",\n        \"updated_at\": \"2022-01-25 12:10:48\",\n        \"id\": \"43634\",\n        \"company_name\": \"Company A Branch 1\",\n        \"city\": \"Toronto\",\n        \"zip_code\": \"M2J 5A7\",\n        \"latitude\": \"43.77831\",\n        \"longitude\": \"-79.343865\"\n    }\n}"}],"_postman_id":"873cf8d1-95ef-457f-9728-39c66dc144cc"}],"id":"62922d6c-4886-44db-bc77-0010ace9d5e7","description":"<p>Access or edit retailer details.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>\"id\": \"25600\"</code> <br />(read-only)</td>\n<td>The ID of the retailer record.</td>\n</tr>\n<tr>\n<td><code>\"company_name\": \"Company A\"</code> <br />(read-only)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"city\": \"Chicago\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"zip_code\": \"61614\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"latitude\": \"41.853196\"</code> <br />(read-only)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"longitude\": \"-87.601958\"</code> <br />(read-only)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"address1\": \"4094 Garfield Road\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"address2\": \"Suite 309\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"state_code\": \"IL\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"country_code\": \"US\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"has_active_inventory_integration\": true</code> <br />(read-only)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"account_id\": \"E1#113594\"</code></td>\n<td>Custom external ID for the retailer.</td>\n</tr>\n<tr>\n<td><code>\"pricing_tier_id\": \"7283\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"billing_email\": \"billing@companya.com\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"billing_company\": \"Company A\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"dealer_protect_radius\": \"50\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"local_delivery_radius\": \"150\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"credit_limit\": \"5000\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"enable_credit_card\": true</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"enable_on_file_payment\": true</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"is_installer\": false</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"ship_from_store_distance\": \"300\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"is_non_stocking\": true</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"b2b_minimum_order_value\": \"0.00\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"default_warehouse_id\": \"53433\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"created_at\": \"2020-04-13 05:06:37\"</code> <br />(read-only)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"updated_at\": \"2020-11-30 22:42:11\"</code> <br />(read-only)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"status\": \"Connected\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"territory\": \"West\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"b2b_tax_rate\": \"13.0000\"</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>\"sales_reps\": [ \"28767\", \"82632\" ]</code></td>\n<td>Array of sales rep ids.</td>\n</tr>\n<tr>\n<td><code>\"credit_terms\": [ \"532\", \"455\" ]</code></td>\n<td>Array of credit term ids.</td>\n</tr>\n<tr>\n<td><code>\"branches\": [...]</code></td>\n<td>Array of branch location records.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"0894a8d2-0c2c-48e5-ba7c-f07ad85802c8"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"eea2cafd-44bd-4563-9df6-1be238c17413"}}],"_postman_id":"62922d6c-4886-44db-bc77-0010ace9d5e7"},{"name":"Retailer Inventory","item":[{"name":"/retailers/:retailer_id/inventory","id":"b0ad3c2d-c8b3-4d77-92b1-d29dbad6f38b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/inventory?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get inventory details for a specific retailer.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4946ad68-086b-4829-930c-32a06df3e903","id":"4946ad68-086b-4829-930c-32a06df3e903","name":"Retailer Inventory","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"72ea1e0c-be4b-4c80-a633-8e88cf206671","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"d495a194-5858-4e28-8d76-91123349cb92","name":"Inventory details for specific retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/inventory","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","inventory"],"variable":[{"key":"retailer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"retailer_id\": \"25600\",\n   \"variant_id\": \"28374627\",\n   \"quantity\": \"200\",\n   \"updated_at\": \"2020-12-31 23:44:12\"\n  },\n  {\n   \"retailer_id\": \"25600\",\n   \"variant_id\": \"9189072\",\n   \"quantity\": \"198\",\n   \"updated_at\": \"2021-01-05 02:28:56\"\n  },\n  {\n   \"retailer_id\": \"25601\",\n   \"variant_id\": \"9189072\",\n   \"quantity\": \"90\",\n   \"updated_at\": \"2021-01-06 04:48:26\"\n  }\n ]\n}"}],"_postman_id":"b0ad3c2d-c8b3-4d77-92b1-d29dbad6f38b"},{"name":"/retailers/:retailer_id/inventory/count","id":"4e5bf20a-ecc6-484d-b2ee-29186bcff19c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/inventory/count","description":"<p>Get count of variants a retailer has in inventory.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4946ad68-086b-4829-930c-32a06df3e903","id":"4946ad68-086b-4829-930c-32a06df3e903","name":"Retailer Inventory","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"b39e7d52-5cbd-4a34-9542-29ec4ad3dd25","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"0dcf91eb-1792-4c01-a2fd-5a73d50a00a1","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/inventory/count","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","inventory","count"],"variable":[{"key":"retailer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"4e5bf20a-ecc6-484d-b2ee-29186bcff19c"},{"name":"/retailers/:retailer_id/inventory/:variant_id","id":"ef597f04-4082-44a8-b9b2-c907828357bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/inventory/:variant_id","description":"<p>Get inventory details of a specific variant in retailers inventory.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4946ad68-086b-4829-930c-32a06df3e903","id":"4946ad68-086b-4829-930c-32a06df3e903","name":"Retailer Inventory","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","inventory",":variant_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"faca6b6b-2890-4b9b-9708-7385c8fa6e06","description":{"content":"<p>(Required) Id of a product variant</p>\n","type":"text/plain"},"type":"any","value":"29289","key":"variant_id"},{"id":"37300755-62c4-4db6-8eb6-170488d08f40","description":{"content":"<p>(Required) Id of a retailer</p>\n","type":"text/plain"},"type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"b35915ca-23e0-494d-9694-404c4ef7c450","name":"Inventory details of specific retailer for specific variant.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/inventory/:variant_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","inventory",":variant_id"],"variable":[{"key":"retailer_id"},{"key":"variant_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"retailer_id\": \"25600\",\n    \"variant_id\": \"28374627\",\n    \"quantity\": \"200\",\n    \"updated_at\": \"2020-12-31 23:44:12\"\n  }\n}"}],"_postman_id":"ef597f04-4082-44a8-b9b2-c907828357bc"}],"id":"4946ad68-086b-4829-930c-32a06df3e903","description":"<p>Access or edit retailer details.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a01be9ae-f264-4525-ac82-20f8e54f809f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"d900327a-f468-4628-a338-2e2960449019"}}],"_postman_id":"4946ad68-086b-4829-930c-32a06df3e903"},{"name":"Retailer Credits","item":[{"name":"/retailers/:retailer_id/credits","id":"df986776-d604-4139-8d14-35a92c244536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits","description":"<p>More specific results can be obtained using filter query params like</p>\n<ul>\n<li><code>filter[status !%3D]=paid</code> for records where status is NOT paid. Note that the equals in the filter operator <code>!=</code> needs to be encoded.</li>\n<li><code>filter[order_id]=1234</code> for a specific order.</li>\n<li><code>sort=-updated_at&amp;filter[updated_at &gt;]=2020-01-01 00:00:00</code> for the most recently updated after a specific datetime.</li>\n</ul>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","name":"Retailer Credits","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"471fc083-3129-4739-86c3-8c7f122f4f36","type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"ad55fb70-8d93-4a66-a361-9693e581542a","name":"List credits for a retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits"],"variable":[{"key":"retailer_id","value":"25600"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"credit_term_id\": \"34523\",\n            \"id\": \"2346236\",\n            \"invoice_number\": \"IN#1234512\",\n            \"description\": null,\n            \"due_date\": \"2022-01-15\",\n            \"credit_date\": \"2022-01-01\",\n            \"total\": \"276.00\",\n            \"paid\": \"200.00\",\n            \"outstanding\": \"76.00\",\n            \"order_id\": \"1234\",\n            \"payments\": [\n                {\n                    \"id\": \"34573\",\n                    \"amount\": \"200.00\"\n                }\n            ],\n            \"items\": [\n                {\n                    \"id\": \"23423\",\n                    \"type\": \"fulfillment\",\n                    \"amount\": \"226.00\",\n                    \"fulfillment_id\": \"64568\",\n                    \"products\": [\n                        {\n                            \"id\": \"534252\",\n                            \"quantity\": \"1\",\n                            \"amount\": \"226.00\",\n                            \"title\": \"Over Ear Headphones - Red\",\n                            \"variant_id\": \"28374627\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"236234\",\n                    \"type\": \"shipping\",\n                    \"amount\": \"50.00\"\n                }\n            ],\n            \"status\": \"overdue\"\n        },\n        {\n            \"credit_term_id\": \"34523\",\n            \"id\": \"234653\",\n            \"invoice_number\": \"IN#542763\",\n            \"description\": \"Asperiores et dolorum.\",\n            \"due_date\": \"2022-02-01\",\n            \"credit_date\": \"2022-01-17\",\n            \"total\": \"46.97\",\n            \"paid\": \"0.00\",\n            \"outstanding\": \"46.97\",\n            \"order_id\": null,\n            \"payments\": [],\n            \"items\": [\n                {\n                    \"id\": \"546354\",\n                    \"type\": \"manual\",\n                    \"amount\": \"46.97\"\n                }\n            ],\n            \"status\": \"pending\"\n        },\n        {\n            \"credit_term_id\": \"34523\",\n            \"id\": \"23452\",\n            \"invoice_number\": \"IN#4651246\",\n            \"description\": \"Asperiores expedita ut illo incidunt earum quia fuga similique et.\",\n            \"due_date\": \"2022-01-07\",\n            \"credit_date\": \"2022-01-17\",\n            \"total\": \"106.16\",\n            \"paid\": \"106.16\",\n            \"outstanding\": \"0.00\",\n            \"order_id\": \"64374\",\n            \"payments\": [\n                {\n                    \"id\": \"32535\",\n                    \"amount\": \"1.00\"\n                },\n                {\n                    \"id\": \"432536\",\n                    \"amount\": \"105.16\"\n                }\n            ],\n            \"items\": [\n                {\n                    \"id\": \"23456\",\n                    \"type\": \"manual\",\n                    \"amount\": \"106.16\"\n                }\n            ],\n            \"status\": \"paid\"\n        },\n        {\n            \"credit_term_id\": \"34523\",\n            \"id\": \"234623\",\n            \"invoice_number\": \"IN#8654234\",\n            \"description\": \"Provident reiciendis est dolores laboriosam vel exercitationem.\",\n            \"due_date\": \"2022-02-01\",\n            \"credit_date\": \"2022-01-17\",\n            \"total\": \"870.58\",\n            \"paid\": \"0.00\",\n            \"outstanding\": \"870.58\",\n            \"order_id\": null,\n            \"payments\": [],\n            \"items\": [\n                {\n                    \"id\": \"24\",\n                    \"type\": \"manual\",\n                    \"amount\": \"870.58\"\n                }\n            ],\n            \"status\": \"pending\"\n        }\n    ]\n}"},{"id":"60305897-4fa5-4a16-a5d9-c7966d5cdaa9","name":"List retailer credits for an order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits?filter[order_id]=1234","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits"],"query":[{"key":"filter[order_id]","value":"1234"}],"variable":[{"key":"retailer_id","value":"25600"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"credit_term_id\": \"34523\",\n      \"id\": \"2346236\",\n      \"invoice_number\": \"IN#1234512\",\n      \"description\": null,\n      \"due_date\": \"2022-01-15\",\n      \"credit_date\": \"2022-01-01\",\n      \"total\": \"276.00\",\n      \"paid\": \"200.00\",\n      \"outstanding\": \"76.00\",\n      \"order_id\": \"1234\",\n      \"payments\": [\n        {\n          \"id\": \"34573\",\n          \"amount\": \"200.00\"\n        }\n      ],\n      \"items\": [\n        {\n          \"id\": \"23423\",\n          \"type\": \"fulfillment\",\n          \"amount\": \"226.00\",\n          \"fulfillment_id\": \"64568\",\n          \"products\": [\n            {\n              \"id\": \"534252\",\n              \"quantity\": \"1\",\n              \"amount\": \"226.00\",\n              \"title\": \"Over Ear Headphones - Red\",\n              \"variant_id\": \"28374627\"\n            }\n          ]\n        },\n        {\n          \"id\": \"236234\",\n          \"type\": \"shipping\",\n          \"amount\": \"50.00\"\n        }\n      ],\n      \"status\": \"overdue\"\n    }\n  ]\n}"}],"_postman_id":"df986776-d604-4139-8d14-35a92c244536"},{"name":"/retailers/:retailer_id/credits/:credit_id","id":"ebe1d75a-2751-4c7f-9b10-f01506858ac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","name":"Retailer Credits","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"0e113147-2162-4c0c-8e7d-cbaf22a44338","type":"any","value":"25600","key":"retailer_id"},{"id":"2e8bf9e4-04ad-4095-b575-0e475fbe3e33","type":"any","value":"2346236","key":"credit_id"}]}},"response":[{"id":"5fae1398-d5f5-4c0b-a3ba-644c104f9d5a","name":"Get a specfic credit for a retailer.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"credit_term_id\": \"34523\",\n        \"id\": \"2346236\",\n        \"invoice_number\": \"IN#1234512\",\n        \"description\": null,\n        \"due_date\": \"2022-01-15\",\n        \"credit_date\": \"2022-01-01\",\n        \"total\": \"276.00\",\n        \"paid\": \"200.00\",\n        \"outstanding\": \"76.00\",\n        \"order_id\": \"83745\",\n        \"payments\": [\n            {\n                \"id\": \"34573\",\n                \"amount\": \"200.00\"\n            }\n        ],\n        \"items\": [\n            {\n                \"id\": \"23423\",\n                \"type\": \"fulfillment\",\n                \"amount\": \"226.00\",\n                \"fulfillment_id\": \"64568\",\n                \"products\": [\n                    {\n                        \"id\": \"534252\",\n                        \"quantity\": \"1\",\n                        \"amount\": \"226.00\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"variant_id\": \"28374627\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"236234\",\n                \"type\": \"shipping\",\n                \"amount\": \"50.00\"\n            }\n        ],\n        \"status\": \"overdue\"\n    }\n}"}],"_postman_id":"ebe1d75a-2751-4c7f-9b10-f01506858ac2"},{"name":"/retailers/:retailer_id/credits","id":"ca098ca5-5ec7-4a54-87b9-60209e2f571b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"invoice_number\": \"IN#542763\", //Required\n  \"credit_date\": \"2022-01-12\", //Required\n  \"credit_term_id\": 34523, //Required\n  \"total\": 1423.56, //Required\n  \"description\": \"Invoice for Company A restock\", //Optional\n  \"order_id\": 83745 // Optional. Must be the id of an order with a dealer order attached.\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits","description":"<p>Create a credit for a retailer.</p>\n<p>To create a credit you must provide <code>invoice_number</code>, <code>credit_date</code>, <code>credit_term_id</code>, <code>total</code>. <code>description</code> is optional.</p>\n<p><code>credit_date</code> must be in the format <code>YYYY-MM-DD</code>. Due date for the credit will be calculated on the <code>credit_date</code> field and the configured amount of days for the provided <code>credit_term_id</code></p>\n<p><code>order_id</code> can be provided to associate the credit to a particular order.  <code>order_id</code> must refer to an order that has a dealer order component. i.e. Wholesale or Ship to store orders</p>\n<p>See the <a href=\"#a5a7c3a7-ca61-49ed-b8e8-fd3c6cfcac90\">Orders Section</a> for more information about Dealer Orders.</p>\n<p>The response will contain the newly created Credit.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","name":"Retailer Credits","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"a1609694-b71c-48fa-a75e-b74b35b9f58b","type":"any","value":"25600","key":"retailer_id"}]}},"response":[{"id":"b1dfeebd-7e21-4ada-a7a0-b1c9d5292ebb","name":"Create a credit for a retailer.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"invoice_number\": \"IN#542763\",\n  \"credit_date\": \"2022-01-12\",\n  \"credit_term_id\": 34523,\n  \"total\": 1423.56,\n  \"description\": \"Invoice for Company A restock\", \n  \"order_id\": 83745 \n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits"],"variable":[{"key":"retailer_id","value":"25600"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"credit_term_id\": \"34523\",\n        \"id\": \"234653\",\n        \"invoice_number\": \"IN#542763\",\n        \"description\": \"Invoice for Company A restock\",\n        \"due_date\": \"2022-02-27\",\n        \"credit_date\": \"2022-01-12\",\n        \"total\": \"1423.56\",\n        \"paid\": \"0.00\",\n        \"outstanding\": \"1423.56\",\n        \"order_id\": \"83745\",\n        \"payments\": [],\n        \"items\": [\n            {\n                \"id\": \"546354\",\n                \"type\": \"manual\",\n                \"amount\": \"1423.56\"\n            }\n        ],\n        \"status\": \"pending\"\n    }\n}"}],"_postman_id":"ca098ca5-5ec7-4a54-87b9-60209e2f571b"},{"name":"/retailers/:retailer_id/credits/:credit_id","id":"81e0f7b6-fa4d-41e2-9ec6-29ac18194727","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"invoice_number\": \"IN#002312\",\n  \"due_date\": \"2022-01-15\",\n  \"order_id\": 83745 // Optional. Set to null to remove the association. Must be the id of an order with a dealer order attached or null.\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id","description":"<p>Edit a reatiler credit.</p>\n<p>From this endpoint you can edit certain fields of a retailer credit:  <code>invoice_number</code> and <code>due_date</code>.</p>\n<p><code>order_id</code> can be provided to associate the credit to a particular order.  It can also be set to <code>null</code> to remove the association.\nAs with creating a credit, the order must have a dealer order component. See <a href=\"#a5a7c3a7-ca61-49ed-b8e8-fd3c6cfcac90\">Here</a></p>\n<p><code>due_date</code> must be a date in the format <code>YYYY-MM-DD</code></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","name":"Retailer Credits","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"e82999d7-5de8-48c0-8b74-2fecce8b3609","type":"any","value":"25600","key":"retailer_id"},{"id":"2f37d8e5-0654-41c3-a4e0-238713b4191b","type":"any","value":"2346236","key":"credit_id"}]}},"response":[{"id":"f4ebb7a5-f753-4dd2-b7fe-84512a0f9fc9","name":"Edit a credit for a retailer.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"invoice_number\": \"IN#002312\",\n  \"due_date\": \"2022-01-15\",\n  \"order_id\": 83745\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"credit_term_id\": \"34523\",\n        \"id\": \"2346236\",\n        \"invoice_number\": \"IN#002312\",\n        \"description\": null,\n        \"due_date\": \"2022-01-15\",\n        \"credit_date\": \"2022-01-01\",\n        \"total\": \"276.00\",\n        \"paid\": \"200.00\",\n        \"outstanding\": \"76.00\",\n        \"order_id\": \"83745\",\n        \"payments\": [\n            {\n                \"id\": \"34573\",\n                \"amount\": \"200.00\"\n            }\n        ],\n        \"items\": [\n            {\n                \"id\": \"23423\",\n                \"type\": \"fulfillment\",\n                \"amount\": \"226.00\",\n                \"fulfillment_id\": \"64568\",\n                \"products\": [\n                    {\n                        \"id\": \"534252\",\n                        \"quantity\": \"1\",\n                        \"amount\": \"226.00\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"variant_id\": \"28374627\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"236234\",\n                \"type\": \"shipping\",\n                \"amount\": \"50.00\"\n            }\n        ],\n        \"status\": \"overdue\"\n    }\n}"}],"_postman_id":"81e0f7b6-fa4d-41e2-9ec6-29ac18194727"}],"id":"18285eaf-f025-4659-acb5-6edf57e0ac8b","description":"<p>View or edit the credits belonging to a retailer.  Here you can view credit details, create credits, record payments, or modify invoice numbers and due dates.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a99e09a9-43e4-4c18-bd0f-adde3cabd84b"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"015b4e49-27ae-4d91-862c-f79af7efd56a"}}],"_postman_id":"18285eaf-f025-4659-acb5-6edf57e0ac8b"},{"name":"Retailer Credit Items","item":[{"name":"/retailers/:retailer_id/credits/:credit_id/items","id":"a4381c18-e1cd-4ff2-a578-12a8abe3c3b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/items","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7f68094a-3841-48a6-ac54-c6ab98ff8b3b","id":"7f68094a-3841-48a6-ac54-c6ab98ff8b3b","name":"Retailer Credit Items","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id","items"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"f60a0886-02a4-4ba2-a453-4e3656393f35","type":"any","value":"25600","key":"retailer_id"},{"id":"10391367-c456-4a13-abc2-5cabec6310e5","type":"any","value":"2346236","key":"credit_id"}]}},"response":[{"id":"447bcad4-5155-4026-bd7a-92dcd64f5b78","name":"Get a items for a retailer credit.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"23423\",\n            \"type\": \"fulfillment\",\n            \"amount\": \"226.00\",\n            \"fulfillment_id\": \"64568\",\n            \"products\": [\n                {\n                    \"id\": \"534252\",\n                    \"quantity\": \"1\",\n                    \"amount\": \"226.00\",\n                    \"title\": \"Over Ear Headphones - Red\",\n                    \"variant_id\": \"28374627\"\n                }\n            ]\n        },\n        {\n            \"id\": \"236234\",\n            \"type\": \"shipping\",\n            \"amount\": \"50.00\"\n        }\n    ]\n}"}],"_postman_id":"a4381c18-e1cd-4ff2-a578-12a8abe3c3b5"},{"name":"/retailers/:retailer_id/credits/:credit_id/items/:item_id","id":"cdcc1ba6-ad88-47a7-96f4-fff926807152","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/items/:item_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"7f68094a-3841-48a6-ac54-c6ab98ff8b3b","id":"7f68094a-3841-48a6-ac54-c6ab98ff8b3b","name":"Retailer Credit Items","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id","items",":item_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"45493dd3-fe86-4115-9f7a-53ec10343c88","type":"any","value":"25600","key":"retailer_id"},{"id":"b26e9d69-aa58-4753-9d67-b868fb5162fa","type":"any","value":"2346236","key":"credit_id"},{"id":"f5fa2ed1-032e-4a60-b157-46424fababf8","type":"any","value":"23423","key":"item_id"}]}},"response":[{"id":"de092b23-407a-49e3-9501-b478d1559410","name":"Get a specific item of a retailer credit.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/items/:item_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id","items",":item_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"},{"key":"item_id","value":"23423"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"23423\",\n        \"type\": \"fulfillment\",\n        \"amount\": \"226.00\",\n        \"fulfillment_id\": \"64568\",\n        \"products\": [\n            {\n                \"id\": \"534252\",\n                \"quantity\": \"1\",\n                \"amount\": \"226.00\",\n                \"title\": \"Over Ear Headphones - Red\",\n                \"variant_id\": \"28374627\"\n            }\n        ]\n    }\n}"}],"_postman_id":"cdcc1ba6-ad88-47a7-96f4-fff926807152"}],"id":"7f68094a-3841-48a6-ac54-c6ab98ff8b3b","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"ba67d129-f3a3-4f22-b644-1de7220a0199"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"58fb3a5d-080a-406e-be95-8c28a2c73ddc"}}],"_postman_id":"7f68094a-3841-48a6-ac54-c6ab98ff8b3b","description":""},{"name":"Retailer Credit Payments","item":[{"name":"/retailers/:retailer_id/credits/:credit_id/payments","id":"39850e40-e63f-49ce-b376-39010b8f521f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/payments","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","name":"Retailer Credit Payments","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id","payments"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6b0430d5-81d1-43f5-b954-0711b4daa941","type":"any","value":"25600","key":"retailer_id"},{"id":"73a25467-8a00-4abc-b31f-41b097dc8814","type":"any","value":"2346236","key":"credit_id"}]}},"response":[{"id":"793782f3-6289-441d-8b76-ced855ec2f02","name":"Get payments for a retailer credit.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/payments","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id","payments"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"34573\",\n            \"type\": \"credit\",\n            \"amount\": \"200.00\"\n        }\n    ]\n}"}],"_postman_id":"39850e40-e63f-49ce-b376-39010b8f521f"},{"name":"/retailers/:retailer_id/credits/:credit_id/payments/:payment_id","id":"321e3e97-a224-4aa2-af60-aa1f87af9d15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/payments/:payment_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","name":"Retailer Credit Payments","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id","payments",":payment_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"32d6104f-3787-472b-b6fc-06d99adf5449","type":"any","value":"25600","key":"retailer_id"},{"id":"0b50f7a7-9321-4256-91f3-ff127ecfe862","type":"any","value":"2346236","key":"credit_id"},{"id":"9dc9d425-0871-49bc-9711-2682e0d14f45","type":"any","value":"34573","key":"payment_id"}]}},"response":[{"id":"d219b892-4056-456e-81ef-392077fef9a4","name":"Get a specific payment for a retailer credit.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/payments/:payment_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id","payments",":payment_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"},{"key":"payment_id","value":"34573"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"34573\",\n        \"type\": \"credit\",\n        \"amount\": \"200.00\",\n        \"date\": \"2022-01-05\"\n    }\n}"}],"_postman_id":"321e3e97-a224-4aa2-af60-aa1f87af9d15"},{"name":"/retailers/:retailer_id/credits/:credit_id/payments","id":"2f375784-06c4-4759-a2f2-97e80a459a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"type\": \"credit\", // Required. One of 'credit', 'credit card', 'cheque', 'cash'.\n  \"amount\": 70.00 // Required\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id/payments","description":"<p>Create a credit payment.</p>\n<p>From here you can specify an amount to make as a payment towards a credit.<br /><code>amount</code> must be greater than 0 and cannot exceed the outstanding balance of the credit.</p>\n<p>The response will contain the whole retailer credit, as if you requested the <code>GET /retailers/:retailer_id/credits/:credit_id</code> endpoint.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","name":"Retailer Credit Payments","type":"folder"}},"urlObject":{"path":["retailers",":retailer_id","credits",":credit_id","payments"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"c4d6f5eb-c0bb-4091-8e21-0638b1eb5be7","type":"any","value":"25600","key":"retailer_id"},{"id":"f59de552-ac34-48d4-8420-b28d196514bb","type":"any","value":"2346236","key":"credit_id"}]}},"response":[{"id":"d40df1dc-1733-40aa-879b-763b2bf09a3b","name":"Create a payment for a retailer credit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"credit\",\n  \"amount\": 70.00\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/retailers/:retailer_id/credits/:credit_id","host":["https://shipearlyapp.com/api/v1"],"path":["retailers",":retailer_id","credits",":credit_id"],"variable":[{"key":"retailer_id","value":"25600"},{"key":"credit_id","value":"2346236"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"credit_term_id\": \"34523\",\n        \"id\": \"2346236\",\n        \"invoice_number\": \"IN#1234512\",\n        \"description\": null,\n        \"due_date\": \"2022-01-15\",\n        \"credit_date\": \"2022-01-01\",\n        \"total\": \"276.00\",\n        \"paid\": \"270.00\",\n        \"outstanding\": \"6.00\",\n        \"payments\": [\n            {\n                \"id\": \"34573\",\n                \"type\": \"credit\",\n                \"amount\": \"200.00\"\n            },\n            {\n                \"id\": \"43643\",\n                \"type\": \"credit\",\n                \"amount\": \"70.00\"\n            }\n        ],\n        \"items\": [\n            {\n                \"id\": \"23423\",\n                \"type\": \"fulfillment\",\n                \"amount\": \"226.00\",\n                \"fulfillment_id\": \"64568\",\n                \"products\": [\n                    {\n                        \"id\": \"534252\",\n                        \"quantity\": \"1\",\n                        \"amount\": \"226.00\",\n                        \"title\": \"Over Ear Headphones - Red\",\n                        \"variant_id\": \"28374627\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"236234\",\n                \"type\": \"shipping\",\n                \"amount\": \"50.00\"\n            }\n        ],\n        \"status\": \"overdue\"\n    }\n}"}],"_postman_id":"2f375784-06c4-4759-a2f2-97e80a459a8c"}],"id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"306805f3-f9be-48ab-bfb6-66cac84a9386"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"47bec8ef-ecaf-4f1e-acb3-c74effa19931"}}],"_postman_id":"bebe29ec-5753-42f3-8e59-4a3e5c73ca4b","description":""},{"name":"Retail Inventory","item":[{"name":"/retail_inventory","id":"8f560c0a-7664-479a-8eff-c0dc1d641415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retail_inventory?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get inventory details for all retailers.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"60ae66aa-ea1f-4928-b0cb-468a227031e7","id":"60ae66aa-ea1f-4928-b0cb-468a227031e7","name":"Retail Inventory","type":"folder"}},"urlObject":{"path":["retail_inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"2f6a6859-ad39-4ae4-9c34-0754d7132f32","name":"Inventory details for specific retailer.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retail_inventory"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"retailer_id\": \"25600\",\n   \"variant_id\": \"28374627\",\n   \"quantity\": \"200\",\n   \"updated_at\": \"2020-12-31 23:44:12\"\n  },\n  {\n   \"retailer_id\": \"25600\",\n   \"variant_id\": \"9189072\",\n   \"quantity\": \"198\",\n   \"updated_at\": \"2021-01-05 02:28:56\"\n  },\n  {\n   \"retailer_id\": \"25601\",\n   \"variant_id\": \"9189072\",\n   \"quantity\": \"90\",\n   \"updated_at\": \"2021-01-06 04:48:26\"\n  }\n ]\n}"}],"_postman_id":"8f560c0a-7664-479a-8eff-c0dc1d641415"},{"name":"/retail_inventory/count","id":"d760abee-52ac-4007-bec3-532b09f65b76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retail_inventory/count","description":"<p>Get count of all variants across all retailers inventories.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"60ae66aa-ea1f-4928-b0cb-468a227031e7","id":"60ae66aa-ea1f-4928-b0cb-468a227031e7","name":"Retail Inventory","type":"folder"}},"urlObject":{"path":["retail_inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"10bd5620-b189-4872-9092-1061de46f7e6","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/retail_inventory/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"d760abee-52ac-4007-bec3-532b09f65b76"}],"id":"60ae66aa-ea1f-4928-b0cb-468a227031e7","description":"<p>Access retailer inventory details.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"0791cb1c-3ede-4c61-ae50-19ef7591af87"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"f7a886c1-d53d-4ed3-a29f-5de0edaecf61"}}],"_postman_id":"60ae66aa-ea1f-4928-b0cb-468a227031e7"},{"name":"Sales Reps","item":[{"name":"/sales_reps","id":"76b542a6-c7e2-4710-a25d-31eef57ae806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/sales_reps?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get details for all sales reps.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","name":"Sales Reps","type":"folder"}},"urlObject":{"path":["sales_reps"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"4a36cd0c-f881-49d7-aa07-6b9884a25b63","name":"Details about all sales reps.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/sales_reps"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"id\": \"28767\",\n   \"is_distributor\": false,\n   \"descriptor\": \"Sales rep for Company A\",\n   \"first_name\": \"Bob\",\n   \"last_name\": \"Johnson\",\n   \"company_name\": \"Company A\",\n   \"phone\": \"712-689-9346\",\n   \"email\": \"bjohnson@company.com\",\n    \"retailers\": [\n    \"25600\",\n    \"25601\",\n    \"25602\"\n   ],\n   \"created_at\": \"2020-04-13 05:06:37\",\n   \"updated_at\": \"2020-11-30 22:42:11\"\n  },\n  {\n   \"id\": \"82634\",\n   \"is_distributor\": false,\n   \"descriptor\": \"Sales rep for Company B\",\n   \"first_name\": \"Gerald\",\n   \"last_name\": \"Sullivan\",\n   \"company_name\": \"Company B\",\n   \"phone\": \"707-935-3902\",\n   \"retailers\": [\n    \"25601\",\n    \"25602\"\n   ],\n   \"created_at\": \"2020-04-13 05:06:37\",\n   \"updated_at\": \"2020-11-30 22:42:11\"\n  }\n ]\n}"}],"_postman_id":"76b542a6-c7e2-4710-a25d-31eef57ae806"},{"name":"/sales_reps/count","id":"5d82c7b6-e9f2-48b4-bcef-3d2ed53b327f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/sales_reps/count","description":"<p>Get count of all sales reps.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","name":"Sales Reps","type":"folder"}},"urlObject":{"path":["sales_reps","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"7ab6b58b-bb33-40ea-9d15-0eee850d9452","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/sales_reps/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"5d82c7b6-e9f2-48b4-bcef-3d2ed53b327f"},{"name":"/sales_reps/:sales_rep_id","id":"29ffe60a-7c19-4a85-a9ff-ddb908b416fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/sales_reps/:sales_rep_id","description":"<p>Get details for a specific sales rep.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","name":"Sales Reps","type":"folder"}},"urlObject":{"path":["sales_reps",":sales_rep_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"b7b30625-667c-462b-b721-235062ec557c","description":{"content":"<p>(Required) Id of a sales rep.</p>\n","type":"text/plain"},"type":"any","value":"28767","key":"sales_rep_id"}]}},"response":[{"id":"479805cd-f604-4ade-bbea-d9846c1c23b6","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/sales_reps/:sales_rep_id","host":["https://shipearlyapp.com/api/v1"],"path":["sales_reps",":sales_rep_id"],"variable":[{"key":"sales_rep_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"28767\",\n    \"is_distributor\": false,\n    \"descriptor\": \"Sales rep for Company A\",\n    \"first_name\": \"Bob\",\n    \"last_name\": \"Johnson\",\n    \"company_name\": \"Company A\",\n    \"phone\": \"712-689-9346\",\n    \"email\": \"bjohnson@company.com\",\n    \"retailers\": [\n        \"25600\",\n        \"25601\",\n        \"25602\"\n    ],\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n}"}],"_postman_id":"29ffe60a-7c19-4a85-a9ff-ddb908b416fa"},{"name":"/sales_reps/:sales_rep_id","id":"eb35b477-9b20-4301-a37d-aeb2d24fe312","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"company_name\": \"Hermann LLC\",\n    \"phone\": \"713-655-1180\",\n    \"first_name\": \"Oceane\",\n    \"last_name\": \"West\",\n    \"descriptor\": \"feed\",\n    \"is_distributor\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/sales_reps/:sales_rep_id","description":"<p>Edit the details of a sales rep.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","name":"Sales Reps","type":"folder"}},"urlObject":{"path":["sales_reps",":sales_rep_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"63a96330-fc08-49aa-ac92-f7062b236681","description":{"content":"<p>(Required) Id of a sales rep.</p>\n","type":"text/plain"},"type":"any","value":"28767","key":"sales_rep_id"}]}},"response":[{"id":"9d703894-c6c2-4836-bbfe-44575d4e5f7e","name":"Details for specific sales rep.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"company_name\": \"Blowpipe Industries\",\n    \"phone\": \"840-892-5561\",\n    \"first_name\": \"Nils\",\n    \"last_name\": \"Pollich\",\n    \"descriptor\": \"Main Sales Rep - Blowpipe Industries\",\n    \"is_distributor\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/sales_reps/:sales_rep_id","host":["https://shipearlyapp.com/api/v1"],"path":["sales_reps",":sales_rep_id"],"variable":[{"key":"sales_rep_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"28767\",\n    \"is_distributor\": false,\n    \"descriptor\": \"Main Sales Rep - Blowpipe Industries\",\n    \"first_name\": \"Nils\",\n    \"last_name\": \"Pollich\",\n    \"company_name\": \"Blowpipe Industries\",\n    \"phone\": \"840-892-5561\",\n    \"email\": \"bjohnson@company.com\",\n    \"retailers\": [\n        \"25600\",\n        \"25601\",\n        \"25602\"\n    ],\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n}"}],"_postman_id":"eb35b477-9b20-4301-a37d-aeb2d24fe312"}],"id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb","description":"<p>Access or edit sales rep details.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"396a4d2f-2297-4ecb-b1d4-be39dfae71f3"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"9a836a3e-7d3e-416f-9be7-f37877bd8002"}}],"_postman_id":"e0dc2d44-6c14-41cb-8bae-4401d711bcbb"},{"name":"Territories","item":[{"name":"/territories","id":"53988036-38c9-4a23-a62c-79924c416bea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/territories?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get details for all territories.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","name":"Territories","type":"folder"}},"urlObject":{"path":["territories"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n","type":"text/plain"},"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"de9056a6-090b-4e87-a12f-288e51357c7c","name":"Details about all territories.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/territories"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n  {\n   \"id\": \"29797\",\n   \"name\": \"Northern Territory\",\n   \"created_at\": \"2020-09-13 12:30:09\",\n   \"updated_at\": \"2021-02-22 15:26:36\"\n  },\n  {\n   \"id\": \"29798\",\n   \"name\": \"Southern Territory\",\n   \"created_at\": \"2020-05-24 04:24:09\",\n   \"updated_at\": \"2021-01-12 05:05:29\"\n  }\n ]\n}"}],"_postman_id":"53988036-38c9-4a23-a62c-79924c416bea"},{"name":"/territories/count","id":"2fe8661a-54e5-4616-b448-6d6057c0252f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/territories/count","description":"<p>Get count of all territories.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","name":"Territories","type":"folder"}},"urlObject":{"path":["territories","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d50e9472-f535-48ab-b5cc-e598b1e30095","name":"Count of all Items","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/territories/count"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"count\": 6\n}"}],"_postman_id":"2fe8661a-54e5-4616-b448-6d6057c0252f"},{"name":"/territories/:territory_id","id":"f55df641-5001-4da4-9dfa-46a2f82ce7e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/territories/:territory_id","description":"<p>Get details of a specific territory.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","name":"Territories","type":"folder"}},"urlObject":{"path":["territories",":territory_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"27727132-b320-4de7-9ae1-16ffb5952651","description":{"content":"<p>(Required) Id of a territory.</p>\n","type":"text/plain"},"type":"any","value":"29797","key":"territory_id"}]}},"response":[{"id":"a1ed4c7d-bee2-4276-990f-8aa7fbed21f1","name":"Details for specific territory.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/territories/:territory_id","host":["https://shipearlyapp.com/api/v1"],"path":["territories",":territory_id"],"variable":[{"key":"territory_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"id\": \"29797\",\n \"name\": \"Northern Territory\",\n \"created_at\": \"2020-09-13 12:30:09\",\n \"updated_at\": \"2021-02-22 15:26:36\"\n}"}],"_postman_id":"f55df641-5001-4da4-9dfa-46a2f82ce7e8"}],"id":"cd215e5a-5047-4d50-89d2-4a8b7097b048","description":"<p>Access territory details.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"b9d219c3-e769-4983-b7db-6bb3cf0b8d63"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"b45c3ad3-18c5-4080-ba2f-5487637e4c5c"}}],"_postman_id":"cd215e5a-5047-4d50-89d2-4a8b7097b048"},{"name":"Warehouses","item":[{"name":"/warehouses","id":"aa61dba9-a404-438c-9ea9-9380e01d19d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses?page=1&limit=50&sort=-updated_at&filter[is_active]=1&filter[source_id]=","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","name":"Warehouses","type":"folder"}},"urlObject":{"path":["warehouses"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"description":{"content":"<p>Page number to fetch.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Limit number of results fetched. Default is 50, maximum is 250.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Order results by a field in the result set.  Descending order can be achieved by adding a '-' infront of the field name.</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Filter results by a field in the result set.  More advanced filtering can be achieved by adding a space after the fields name and adding adding one of the following comparison operators: =, !=, &lt;, &gt;, &lt;=, &gt;=, LIKE.</p>\n<p>Filter by boolean fields with 0 or 1 (eg. <code>filter[is_active]=1</code>).</p>\n","type":"text/plain"},"key":"filter[is_active]","value":"1"},{"description":{"content":"<p>Filter by <code>null</code> by leaving the right-hand side empty  (eg. <code>filter[source_id]=</code> or <code>filter[source_id !=]=</code>).</p>\n","type":"text/plain"},"key":"filter[source_id]","value":""}],"variable":[]}},"response":[{"id":"299369fa-aeb3-4ee5-88cf-0bd99b3ab346","name":"Get all warehouses.","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"5231\",\n      \"source_id\": \"5579440229\",\n      \"name\": \"East\",\n      \"is_active\": true,\n      \"created_at\": \"2020-09-13 12:30:09\",\n      \"updated_at\": \"2021-02-22 15:26:36\"\n    },\n    {\n      \"id\": \"5232\",\n      \"source_id\": null,\n      \"name\": \"West\",\n      \"is_active\": false,\n      \"created_at\": \"2020-09-13 12:31:00\",\n      \"updated_at\": \"2020-09-13 12:31:00\"\n    }\n  ]\n}\n"},{"id":"f13fa51d-d369-4ed5-8ba0-a73550694487","name":"Get active warehouses.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses?filter[is_active]=1","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses"],"query":[{"key":"filter[is_active]","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"5231\",\n      \"source_id\": \"5579440229\",\n      \"name\": \"East\",\n      \"is_active\": true,\n      \"created_at\": \"2020-09-13 12:30:09\",\n      \"updated_at\": \"2021-02-22 15:26:36\"\n    }\n  ]\n}\n"},{"id":"cf41a982-f5c6-4101-9668-e324049143de","name":"Get Shopify warehouses.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses?filter[source_id !%3D]=","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses"],"query":[{"key":"filter[source_id !%3D]","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"5231\",\n      \"source_id\": \"5579440229\",\n      \"name\": \"East\",\n      \"is_active\": true,\n      \"created_at\": \"2020-09-13 12:30:09\",\n      \"updated_at\": \"2021-02-22 15:26:36\"\n    }\n  ]\n}\n"},{"id":"8f38ff71-d343-4164-96b9-cced77bee1c1","name":"Get ShipEarly warehouses.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses?filter[source_id]=","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses"],"query":[{"key":"filter[source_id]","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"5232\",\n      \"source_id\": null,\n      \"name\": \"West\",\n      \"is_active\": false,\n      \"created_at\": \"2020-09-13 12:31:00\",\n      \"updated_at\": \"2020-09-13 12:31:00\"\n    }\n  ]\n}\n"}],"_postman_id":"aa61dba9-a404-438c-9ea9-9380e01d19d8"},{"name":"/warehouses/count","id":"5d5d6d94-0dd8-4791-88ba-86d63e2f5e29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","name":"Warehouses","type":"folder"}},"urlObject":{"path":["warehouses","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"84dadf4b-86f8-4d14-95bb-6ca1b0726a21","name":"Get a count of all warehouses","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 2\n}"}],"_postman_id":"5d5d6d94-0dd8-4791-88ba-86d63e2f5e29"},{"name":"/warehouses/:warehouse_id","id":"74b1b1ab-f308-45ed-8963-b8a44c042c05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","name":"Warehouses","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"4001c19c-64ce-408f-9f8a-6ca7d726282d","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"}]}},"response":[{"id":"e6a606bc-bb80-44dd-a462-0fe5a213ef16","name":"Get details of a specific warehouse.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id"],"variable":[{"key":"warehouse_id","value":"5231"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"5231\",\n    \"source_id\": \"5579440229\",\n    \"name\": \"East\",\n    \"is_active\": true,\n    \"created_at\": \"2020-09-13 12:30:09\",\n    \"updated_at\": \"2021-02-22 15:26:36\"\n  }\n}"}],"_postman_id":"74b1b1ab-f308-45ed-8963-b8a44c042c05"},{"name":"/warehouses","id":"7fb1a870-f72c-4d13-bbb4-f9367ea4de61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"New Warehouse\",\n  \"is_active\": true // Optional. Defaults to `true`.\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/warehouses","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","name":"Warehouses","type":"folder"}},"urlObject":{"path":["warehouses"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"04331348-13cd-46be-b694-a69ab7e413ef","name":"Create a new warehouse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"New Warehouse\"\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/warehouses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"5233\",\n    \"source_id\": null,\n    \"name\": \"New Warehouse\",\n    \"is_active\": true,\n    \"created_at\": \"2025-07-17 15:40:00\",\n    \"updated_at\": \"2025-07-17 15:40:00\"\n  }\n}"},{"id":"9400115e-b70a-4658-a99a-7879dd844fe0","name":"Create an inactive warehouse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"New Warehouse\",\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/warehouses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"5233\",\n    \"source_id\": null,\n    \"name\": \"New Warehouse\",\n    \"is_active\": false,\n    \"created_at\": \"2025-07-17 15:40:00\",\n    \"updated_at\": \"2025-07-17 15:40:00\"\n  }\n}"}],"_postman_id":"7fb1a870-f72c-4d13-bbb4-f9367ea4de61"},{"name":"/warehouses/:warehouse_id","id":"f691f716-6d67-4e3c-a64e-f4803bc0926e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Edited Warehouse\",\n  \"is_active\": false // Optional.\n}","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","name":"Warehouses","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"d9204713-da84-40d9-9876-e06eedee3c56","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"}]}},"response":[{"id":"8207e7f3-dfb5-4a52-99e9-4c80816f37cf","name":"Edit a warehouse","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Edited Warehouse\",\n  \"is_active\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id"],"variable":[{"key":"warehouse_id","value":"5231","description":"(Required) Id of a warehouse."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"5231\",\n    \"source_id\": \"5579440229\",\n    \"name\": \"Edited Warehouse\",\n    \"is_active\": false,\n    \"created_at\": \"2020-09-13 12:30:09\",\n    \"updated_at\": \"2021-02-22 15:26:36\"\n  }\n}"}],"_postman_id":"f691f716-6d67-4e3c-a64e-f4803bc0926e"},{"name":"/warehouses/:warehouse_id","id":"95654087-3011-4ac4-8614-6713a4c3af36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","name":"Warehouses","type":"folder"}},"urlObject":{"path":["warehouses",":warehouse_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"085ecab4-048c-4de7-92f1-a1463d6fdd2a","description":{"content":"<p>(Required) Id of a warehouse.</p>\n","type":"text/plain"},"type":"any","value":"5231","key":"warehouse_id"}]}},"response":[{"id":"00884e22-1e57-4a45-9a11-a6c2aebba4b9","name":"Remove a warehouse","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/warehouses/:warehouse_id","host":["https://shipearlyapp.com/api/v1"],"path":["warehouses",":warehouse_id"],"variable":[{"key":"warehouse_id","value":"5231","description":"(Required) Id of a warehouse."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"95654087-3011-4ac4-8614-6713a4c3af36"}],"id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d","description":"<p>Get details about available warehouses.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9bf44327-59cf-4ed4-a3d1-143fa1e6155f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6023b774-2cff-481f-b661-6efcbcb37d84"}}],"_postman_id":"5d067cc7-237e-44b6-a5a8-bff73fb5fa1d"}],"id":"88805fae-0c42-46d2-85c9-b1e255e2ed08","description":"<p>API Endpoints available to brands.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"c36de785-0f77-4783-9015-5db16aae8ba7"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"793d6ac8-863d-47cc-b5fa-61dd9f7fed9e"}}],"_postman_id":"88805fae-0c42-46d2-85c9-b1e255e2ed08"},{"name":"For Retailers","item":[{"name":"Inventory","item":[{"name":"/inventory","id":"01985ff5-9242-4537-a531-9da4089b017d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory","urlObject":{"path":["inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"95fcf705-fe24-4f12-93ab-9295146bdbd5","name":"Get inventory data for all locations","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 15:00:34 GMT"},{"key":"Server","value":"Apache/2.4.56 (Unix)"},{"key":"Set-Cookie","value":"SHIPEARLY=89e3d96e546154d6cb98de985c936ba0; expires=Thu, 15-Jun-2023 15:00:34 GMT; Max-Age=86400; path=/; secure; HttpOnly"},{"key":"Content-Length","value":"83"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"location_id\": \"38473\",\n            \"variant_id\": \"19284\",\n            \"quantity\": \"15\",\n            \"updated_at\": \"2023-06-10 15:10:00\",\n            \"product_title\": \"Headphone - Grey\",\n            \"upc\": \"5283948189832\",\n            \"location_name\": \"Sound Supply - Young Street\",\n            \"manufacturer_sku\": \"HPH009273\",\n            \"manufacturer\": \"HeadOn Headphones\"\n        },\n        {\n            \"location_id\": \"38473\",\n            \"variant_id\": \"230123\",\n            \"quantity\": \"10\",\n            \"updated_at\": \"2023-06-13 15:31:00\",\n            \"product_title\": \"Headphone - Red\",\n            \"upc\": \"8123724672232\",\n            \"location_name\": \"Sound Supply - Young Street\",\n            \"manufacturer_sku\": \"HPH009274\",\n            \"manufacturer\": \"HeadOn Headphones\"\n        },\n        {\n            \"location_id\": \"92381\",\n            \"variant_id\": \"19284\",\n            \"quantity\": \"4\",\n            \"updated_at\": \"2023-06-03 09:44:32\",\n            \"product_title\": \"Headphone - Grey\",\n            \"upc\": \"5283948189832\",\n            \"location_name\": \"Sound Supply - Ottawa\",\n            \"manufacturer_sku\": \"HPH009273\",\n            \"manufacturer\": \"HeadOn Headphones\"\n        },\n        {\n            \"location_id\": \"92381\",\n            \"variant_id\": \"230123\",\n            \"quantity\": \"0\",\n            \"updated_at\": \"2023-06-04 10:32:40\",\n            \"product_title\": \"Headphone - Red\",\n            \"upc\": \"8123724672232\",\n            \"location_name\": \"Sound Supply - Ottawa\",\n            \"manufacturer_sku\": \"HPH009274\",\n            \"manufacturer\": \"HeadOn Headphones\"\n        }\n    ]\n}"}],"_postman_id":"01985ff5-9242-4537-a531-9da4089b017d"},{"name":"/inventory Multiple","id":"b4aa3511-6adb-40b1-ad92-ff0b218f157e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"location_id\": 38473, // Required\n    \"upc\": \"5283948189832\", // Required\n    \"quantity\": 200 // Required\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory","description":"<p>The <code>/inventory</code> endpoint can be used to update inventory with a bulk request. A bulk request consists of a JSON array of objects each containing the <code>location_id</code> and <code>upc</code> of a target inventory item and the new <code>quantity</code> value.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"00317908-de3a-41e2-97ee-ad97e72da636","id":"00317908-de3a-41e2-97ee-ad97e72da636","name":"Inventory","type":"folder"}},"urlObject":{"path":["inventory"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"bb8f3f8a-2f7b-4492-b247-ce3450f48bce","name":"Adjust multiple inventory items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"location_id\": 38473,\n    \"upc\": \"5283948189832\",\n    \"quantity\": 200\n  },\n  {\n    \"location_id\": 38473,\n    \"upc\": \"8123724672232\",\n    \"quantity\": 100\n  },\n  {\n    \"location_id\": 92381,\n    \"upc\": \"8123724672232\",\n    \"quantity\": 50\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 15:00:34 GMT"},{"key":"Server","value":"Apache/2.4.56 (Unix)"},{"key":"Set-Cookie","value":"SHIPEARLY=89e3d96e546154d6cb98de985c936ba0; expires=Thu, 15-Jun-2023 15:00:34 GMT; Max-Age=86400; path=/; secure; HttpOnly"},{"key":"Content-Length","value":"83"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"location_id\": \"38473\",\n      \"variant_id\": \"19284\",\n      \"quantity\": \"200\",\n      \"updated_at\": \"2023-06-10 15:10:00\",\n      \"product_title\": \"Headphone - Grey\",\n      \"upc\": \"5283948189832\",\n      \"location_name\": \"Sound Supply - Young Street\",\n      \"manufacturer_sku\": \"HPH009273\",\n      \"manufacturer\": \"HeadOn Headphones\"\n    },\n    {\n      \"location_id\": \"38473\",\n      \"variant_id\": \"230123\",\n      \"quantity\": \"100\",\n      \"updated_at\": \"2023-06-13 15:31:00\",\n      \"product_title\": \"Headphone - Red\",\n      \"upc\": \"8123724672232\",\n      \"location_name\": \"Sound Supply - Young Street\",\n      \"manufacturer_sku\": \"HPH009274\",\n      \"manufacturer\": \"HeadOn Headphones\"\n    },\n    {\n      \"location_id\": \"92381\",\n      \"variant_id\": \"19284\",\n      \"quantity\": \"50\",\n      \"updated_at\": \"2023-06-03 09:44:32\",\n      \"product_title\": \"Headphone - Grey\",\n      \"upc\": \"5283948189832\",\n      \"location_name\": \"Sound Supply - Ottawa\",\n      \"manufacturer_sku\": \"HPH009273\",\n      \"manufacturer\": \"HeadOn Headphones\"\n    }\n  ]\n}"},{"id":"d147e179-e225-4ca6-8648-cfdfea7255b0","name":"(deprecated) Adjust items by variant_id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"location_id\": 38473,\n    \"variant_id\": 19284,\n    \"quantity\": 200\n  },\n  {\n    \"location_id\": 38473,\n    \"variant_id\": 230123,\n    \"quantity\": 100\n  },\n  {\n    \"location_id\": 92381,\n    \"variant_id\": 19284,\n    \"quantity\": 50\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 15:00:34 GMT"},{"key":"Server","value":"Apache/2.4.56 (Unix)"},{"key":"Set-Cookie","value":"SHIPEARLY=89e3d96e546154d6cb98de985c936ba0; expires=Thu, 15-Jun-2023 15:00:34 GMT; Max-Age=86400; path=/; secure; HttpOnly"},{"key":"Content-Length","value":"83"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"location_id\": \"38473\",\n      \"variant_id\": \"19284\",\n      \"quantity\": \"200\",\n      \"updated_at\": \"2023-06-10 15:10:00\",\n      \"product_title\": \"Headphone - Grey\",\n      \"upc\": \"5283948189832\",\n      \"location_name\": \"Sound Supply - Young Street\",\n      \"manufacturer_sku\": \"HPH009273\",\n      \"manufacturer\": \"HeadOn Headphones\"\n    },\n    {\n      \"location_id\": \"38473\",\n      \"variant_id\": \"230123\",\n      \"quantity\": \"100\",\n      \"updated_at\": \"2023-06-13 15:31:00\",\n      \"product_title\": \"Headphone - Red\",\n      \"upc\": \"8123724672232\",\n      \"location_name\": \"Sound Supply - Young Street\",\n      \"manufacturer_sku\": \"HPH009274\",\n      \"manufacturer\": \"HeadOn Headphones\"\n    },\n    {\n      \"location_id\": \"92381\",\n      \"variant_id\": \"19284\",\n      \"quantity\": \"50\",\n      \"updated_at\": \"2023-06-03 09:44:32\",\n      \"product_title\": \"Headphone - Grey\",\n      \"upc\": \"5283948189832\",\n      \"location_name\": \"Sound Supply - Ottawa\",\n      \"manufacturer_sku\": \"HPH009273\",\n      \"manufacturer\": \"HeadOn Headphones\"\n    }\n  ]\n}"}],"_postman_id":"b4aa3511-6adb-40b1-ad92-ff0b218f157e"},{"name":"/inventory/count","id":"8b380a49-2cfb-4b3a-8606-b7033c26924d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"00317908-de3a-41e2-97ee-ad97e72da636","id":"00317908-de3a-41e2-97ee-ad97e72da636","name":"Inventory","type":"folder"}},"urlObject":{"path":["inventory","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c97ec9f9-7ed0-465a-891b-2ae7c2e60644","name":"Get inventory data for all locations","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Jun 2023 15:00:34 GMT"},{"key":"Server","value":"Apache/2.4.56 (Unix)"},{"key":"Set-Cookie","value":"SHIPEARLY=89e3d96e546154d6cb98de985c936ba0; expires=Thu, 15-Jun-2023 15:00:34 GMT; Max-Age=86400; path=/; secure; HttpOnly"},{"key":"Content-Length","value":"83"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 4\n}"}],"_postman_id":"8b380a49-2cfb-4b3a-8606-b7033c26924d"},{"name":"/inventory/:location_id","id":"afa05dd6-6a1c-4e3e-91e3-d629ad933785","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/:location_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"00317908-de3a-41e2-97ee-ad97e72da636","id":"00317908-de3a-41e2-97ee-ad97e72da636","name":"Inventory","type":"folder"}},"urlObject":{"path":["inventory",":location_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"bff09e01-7a7b-41ba-b8a8-2667fa88d029","type":"any","value":null,"key":"location_id"}]}},"response":[{"id":"52668209-1bf9-4f86-8947-26ef6f637c97","name":"Get inventory data for a specific location","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory/:location_id","host":["https://shipearlyapp.com/api/v1"],"path":["inventory",":location_id"],"variable":[{"key":"location_id","value":"38473"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"location_id\": \"38473\",\n            \"variant_id\": \"19284\",\n            \"quantity\": \"15\",\n            \"updated_at\": \"2023-06-10 15:10:00\",\n            \"product_title\": \"Headphone - Grey\",\n            \"upc\": \"5283948189832\",\n            \"location_name\": \"Sound Supply - Young Street\",\n            \"manufacturer_sku\": \"HPH009273\",\n            \"manufacturer\": \"HeadOn Headphones\"\n        },\n        {\n            \"location_id\": \"38473\",\n            \"variant_id\": \"230123\",\n            \"quantity\": \"10\",\n            \"updated_at\": \"2023-06-13 15:31:00\",\n            \"product_title\": \"Headphone - Red\",\n            \"upc\": \"8123724672232\",\n            \"location_name\": \"Sound Supply - Young Street\",\n            \"manufacturer_sku\": \"HPH009274\",\n            \"manufacturer\": \"HeadOn Headphones\"\n        }\n    ]\n}"}],"_postman_id":"afa05dd6-6a1c-4e3e-91e3-d629ad933785"},{"name":"/inventory/:location_id/count","id":"a2973f1a-950d-4a56-882a-3a7e8b6faddd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/inventory/:location_id/count","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"00317908-de3a-41e2-97ee-ad97e72da636","id":"00317908-de3a-41e2-97ee-ad97e72da636","name":"Inventory","type":"folder"}},"urlObject":{"path":["inventory",":location_id","count"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"0a829881-b24f-455c-8452-82ec5c2c1057","type":"any","value":null,"key":"location_id"}]}},"response":[{"id":"18aa2c4f-10f7-41a4-91fa-d7063a668ca4","name":"Get inventory data for a specific location","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/inventory/:location_id/count","host":["https://shipearlyapp.com/api/v1"],"path":["inventory",":location_id","count"],"variable":[{"key":"location_id","value":"38473"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2\n}"}],"_postman_id":"a2973f1a-950d-4a56-882a-3a7e8b6faddd"}],"id":"00317908-de3a-41e2-97ee-ad97e72da636","description":"<p>Using the /inventory endpoints, Retailers can view and update inventory information for their various locations.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"c1b3cf45-a6a5-4605-b541-fcd67bc4ce32"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6ce2b253-ba09-4cae-9756-228547032f20"}}],"_postman_id":"00317908-de3a-41e2-97ee-ad97e72da636"},{"name":"Orders","item":[{"name":"/orders","id":"69f7ad4e-fdaf-40dd-9641-ec1ef3282aab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all orders</p>\n<p>Note: The <code>order_number</code> field in the format <code>#SE0001234</code> will contain <code>#</code> which is a reserved URL character.  When using the <code>filter[order_number]</code> parameter, ensure that you encode the order number appropriately. e.g. <code>/orders?filter[order_number]=%23SE0001234</code></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"f6646435-5163-4acb-ad7a-79f6c459d22e","name":"Get details for all orders","originalRequest":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"1290837\",\n      \"customer\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"email_address\": \"aham@email.com\",\n        \"accepts_marketing\": false,\n        \"order_count\": \"5\",\n        \"total_spent\": \"482.72\",\n        \"average_order\": \"96.54\"\n      },\n      \"billing_address\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"company_name\": \"AHam Industries\",\n        \"address1\": \"2702 Columbia Boulevard\",\n        \"address2\": null,\n        \"city\": \"Baltimore\",\n        \"state\": \"Maryland\",\n        \"country\": \"United States\",\n        \"zip_code\": \"21202\",\n        \"latitude\": \"39.237093\",\n        \"longitude\": \"-76.682579\"\n      },\n      \"shipping_address\": {\n        \"first_name\": \"Andy\",\n        \"last_name\": \"Hamilton\",\n        \"company_name\": \"AHam Industries\",\n        \"address1\": \"2702 Columbia Boulevard\",\n        \"address2\": null,\n        \"city\": \"Baltimore\",\n        \"state\": \"Maryland\",\n        \"country\": \"United States\",\n        \"zip_code\": \"21202\",\n        \"latitude\": \"39.237093\",\n        \"longitude\": \"-76.682579\"\n      },\n      \"retailer\": {\n        \"id\": \"25600\",\n        \"account_id\": \"81772832\",\n        \"company_name\": \"Company A\",\n        \"address1\": \"4094 Garfield Road\",\n        \"address2\": \"Suite 309\",\n        \"city\": \"Chicago\",\n        \"state_code\": \"IL\",\n        \"zip_code\": \"61614\",\n        \"country_code\": \"US\",\n        \"latitude\": \"41.853196\",\n        \"longitude\": \"-87.601958\",\n        \"created_at\": \"2020-04-13 05:06:37\",\n        \"updated_at\": \"2020-11-30 22:42:11\",\n        \"billing_email\": \"billing@companya.com\",\n        \"billing_company\": \"Company A\",\n        \"local_delivery_radius\": null,\n        \"enable_on_file_payment\": null,\n        \"is_installer\": null,\n        \"ship_from_store_distance\": null,\n        \"is_non_stocking\": null,\n        \"b2b_minimum_order_value\": null,\n        \"default_warehouse_id\": null,\n        \"b2b_tax_rate\": null\n      },\n      \"brand\": \"Globex Corporation\",\n      \"store\": \"James Bike Shop\",\n      \"order_type\": \"wholesale\",\n      \"order_status\": \"Shipped\",\n      \"internal_order_number\": \"#828182\",\n      \"ecommerce_id\": \"#92734\",\n      \"order_number\": \"#SE0019257\",\n      \"discount_code\": null,\n      \"risk_level\": \"normal\",\n      \"requested_ship_date\": \"2020-04-20 00:00:00\",\n      \"shipped_date\": null,\n      \"delivery_date\": null,\n      \"fulfillment_status\": \"fulfilled\",\n      \"shipping_lines\": [\n        {\n          \"service\": null,\n          \"price\": \"120.00\",\n          \"discount\": \"0.00\",\n          \"discounted_price\": \"120.00\",\n          \"total_tax\": \"0.00\"\n        }\n      ],\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"5\",\n          \"quantity_to_fulfill\": \"5\",\n          \"total_discount\": \"0.00\",\n          \"price\": \"250.00\",\n          \"tax_amount\": \"20.00\",\n          \"total_price\": \"1270.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"562363\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"4223457\",\n          \"variant_id\": \"3452346\",\n          \"sku\": \"233453465\",\n          \"upc\": \"342655343\",\n          \"title\": \"product2\",\n          \"quantity\": \"6\",\n          \"quantity_to_fulfill\": \"3\",\n          \"total_discount\": \"10.00\",\n          \"price\": \"150.00\",\n          \"tax_amount\": \"15.00\",\n          \"total_price\": \"455.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:32:53\",\n          \"updated_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"fulfillments\": [\n        {\n          \"id\": \"128273\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA972372788US\",\n          \"items\": [\n            {\n              \"id\": \"128974\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"2\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"128274\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA328517597US\",\n          \"items\": [\n            {\n              \"id\": \"128975\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"3\"\n            },\n            {\n              \"id\": \"927832\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"fulfilled_quantity\": \"3\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"refunds\": [\n        {\n          \"id\": \"23732\",\n          \"items\": [\n            {\n              \"id\": \"82933\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"quantity_refunded\": \"3\",\n              \"price\": \"150.00\",\n              \"total_refunded\": \"450.00\"\n            }\n          ],\n          \"amount\": \"450.00\",\n          \"shipping_amount\": \"0.00\",\n          \"tax_amount\": \"0.00\",\n          \"created_at\": \"2020-04-13 12:30:09\"\n        }\n      ],\n      \"dealer_order\": {\n        \"id\": \"242634\",\n        \"subtotal\": \"1550.50\",\n        \"total_price\": \"1695.57\",\n        \"total_discount\": \"100.00\",\n        \"total_shipping\": \"50.00\",\n        \"total_tax\": \"195.07\",\n        \"total_refund\": \"35.56\",\n        \"net_total\": \"1660.01\",\n        \"shipping_lines\": [\n          {\n            \"service\": null,\n            \"price\": \"50.00\",\n            \"discount\": \"0.00\",\n            \"discounted_price\": \"50.00\",\n            \"total_tax\": \"0.00\"\n          }\n        ],\n        \"order_items\": [\n          {\n            \"id\": \"167935\",\n            \"order_id\": \"1290837\",\n            \"warehouse_id\": \"5231\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"quantity\": \"5\",\n            \"quantity_to_fulfill\": \"5\",\n            \"total_discount\": \"0.00\",\n            \"price\": \"250.00\",\n            \"subtotal\": \"1250.00\",\n            \"tax_amount\": \"20.00\",\n            \"total_price\": \"1250.00\",\n            \"inventory_transfer_id\": \"14\",\n            \"estimated_ship_date\": \"2021-09-15\",\n            \"created_at\": \"2020-04-13 12:31:53\",\n            \"updated_at\": \"2020-04-13 12:31:53\"\n          },\n          {\n            \"id\": \"562363\",\n            \"order_id\": \"1290837\",\n            \"warehouse_id\": \"5231\",\n            \"product_id\": \"4223457\",\n            \"variant_id\": \"3452346\",\n            \"sku\": \"233453465\",\n            \"upc\": \"342655343\",\n            \"title\": \"product2\",\n            \"quantity\": \"6\",\n            \"quantity_to_fulfill\": \"3\",\n            \"total_discount\": \"10.00\",\n            \"price\": \"150.00\",\n            \"subtotal\": \"900.00\",\n            \"tax_amount\": \"15.00\",\n            \"total_price\": \"890.00\",\n            \"inventory_transfer_id\": \"14\",\n            \"estimated_ship_date\": \"2021-09-15\",\n            \"created_at\": \"2020-04-13 12:32:53\",\n            \"updated_at\": \"2020-04-13 12:32:53\"\n          }\n        ],\n        \"fulfillments\": [\n          {\n            \"id\": \"128273\",\n            \"warehouse_id\": \"28328\",\n            \"courier\": {\n              \"id\": \"3421\",\n              \"name\": \"Fedex\"\n            },\n            \"tracking_number\": \"RA972372788US\",\n            \"items\": [\n              {\n                \"id\": \"128974\",\n                \"product_id\": \"891272\",\n                \"variant_id\": \"891272\",\n                \"sku\": \"182820382\",\n                \"upc\": \"912822123\",\n                \"title\": \"product1\",\n                \"fulfilled_quantity\": \"2\"\n              }\n            ],\n            \"created_at\": \"2020-04-13 12:31:53\"\n          },\n          {\n            \"id\": \"128274\",\n            \"warehouse_id\": \"28328\",\n            \"courier\": {\n              \"id\": \"3421\",\n              \"name\": \"Fedex\"\n            },\n            \"tracking_number\": \"RA328517597US\",\n            \"items\": [\n              {\n                \"id\": \"128975\",\n                \"product_id\": \"891272\",\n                \"variant_id\": \"891272\",\n                \"sku\": \"182820382\",\n                \"upc\": \"912822123\",\n                \"title\": \"product1\",\n                \"fulfilled_quantity\": \"3\"\n              },\n              {\n                \"id\": \"927832\",\n                \"product_id\": \"4624356\",\n                \"variant_id\": \"3783456\",\n                \"sku\": \"23457227\",\n                \"upc\": \"2372373\",\n                \"title\": \"product2\",\n                \"fulfilled_quantity\": \"3\"\n              }\n            ],\n            \"created_at\": \"2020-04-13 12:32:53\"\n          }\n        ],\n        \"refunds\": [\n          {\n            \"id\": \"23732\",\n            \"items\": [\n              {\n                \"id\": \"82933\",\n                \"product_id\": \"4624356\",\n                \"variant_id\": \"3783456\",\n                \"sku\": \"23457227\",\n                \"upc\": \"2372373\",\n                \"title\": \"product2\",\n                \"quantity_refunded\": \"3\",\n                \"price\": \"150.00\",\n                \"total_refunded\": \"450.00\"\n              }\n            ],\n            \"amount\": \"450.00\",\n            \"shipping_amount\": \"0.00\",\n            \"tax_amount\": \"0.00\",\n            \"created_at\": \"2020-04-13 12:30:09\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      },\n      \"payment_method\": \"Stripe\",\n      \"payment_status\": \"Paid\",\n      \"credit_term\": null,\n      \"currency_code\": \"USD\",\n      \"total_discount\": \"0.00\",\n      \"subtotal\": \"1725.00\",\n      \"total_shipping\": \"120.00\",\n      \"total_tax\": \"150.00\",\n      \"total_price\": \"1995.00\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\"\n    },\n    {\n      \"id\": \"1290838\",\n      \"customer\": {\n        \"first_name\": \"Micheal\",\n        \"last_name\": \"Peltier\",\n        \"email_address\": \"MichealPeltier@email.com\",\n        \"accepts_marketing\": true,\n        \"order_count\": \"9\",\n        \"total_spent\": \"1005.62\",\n        \"average_order\": \"111.73\"\n      },\n      \"billing_address\": {\n        \"first_name\": \"Micheal\",\n        \"last_name\": \"Peltier\",\n        \"company_name\": \"Peltier and Sons\",\n        \"address1\": \"1876  Anmoore Road\",\n        \"address2\": \"Suite 304\",\n        \"city\": \"Queens\",\n        \"state\": \"New York\",\n        \"country\": \"United States\",\n        \"zip_code\": \"11693\",\n        \"latitude\": \"40.725796\",\n        \"longitude\": \"-73.793028\"\n      },\n      \"shipping_address\": {\n        \"first_name\": \"Micheal\",\n        \"last_name\": \"Peltier\",\n        \"company_name\": \"Peltier and Sons\",\n        \"address1\": \"3267  Grim Avenue\",\n        \"address2\": \"PO Box 4432\",\n        \"city\": \"Queens\",\n        \"state\": \"New York\",\n        \"country\": \"United States\",\n        \"zip_code\": \"11680\",\n        \"latitude\": \"40.712672\",\n        \"longitude\": \"-73.814454\"\n      },\n      \"retailer\": {\n        \"id\": \"25600\",\n        \"account_id\": \"81772832\",\n        \"company_name\": \"Company A\",\n        \"address1\": \"4094 Garfield Road\",\n        \"address2\": \"Suite 309\",\n        \"city\": \"Chicago\",\n        \"state_code\": \"IL\",\n        \"zip_code\": \"61614\",\n        \"country_code\": \"US\",\n        \"latitude\": \"41.853196\",\n        \"longitude\": \"-87.601958\",\n        \"created_at\": \"2020-04-13 05:06:37\",\n        \"updated_at\": \"2020-11-30 22:42:11\",\n        \"billing_email\": \"billing@companya.com\",\n        \"billing_company\": \"Company A\",\n        \"local_delivery_radius\": null,\n        \"enable_on_file_payment\": null,\n        \"is_installer\": null,\n        \"ship_from_store_distance\": null,\n        \"is_non_stocking\": null,\n        \"b2b_minimum_order_value\": null,\n        \"default_warehouse_id\": null,\n        \"b2b_tax_rate\": null\n      },\n      \"brand\": \"Umbrella Corporation\",\n      \"store\": \"James Bike Shop\",\n      \"order_type\": \"Local_delivery\",\n      \"order_status\": \"Need To Confirm\",\n      \"internal_order_number\": \"#828182\",\n      \"ecommerce_id\": \"#28927\",\n      \"order_number\": \"#SE0028362\",\n      \"discount_code\": \"DOLLARSOFF\",\n      \"risk_level\": \"normal\",\n      \"requested_ship_date\": null,\n      \"shipped_date\": null,\n      \"delivery_date\": null,\n      \"fulfillment_status\": \"unfulfilled\",\n      \"shipping_lines\": [\n        {\n          \"service\": null,\n          \"price\": \"120.00\",\n          \"discount\": \"0.00\",\n          \"discounted_price\": \"120.00\",\n          \"total_tax\": \"0.00\"\n        }\n      ],\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290838\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"10\",\n          \"quantity_to_fulfill\": \"10\",\n          \"total_discount\": \"100.00\",\n          \"price\": \"250.00\",\n          \"subtotal\": \"2500.00\",\n          \"tax_amount\": \"40.00\",\n          \"total_price\": \"2400.00\",\n          \"inventory_transfer_id\": \"null\",\n          \"estimated_ship_date\": \"null\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        }\n      ],\n      \"fulfillments\": [],\n      \"refunds\": [],\n      \"dealer_order\": null,\n      \"payment_method\": \"Stripe\",\n      \"payment_status\": \"Paid\",\n      \"credit_term\": null,\n      \"currency_code\": \"USD\",\n      \"total_discount\": \"100.00\",\n      \"subtotal\": \"2440.00\",\n      \"total_shipping\": \"120.00\",\n      \"total_tax\": \"150.00\",\n      \"total_price\": \"2710.00\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-04-13 05:06:37\"\n    }\n  ]\n}"}],"_postman_id":"69f7ad4e-fdaf-40dd-9641-ec1ef3282aab"},{"name":"/orders/:order_id","id":"539a13a7-a9ec-4167-b5c9-273096f8b03e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id","description":"<p>Get details of a specific order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"09b16e19-49fd-48b8-abc7-3385de0ef543","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"930e167b-f0df-4292-abe3-84226113d5d0","name":"Get details for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"1290837\",\n    \"customer\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"email_address\": \"aham@email.com\",\n      \"accepts_marketing\": false,\n      \"order_count\": \"5\",\n      \"total_spent\": \"482.72\",\n      \"average_order\": \"96.54\"\n    },\n    \"billing_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"shipping_address\": {\n      \"first_name\": \"Andy\",\n      \"last_name\": \"Hamilton\",\n      \"company_name\": \"AHam Industries\",\n      \"address1\": \"2702 Columbia Boulevard\",\n      \"address2\": null,\n      \"city\": \"Baltimore\",\n      \"state\": \"Maryland\",\n      \"country\": \"United States\",\n      \"zip_code\": \"21202\",\n      \"latitude\": \"39.237093\",\n      \"longitude\": \"-76.682579\"\n    },\n    \"retailer\": {\n      \"id\": \"25600\",\n      \"account_id\": \"81772832\",\n      \"company_name\": \"Company A\",\n      \"address1\": \"4094 Garfield Road\",\n      \"address2\": \"Suite 309\",\n      \"city\": \"Chicago\",\n      \"state_code\": \"IL\",\n      \"zip_code\": \"61614\",\n      \"country_code\": \"US\",\n      \"latitude\": \"41.853196\",\n      \"longitude\": \"-87.601958\",\n      \"created_at\": \"2020-04-13 05:06:37\",\n      \"updated_at\": \"2020-11-30 22:42:11\",\n      \"billing_email\": \"billing@companya.com\",\n      \"billing_company\": \"Company A\",\n      \"local_delivery_radius\": null,\n      \"enable_on_file_payment\": null,\n      \"is_installer\": null,\n      \"ship_from_store_distance\": null,\n      \"is_non_stocking\": null,\n      \"b2b_minimum_order_value\": null,\n      \"default_warehouse_id\": null,\n      \"b2b_tax_rate\": null\n    },\n    \"brand\": \"Globex Corporation\",\n    \"store\": \"James Bike Shop\",\n    \"order_type\": \"wholesale\",\n    \"order_status\": \"Shipped\",\n    \"internal_order_number\": \"#828182\",\n    \"ecommerce_id\": \"#92734\",\n    \"order_number\": \"#SE0019257\",\n    \"discount_code\": null,\n    \"risk_level\": \"normal\",\n    \"requested_ship_date\": \"2020-04-20 00:00:00\",\n    \"shipped_date\": null,\n    \"delivery_date\": null,\n    \"fulfillment_status\": \"fulfilled\",\n    \"shipping_lines\": [\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"5\",\n        \"quantity_to_fulfill\": \"5\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"250.00\",\n        \"tax_amount\": \"20.00\",\n        \"total_price\": \"1270.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"6\",\n        \"quantity_to_fulfill\": \"3\",\n        \"total_discount\": \"10.00\",\n        \"price\": \"150.00\",\n        \"tax_amount\": \"15.00\",\n        \"total_price\": \"455.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"fulfillments\": [\n      {\n        \"id\": \"128273\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA972372788US\",\n        \"items\": [\n          {\n            \"id\": \"128974\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"2\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"128274\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA328517597US\",\n        \"items\": [\n          {\n            \"id\": \"128975\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"3\"\n          },\n          {\n            \"id\": \"927832\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"fulfilled_quantity\": \"3\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"refunds\": [\n      {\n        \"id\": \"23732\",\n        \"items\": [\n          {\n            \"id\": \"82933\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"quantity_refunded\": \"3\",\n            \"price\": \"150.00\",\n            \"total_refunded\": \"450.00\"\n          }\n        ],\n        \"amount\": \"450.00\",\n        \"shipping_amount\": \"0.00\",\n        \"tax_amount\": \"0.00\",\n        \"created_at\": \"2020-04-13 12:30:09\"\n      }\n    ],\n    \"dealer_order\": {\n      \"id\": \"242634\",\n      \"subtotal\": \"1550.50\",\n      \"total_price\": \"1695.57\",\n      \"total_discount\": \"100.00\",\n      \"total_shipping\": \"50.00\",\n      \"total_tax\": \"195.07\",\n      \"total_refund\": \"35.56\",\n      \"net_total\": \"1660.01\",\n      \"shipping_lines\": [\n        {\n          \"service\": null,\n          \"price\": \"50.00\",\n          \"discount\": \"0.00\",\n          \"discounted_price\": \"50.00\",\n          \"total_tax\": \"0.00\"\n        }\n      ],\n      \"order_items\": [\n        {\n          \"id\": \"167935\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"891272\",\n          \"variant_id\": \"891272\",\n          \"sku\": \"182820382\",\n          \"upc\": \"912822123\",\n          \"title\": \"product1\",\n          \"quantity\": \"5\",\n          \"quantity_to_fulfill\": \"5\",\n          \"total_discount\": \"0.00\",\n          \"price\": \"250.00\",\n          \"subtotal\": \"1250.00\",\n          \"tax_amount\": \"20.00\",\n          \"total_price\": \"1250.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:31:53\",\n          \"updated_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"562363\",\n          \"order_id\": \"1290837\",\n          \"warehouse_id\": \"5231\",\n          \"product_id\": \"4223457\",\n          \"variant_id\": \"3452346\",\n          \"sku\": \"233453465\",\n          \"upc\": \"342655343\",\n          \"title\": \"product2\",\n          \"quantity\": \"6\",\n          \"quantity_to_fulfill\": \"3\",\n          \"total_discount\": \"10.00\",\n          \"price\": \"150.00\",\n          \"subtotal\": \"900.00\",\n          \"tax_amount\": \"15.00\",\n          \"total_price\": \"890.00\",\n          \"inventory_transfer_id\": \"14\",\n          \"estimated_ship_date\": \"2021-09-15\",\n          \"created_at\": \"2020-04-13 12:32:53\",\n          \"updated_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"fulfillments\": [\n        {\n          \"id\": \"128273\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA972372788US\",\n          \"items\": [\n            {\n              \"id\": \"128974\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"2\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:31:53\"\n        },\n        {\n          \"id\": \"128274\",\n          \"warehouse_id\": \"28328\",\n          \"courier\": {\n            \"id\": \"3421\",\n            \"name\": \"Fedex\"\n          },\n          \"tracking_number\": \"RA328517597US\",\n          \"items\": [\n            {\n              \"id\": \"128975\",\n              \"product_id\": \"891272\",\n              \"variant_id\": \"891272\",\n              \"sku\": \"182820382\",\n              \"upc\": \"912822123\",\n              \"title\": \"product1\",\n              \"fulfilled_quantity\": \"3\"\n            },\n            {\n              \"id\": \"927832\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"fulfilled_quantity\": \"3\"\n            }\n          ],\n          \"created_at\": \"2020-04-13 12:32:53\"\n        }\n      ],\n      \"refunds\": [\n        {\n          \"id\": \"23732\",\n          \"items\": [\n            {\n              \"id\": \"82933\",\n              \"product_id\": \"4624356\",\n              \"variant_id\": \"3783456\",\n              \"sku\": \"23457227\",\n              \"upc\": \"2372373\",\n              \"title\": \"product2\",\n              \"quantity_refunded\": \"3\",\n              \"price\": \"150.00\",\n              \"total_refunded\": \"450.00\"\n            }\n          ],\n          \"amount\": \"450.00\",\n          \"shipping_amount\": \"0.00\",\n          \"tax_amount\": \"0.00\",\n          \"created_at\": \"2020-04-13 12:30:09\"\n        }\n      ],\n      \"created_at\": \"2020-04-13 12:32:53\",\n      \"updated_at\": \"2020-04-13 12:32:53\"\n    },\n    \"payment_method\": \"Stripe\",\n    \"payment_status\": \"Paid\",\n    \"credit_term\": null,\n    \"currency_code\": \"USD\",\n    \"total_discount\": \"0.00\",\n    \"subtotal\": \"1725.00\",\n    \"total_shipping\": \"120.00\",\n    \"total_tax\": \"150.00\",\n    \"total_price\": \"1995.00\",\n    \"created_at\": \"2020-04-13 05:06:37\",\n    \"updated_at\": \"2020-11-30 22:42:11\"\n  }\n}\n"}],"_postman_id":"539a13a7-a9ec-4167-b5c9-273096f8b03e"},{"name":"/orders/:order_id/items","id":"2b3cebb1-206f-4191-b762-fbf0c7ec9119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/items?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all items for a specific order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","items"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"4467bbd7-e249-4301-a0b6-0db9e46c87fb","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"fb72b4bd-8fd8-47ea-a447-38d02d1b5d35","name":"Get all items for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/items","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","items"],"query":[{"key":"page","value":"1","disabled":true},{"key":"limit","value":"50","disabled":true},{"key":"sort","value":"-updated_at","disabled":true},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00","disabled":true}],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"167935\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"891272\",\n      \"variant_id\": \"891272\",\n      \"sku\": \"182820382\",\n      \"upc\": \"912822123\",\n      \"title\": \"product1\",\n      \"quantity\": \"5\",\n      \"quantity_to_fulfill\": \"5\",\n      \"total_discount\": \"0.00\",\n      \"price\": \"250.00\",\n      \"tax_amount\": \"20.00\",\n      \"total_price\": \"1270.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:31:53\",\n      \"updated_at\": \"2020-04-13 12:31:53\"\n    },\n    {\n      \"id\": \"562363\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"4223457\",\n      \"variant_id\": \"3452346\",\n      \"sku\": \"233453465\",\n      \"upc\": \"342655343\",\n      \"title\": \"product2\",\n      \"quantity\": \"6\",\n      \"quantity_to_fulfill\": \"3\",\n      \"total_discount\": \"10.00\",\n      \"price\": \"150.00\",\n      \"tax_amount\": \"15.00\",\n      \"total_price\": \"455.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:32:53\",\n      \"updated_at\": \"2020-04-13 12:32:53\"\n    }\n  ]\n}\n"}],"_postman_id":"2b3cebb1-206f-4191-b762-fbf0c7ec9119"},{"name":"/orders/:order_id/items/:order_item_id","id":"f9c236cf-9025-45bb-b4f8-20b33e861074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/items/:order_item_id","description":"<p>Get a specific item of an order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","items",":order_item_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"c1ed385a-f2b6-4178-b9a0-c02e20ea5b80","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"23f63622-6e8a-440b-9234-b0e6c4e9545a","description":{"content":"<p>(Required) Id of an order item.</p>\n","type":"text/plain"},"type":"any","value":"562363","key":"order_item_id"}]}},"response":[{"id":"f4d79495-6b6f-49d7-a7ec-36b7a80de48d","name":"/orders/:order_id/items/:order_item_id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/items/:order_item_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","items",":order_item_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"order_item_id","value":"562363"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"562363\",\n    \"order_id\": \"1290837\",\n    \"warehouse_id\": \"5231\",\n    \"product_id\": \"4223457\",\n    \"variant_id\": \"3452346\",\n    \"sku\": \"233453465\",\n    \"upc\": \"342655343\",\n    \"title\": \"product2\",\n    \"quantity\": \"6\",\n    \"quantity_to_fulfill\": \"3\",\n    \"total_discount\": \"10.00\",\n    \"price\": \"150.00\",\n    \"tax_amount\": \"15.00\",\n    \"total_price\": \"455.00\",\n    \"inventory_transfer_id\": \"14\",\n    \"estimated_ship_date\": \"2021-09-15\",\n    \"created_at\": \"2020-04-13 12:32:53\",\n    \"updated_at\": \"2020-04-13 12:32:53\"\n  }\n}\n"}],"_postman_id":"f9c236cf-9025-45bb-b4f8-20b33e861074"},{"name":"/orders/:order_id/refunds","id":"ca4c397b-3c8f-4575-b7ed-7dad71938a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds?page=1&limit=50&sort=-updated_at&filter[updated_at >]=2020-01-01 00:00:00","description":"<p>Get list of all refunds for an order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","refunds"],"host":["https://shipearlyapp.com/api/v1"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"key":"sort","value":"-updated_at"},{"key":"filter[updated_at >]","value":"2020-01-01 00:00:00"}],"variable":[{"id":"750d33b4-9fba-4148-8be9-b5fb9c8be6f7","type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"ca181f23-a951-4237-bd23-a54eefc3c2dc","name":"Get all refunds for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","refunds"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 23732,\n      \"items\": [\n        {\n          \"id\": 82933,\n          \"product_id\": 43452,\n          \"variant_id\": 65562,\n          \"sku\": \"82938278123\",\n          \"upc\": \"92000182633\",\n          \"title\": \"product1\",\n          \"quantity_refunded\": 4,\n          \"price\": 200.5,\n          \"total_refunded\": 802\n        }\n      ],\n      \"amount\": 802,\n      \"shipping_amount\": 0,\n      \"tax_amount\": 0,\n      \"created_at\": \"2020-04-13 12:30:09\"\n    },\n    {\n      \"id\": 23733,\n      \"items\": [\n        {\n          \"id\": 82842,\n          \"product_id\": 43453,\n          \"variant_id\": 65564,\n          \"sku\": \"29481241241\",\n          \"upc\": \"63627844562\",\n          \"title\": \"product2\",\n          \"quantity_refunded\": 2,\n          \"price\": 25,\n          \"total_refunded\": 50\n        }\n      ],\n      \"amount\": 75,\n      \"shipping_amount\": 15,\n      \"tax_amount\": 10,\n      \"created_at\": \"2020-04-13 12:30:09\"\n    }\n  ]\n}"}],"_postman_id":"ca4c397b-3c8f-4575-b7ed-7dad71938a8c"},{"name":"/orders/:order_id/refunds/:refund_id","id":"1b3a3a1b-21ab-45b7-8940-201f687e2300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds/:refund_id","description":"<p>Get a specific refund of an order</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","refunds",":refund_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"e712a804-a3f0-4a5e-847e-0d0b880f70a6","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"7b962cb5-ee75-4858-b0c6-a4730c154814","description":{"content":"<p>(Required) Id of a refund.</p>\n","type":"text/plain"},"type":"any","value":"23733","key":"refund_id"}]}},"response":[{"id":"568e3729-7571-4330-a3ac-0efad7d9b49b","name":"Get a specific refund for a specific order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/refunds/:refund_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","refunds",":refund_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"refund_id","value":"23733"}]}},"status":"OK","code":200,"_postman_previewlanguage":"JSON","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 23733,\n    \"items\": [\n    {\n        \"id\": 82842,\n        \"product_id\": 43453,\n        \"variant_id\": 65564,\n        \"sku\": \"29481241241\",\n        \"upc\": \"63627844562\",\n        \"title\": \"product2\",\n        \"quantity_refunded\": 2,\n        \"price\": 25,\n        \"total_refunded\": 50\n    }\n    ],\n    \"amount\": 75,\n    \"shipping_amount\": 15,\n    \"tax_amount\": 10,\n    \"created_at\": \"2020-04-13 12:30:09\"\n}"}],"_postman_id":"1b3a3a1b-21ab-45b7-8940-201f687e2300"},{"name":"/orders/:order_id/dealer_order","id":"e4d980fc-cc02-4c77-a3bf-1545380e633b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"6577f598-0683-4b49-a019-18df3171dcb8","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"28e9a6dc-0531-43bb-9b72-197420b0cd49","name":"Get dealer order associated with an order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"242634\",\n    \"subtotal\": \"1550.50\",\n    \"total_price\": \"1695.57\",\n    \"total_discount\": \"100.00\",\n    \"total_shipping\": \"50.00\",\n    \"total_tax\": \"195.07\",\n    \"total_refund\": \"35.56\",\n    \"net_total\": \"1660.01\",\n    \"shipping_lines\": [\n      {\n        \"service\": null,\n        \"price\": \"50.00\",\n        \"discount\": \"0.00\",\n        \"discounted_price\": \"50.00\",\n        \"total_tax\": \"0.00\"\n      }\n    ],\n    \"order_items\": [\n      {\n        \"id\": \"167935\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"891272\",\n        \"variant_id\": \"891272\",\n        \"sku\": \"182820382\",\n        \"upc\": \"912822123\",\n        \"title\": \"product1\",\n        \"quantity\": \"5\",\n        \"quantity_to_fulfill\": \"5\",\n        \"total_discount\": \"0.00\",\n        \"price\": \"250.00\",\n        \"subtotal\": \"1250.00\",\n        \"tax_amount\": \"20.00\",\n        \"total_price\": \"1250.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:31:53\",\n        \"updated_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"562363\",\n        \"order_id\": \"1290837\",\n        \"warehouse_id\": \"5231\",\n        \"product_id\": \"4223457\",\n        \"variant_id\": \"3452346\",\n        \"sku\": \"233453465\",\n        \"upc\": \"342655343\",\n        \"title\": \"product2\",\n        \"quantity\": \"6\",\n        \"quantity_to_fulfill\": \"3\",\n        \"total_discount\": \"10.00\",\n        \"price\": \"150.00\",\n        \"subtotal\": \"900.00\",\n        \"tax_amount\": \"15.00\",\n        \"total_price\": \"890.00\",\n        \"inventory_transfer_id\": \"14\",\n        \"estimated_ship_date\": \"2021-09-15\",\n        \"created_at\": \"2020-04-13 12:32:53\",\n        \"updated_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"fulfillments\": [\n      {\n        \"id\": \"128273\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA972372788US\",\n        \"items\": [\n          {\n            \"id\": \"128974\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"2\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:31:53\"\n      },\n      {\n        \"id\": \"128274\",\n        \"warehouse_id\": \"28328\",\n        \"courier\": {\n          \"id\": \"3421\",\n          \"name\": \"Fedex\"\n        },\n        \"tracking_number\": \"RA328517597US\",\n        \"items\": [\n          {\n            \"id\": \"128975\",\n            \"product_id\": \"891272\",\n            \"variant_id\": \"891272\",\n            \"sku\": \"182820382\",\n            \"upc\": \"912822123\",\n            \"title\": \"product1\",\n            \"fulfilled_quantity\": \"3\"\n          },\n          {\n            \"id\": \"927832\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"fulfilled_quantity\": \"3\"\n          }\n        ],\n        \"created_at\": \"2020-04-13 12:32:53\"\n      }\n    ],\n    \"refunds\": [\n      {\n        \"id\": \"23732\",\n        \"items\": [\n          {\n            \"id\": \"82933\",\n            \"product_id\": \"4624356\",\n            \"variant_id\": \"3783456\",\n            \"sku\": \"23457227\",\n            \"upc\": \"2372373\",\n            \"title\": \"product2\",\n            \"quantity_refunded\": \"3\",\n            \"price\": \"150.00\",\n            \"total_refunded\": \"450.00\"\n          }\n        ],\n        \"amount\": \"450.00\",\n        \"shipping_amount\": \"0.00\",\n        \"tax_amount\": \"0.00\",\n        \"created_at\": \"2020-04-13 12:30:09\"\n      }\n    ],\n    \"created_at\": \"2020-04-13 12:32:53\",\n    \"updated_at\": \"2020-04-13 12:32:53\"\n  }\n}\n"}],"_postman_id":"e4d980fc-cc02-4c77-a3bf-1545380e633b"},{"name":"/orders/:order_id/dealer_order/items","id":"394aa5d3-3ed6-421c-88c8-a3b707221a35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","items"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"d3ac98fe-9989-42f5-8c26-7518a3646b26","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"c2ca2fbd-a03b-4cab-ba1f-f36c46fb30cf","name":"Get items on a dealer order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","items"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"167935\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"891272\",\n      \"variant_id\": \"891272\",\n      \"sku\": \"182820382\",\n      \"upc\": \"912822123\",\n      \"title\": \"product1\",\n      \"quantity\": \"5\",\n      \"quantity_to_fulfill\": \"5\",\n      \"total_discount\": \"0.00\",\n      \"price\": \"250.00\",\n      \"subtotal\": \"1250.00\",\n      \"tax_amount\": \"20.00\",\n      \"total_price\": \"1250.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:31:53\",\n      \"updated_at\": \"2020-04-13 12:31:53\"\n    },\n    {\n      \"id\": \"562363\",\n      \"order_id\": \"1290837\",\n      \"warehouse_id\": \"5231\",\n      \"product_id\": \"4223457\",\n      \"variant_id\": \"3452346\",\n      \"sku\": \"233453465\",\n      \"upc\": \"342655343\",\n      \"title\": \"product2\",\n      \"quantity\": \"6\",\n      \"quantity_to_fulfill\": \"3\",\n      \"total_discount\": \"10.00\",\n      \"price\": \"150.00\",\n      \"subtotal\": \"900.00\",\n      \"tax_amount\": \"15.00\",\n      \"total_price\": \"890.00\",\n      \"inventory_transfer_id\": \"14\",\n      \"estimated_ship_date\": \"2021-09-15\",\n      \"created_at\": \"2020-04-13 12:32:53\",\n      \"updated_at\": \"2020-04-13 12:32:53\"\n    }\n  ]\n}\n"}],"_postman_id":"394aa5d3-3ed6-421c-88c8-a3b707221a35"},{"name":"/orders/:order_id/dealer_order/items/:dealer_order_item_id","id":"9d1c4a1d-a3c1-49f1-941a-854a338c2f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items/:dealer_order_item_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","items",":dealer_order_item_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"920082da-fecc-4bde-8e67-b850790970a2","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"6d122fba-0493-4505-9f45-b77f99f7e094","description":{"content":"<p>(Required) Id of a dealer order item.</p>\n","type":"text/plain"},"type":"any","value":"167935","key":"dealer_order_item_id"}]}},"response":[{"id":"5a9e5575-ef74-460a-b32b-e2ac9541f8ce","name":"Get a specific item of a dealer order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/items/:dealer_order_item_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","items",":dealer_order_item_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"dealer_order_item_id","value":"167935"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"167935\",\n    \"order_id\": \"1290837\",\n    \"warehouse_id\": \"5231\",\n    \"product_id\": \"891272\",\n    \"variant_id\": \"891272\",\n    \"sku\": \"182820382\",\n    \"upc\": \"912822123\",\n    \"title\": \"product1\",\n    \"quantity\": \"5\",\n    \"quantity_to_fulfill\": \"5\",\n    \"total_discount\": \"0.00\",\n    \"price\": \"250.00\",\n    \"subtotal\": \"1250.00\",\n    \"tax_amount\": \"20.00\",\n    \"total_price\": \"1250.00\",\n    \"inventory_transfer_id\": \"14\",\n    \"estimated_ship_date\": \"2021-09-15\",\n    \"created_at\": \"2020-04-13 12:31:53\",\n    \"updated_at\": \"2020-04-13 12:31:53\"\n  }\n}\n"}],"_postman_id":"9d1c4a1d-a3c1-49f1-941a-854a338c2f79"},{"name":"/orders/:order_id/dealer_order/refunds","id":"dd8a1c93-e203-47b4-bb08-ee1dbe931144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","refunds"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"476efae4-a651-40a9-a47e-448becd31957","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"}]}},"response":[{"id":"0022c6d9-08a7-44b8-95cb-784089b730b3","name":"Get refunds of a dealer order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","refunds"],"variable":[{"key":"order_id","value":"1290837"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"23732\",\n            \"items\": [\n                {\n                    \"id\": \"82933\",\n                    \"product_id\": \"4624356\",\n                    \"variant_id\": \"3783456\",\n                    \"sku\": \"23457227\",\n                    \"upc\": \"2372373\",\n                    \"title\": \"product2\",\n                    \"quantity_refunded\": \"3\",\n                    \"price\": \"150.00\",\n                    \"total_refunded\": \"450.00\"\n                }\n            ],\n            \"amount\": \"450.00\",\n            \"shipping_amount\": \"0.00\",\n            \"tax_amount\": \"0.00\",\n            \"created_at\": \"2020-04-13 12:30:09\"\n        }\n    ]\n}"}],"_postman_id":"dd8a1c93-e203-47b4-bb08-ee1dbe931144"},{"name":"/orders/:order_id/dealer_order/refunds/:refund_id","id":"16461b09-167f-4dda-9c89-989666133f9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds/:refund_id","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","name":"Orders","type":"folder"}},"urlObject":{"path":["orders",":order_id","dealer_order","refunds",":refund_id"],"host":["https://shipearlyapp.com/api/v1"],"query":[],"variable":[{"id":"52be90e5-0306-40bc-9699-65205f7f4c8f","description":{"content":"<p>(Required) Id of an order.</p>\n","type":"text/plain"},"type":"any","value":"1290837","key":"order_id"},{"id":"d84739e0-89ff-417c-adbf-cf1f1f3ed8fd","description":{"content":"<p>(Required) Id of a dealer order refund.</p>\n","type":"text/plain"},"type":"any","value":"23732","key":"refund_id"}]}},"response":[{"id":"393baa48-de45-44c8-ac29-d0aac28b00b8","name":"Get specific refund of a dealer order.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://shipearlyapp.com/api/v1/orders/:order_id/dealer_order/refunds/:refund_id","host":["https://shipearlyapp.com/api/v1"],"path":["orders",":order_id","dealer_order","refunds",":refund_id"],"variable":[{"key":"order_id","value":"1290837"},{"key":"refund_id","value":"23732"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"RateLimit-Limit","value":"40","description":"","type":"text"},{"key":"RateLimit-Remaining","value":"39","description":"","type":"text"},{"key":"RateLimit-Reset","value":"1","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"23732\",\n        \"items\": [\n            {\n                \"id\": \"82933\",\n                \"product_id\": \"4624356\",\n                \"variant_id\": \"3783456\",\n                \"sku\": \"23457227\",\n                \"upc\": \"2372373\",\n                \"title\": \"product2\",\n                \"quantity_refunded\": \"3\",\n                \"price\": \"150.00\",\n                \"total_refunded\": \"450.00\"\n            }\n        ],\n        \"amount\": \"450.00\",\n        \"shipping_amount\": \"0.00\",\n        \"tax_amount\": \"0.00\",\n        \"created_at\": \"2020-04-13 12:30:09\"\n    }\n}"}],"_postman_id":"16461b09-167f-4dda-9c89-989666133f9e"}],"id":"c4fa806d-6a33-4d72-b2cf-60830cf12100","description":"<p>Orders can be thought of as having two layers</p>\n<ol>\n<li>Order – Consumer Orders (Direct &amp; Retail Transactions)</li>\n<li>Dealer Order – Out of Stock Ship to Store Orders &amp; B2B Orders</li>\n</ol>\n<p>Here you can retrieve the order details for your store locations.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"034a359b-04dc-49be-a2b4-518295792843"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"9b32efa7-bb1d-4840-8b30-3fe86b811d53"}}],"_postman_id":"c4fa806d-6a33-4d72-b2cf-60830cf12100"}],"id":"413516e2-0cff-4033-90a2-60889e4e18c8","description":"<p>API Endpoints available to retailers.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"54c54163-8e45-49d4-b40a-af2276b736b6"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6601fee7-a85e-4cb9-823f-5b252648dfb8"}}],"_postman_id":"413516e2-0cff-4033-90a2-60889e4e18c8"}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"public_auth_token"},{"key":"password","value":"secret_auth_token"}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"8c78127c-6c3b-4254-93c1-3832bc7fa755"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"4ce60a18-0f31-42d0-9df6-d510bf72d429"}}],"variable":[{"key":"product_id","value":"1823719"},{"key":"retailer_id","value":"25600"},{"key":"variant_id","value":"28374627"},{"key":"pricing_tier_id","value":"67283"},{"key":"sales_rep_id","value":"28767"},{"key":"territory_id","value":"29797"},{"key":"baseUrl","value":"https://shipearlyapp.com/api/v1"},{"key":"auth_user_name","value":"public_auth_token"},{"key":"auth_password","value":"secret_auth_token"}]}