{"info":{"_postman_id":"644103d3-f19d-4fd4-ae8f-494a75558c03","name":"Homerunner API","description":"<html><head></head><body><p>Homerunner allows connection to multiple carriers by using one API and one data structure for every carrier.</p>\n<p>Our APIs is based on REST principles. All responses are returned as application/json in UTF-8 unless otherwise specified in the documentation.</p>\n<h2 id=\"authorization-basic-auth\">Authorization: Basic Auth</h2>\n<p>The API uses a standard HTTP Basic authentication scheme.</p>\n<p>Create your token using your username and integration token. You can create an integration token here: <a href=\"https://account.coolrunner.dk/integrations/api\">Integration</a> - You'll need a business account at Homerunner to enable Webservice.</p>\n<p><strong>Example</strong></p>\n<p>Combine your username and token in the following format: username:integration_token - Base64 encode the resulting string and use it in the HTTP Authentication header:</p>\n<p>Authorization: Basic dGhpcy5pcy5tZUBteS1hd2Vzb21lLWNvbXBhbnkuY29tOmFzZG4xMjM4OTBrS1NBRDg5MTIzbGtBRDg=</p>\n<h2 id=\"timestamps\">Timestamps</h2>\n<p>All timestamps at Homerunner is defined in UTC.</p>\n<h2 id=\"setup\">Setup</h2>\n<p>The API PRINTERSERVICE will often only be used if using API V3 and handle all orders inhouse instead of an external warehouse.</p>\n<p><strong>Example</strong></p>\n<p>Below you will see an example of how a setup would look using our APIs from frontend to warehouse where the order is printed and packed.</p>\n<img src=\"https://i.ibb.co/SfHxf0c/Untitled-Workspace.png\"></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"14061013","collectionId":"644103d3-f19d-4fd4-ae8f-494a75558c03","publishedId":"TVt2eQFQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"070e1a","highlight":"253b54"},"publishDate":"2025-11-18T11:31:02.000Z"},"item":[{"name":"API V3","item":[{"name":"Shipments","item":[{"name":"API V3 - Create shipment","id":"29d78b51-e084-427a-985b-1667c6946f4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"TestNavn Hansen\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn Hansen\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"order_number\": \"2220192\",\n    \"delivery_note\": 1,\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0,\n    \"order_lines\": [\n        {\n            \"qty\": 1,\n            \"customs\": [\n                {\n                    \"description\": \"description\",\n                    \"total_price\": \"123\",\n                    \"currency_code\": \"DKK\",\n                    \"sender_tariff\": \"123\",\n                    \"origin_country\": \"DK\",\n                    \"receiver_tariff\": \"123\",\n                    \"procedure_code\": \"5371D51\",\n                    \"weight\": \"123\"\n                }\n            ],\n            \"dangerous_goods\": [\n                {\n                    \"un_number\": \"1950\",\n                    \"hazard_class\": \"2.1\",\n                    \"tunnel_restriction_code\": \"D\",\n                    \"packing_group\": \"II\",\n                    \"packaging_quantity\": 2,\n                    \"proper_shipping_name\": \"Aerosols, flammable\",\n                    \"nos_description\": \"Aerosols, hydrocarbon propellant\",\n                    \"packaging_description\": \"UN-approved metal canister\",\n                    \"environmentally_hazardous\": false,\n                    \"limited_quantity\": true,\n                    \"quantity_unit\": \"kg\",\n                    \"quantity_value\": 10.67\n                }\n            ],\n            \"item_number\": \"123\",\n            \"image_url\": \"https://coolrunner.dk/image.png\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/shipments","description":"<p>This endpoint is used to create shipping labels at Homerunner. This can be used for all supported carriers by Homerunner. The data structure will be the same for each carrier and the final shipping method is defined by our CPS (Carrier Product Service).</p>\n<h3 id=\"descriptions--limits\"><strong>Descriptions / Limits</strong></h3>\n<p>Below you will find a full description of each attribute used in the request body.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Description / Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>sender</strong> -&gt; name</td>\n<td>String</td>\n<td>Required</td>\n<td>Max 35 letters</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; attention</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; street1</td>\n<td>String</td>\n<td>Required</td>\n<td>Max 40 letters</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; street2</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 40 letters</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; zip_code</td>\n<td>String / Integer</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; city</td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; country</td>\n<td>String</td>\n<td>Required</td>\n<td>ISO 2</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; phone</td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Carrier validated</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; email</td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; name</td>\n<td>String</td>\n<td>Required</td>\n<td>Max 35 letters</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; attention</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; street1</td>\n<td>String</td>\n<td>Required</td>\n<td>Length is carrier specifc but usually max is 35-40 letters (Not servicepoint address)</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; street2</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 40 letters (Not servicepoint address)</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; state</td>\n<td>String</td>\n<td>Optional</td>\n<td>ISO2</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; zip_code</td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>(Not servicepoint address)</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; city</td>\n<td>String</td>\n<td>Required</td>\n<td>(Not servicepoint address)</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; country</td>\n<td>String</td>\n<td>Required</td>\n<td>(Not servicepoint address)</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; phone</td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Carrier validated</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; email</td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; notify_sms</td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Carrier validated</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; notify_email</td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>length</strong></td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Centimeters</td>\n</tr>\n<tr>\n<td><strong>width</strong></td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Centimeters</td>\n</tr>\n<tr>\n<td><strong>height</strong></td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Centimeters</td>\n</tr>\n<tr>\n<td><strong>weight</strong></td>\n<td>String / Integer</td>\n<td>Required</td>\n<td>Grams</td>\n</tr>\n<tr>\n<td><strong>carrier</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>carrier_product</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>carrier_service</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>Sender reference</td>\n</tr>\n<tr>\n<td><strong>order_number</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>Receiver reference</td>\n</tr>\n<tr>\n<td><strong>delivery_note</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comment</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>label_format</strong></td>\n<td>String</td>\n<td>Required</td>\n<td>\"A4\", \"LabelPrint\"</td>\n</tr>\n<tr>\n<td><strong>servicepoint_id</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-order-lines\"><strong>Optional: Order lines</strong></h3>\n<p>If you want to be able to let end customer return shipments or customs informations is required for the receiver country.</p>\n<p><strong>Customs is only required if the receiver country require these informations.</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Description / Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>qty</strong></td>\n<td>Integer</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>item_number</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>image_url</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>Source url for product image.</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; description</td>\n<td>String</td>\n<td>Required if cross border of trade unions</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; total_price</td>\n<td>String / Float</td>\n<td>Required if cross border of trade unions</td>\n<td>This has to be the total price for the line, meaning the single line price added up with quantity.</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; currency_code</td>\n<td>String</td>\n<td>Required if cross border of trade unions</td>\n<td>ISO 4217</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; sender_tariff</td>\n<td>String</td>\n<td>Required if cross border of trade unions</td>\n<td>Min. 6 letters</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; origin_country</td>\n<td>String</td>\n<td>Required if cross border of trade unions</td>\n<td>ISO 2</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; receiver_tariff</td>\n<td>String</td>\n<td>Required if cross border of trade unions</td>\n<td>Min. 6 letters</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; procedure_code</td>\n<td>String</td>\n<td>Optional</td>\n<td>Min. 5 letters</td>\n</tr>\n<tr>\n<td><strong>customs</strong> -&gt; weight</td>\n<td>String / Integer</td>\n<td>Required if cross border of trade unions</td>\n<td>This has to be the total weight for the line, meaning the single line weight added up with quantity. (grams)</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; un_number</td>\n<td>Integer</td>\n<td>Required if dangerous goods</td>\n<td>4-digit UN identification number (e.g., 1993, 3480). Must correspond to ADR Chapter 3.2 Table A.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; hazard_class</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>Primary hazard class per ADR (e.g., \"3\", \"6.1\", \"9\").</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; tunnel_restriction_code</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>ADR tunnel restriction code. Valid values: \"A\", \"B\", \"B1000C\", \"B/D\", \"B/E\", \"C\", \"C5000D\", \"C/D\", \"C/E\", \"D\", \"D/E\", \"E\", \"-\" (no restriction).</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; packing_group</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>I, II or III. Not applicable to Class 2, 6.2, 7.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; proper_shipping_name</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>Official transport name. Must correspond to the UN number.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; nos_description</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>Technical/chemical name. Required when proper_shipping_name contains \"N.O.S.\" or other generic entries.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; packaging_description</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>Type of packaging (e.g., \"fibreboard boxes\", \"UN-approved metal canister\").</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; environmentally_hazardous</td>\n<td>Boolean</td>\n<td>Required if dangerous goods</td>\n<td><code>true</code> if substance is marked as environmentally hazardous (marine pollutant) in ADR.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; limited_quantity</td>\n<td>Boolean</td>\n<td>Required if dangerous goods</td>\n<td><code>true</code> = Limited Quantities (ADR 3.4). <code>false</code> = Full ADR declaration.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; quantity_unit</td>\n<td>String</td>\n<td>Required if dangerous goods</td>\n<td>\"kg\" or \"l\"</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; quantity_value</td>\n<td>Float</td>\n<td>Required if dangerous goods</td>\n<td>Numeric value for total quantity. Use with <code>quantity_unit</code>.</td>\n</tr>\n<tr>\n<td><strong>dangerous_goods</strong> -&gt; packaging_quantity</td>\n<td>Integer</td>\n<td>Required if dangerous goods</td>\n<td>Number of packages containing dangerous goods.</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>\"total_price\" has to contain a value. If its a free product due to discount, then the value before discount has to be added. If price after discount isn't free then add the price with discount.</em></p>\n","urlObject":{"protocol":"https","path":["v3","shipments"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"6462d060-3ba9-4b21-b8bb-0e52f0b7a071","name":"API V3 - Create shipment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"TestNavn Hansen\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"order_number\": \"2220192\",\n    \"delivery_note\": 1,\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0,\n    \"order_lines\": [\n        {\n            \"qty\": 1,\n            \"customs\": [\n                {\n                    \"description\": \"description\",\n                    \"total_price\": \"123\",\n                    \"currency_code\": \"DKK\",\n                    \"sender_tariff\": \"123\",\n                    \"origin_country\": \"DK\",\n                    \"receiver_tariff\": \"123\",\n                    \"procedure_code\": \"5371D51\",\n                    \"weight\": \"123\"\n                }\n            ],\n            \"dangerous_goods\": [\n                {\n                    \"un_number\": \"1950\",\n                    \"hazard_class\": \"2.1\",\n                    \"tunnel_restriction_code\": \"D\",\n                    \"packing_group\": \"II\",\n                    \"proper_shipping_name\": \"Aerosols, flammable\",\n                    \"nos_description\": \"Aerosols, hydrocarbon propellant\",\n                    \"packaging_description\": \"UN-approved metal canister\",\n                    \"environmentally_hazardous\": false,\n                    \"limited_quantity\": true,\n                    \"packaging_quantity\": 2,\n                    \"quantity_unit\": \"kg\",\n                    \"quantity_value\": 10.67\n                }\n            ],\n            \"item_number\": \"123\",\n            \"un\": \"1090\",\n            \"image_url\": \"https://coolrunner.dk/image.png\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/shipments"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"package_number\": \"370722150441664367\",\n    \"labelless_code\": \"BRING-6667-3112\",\n    \"price\": {\n        \"incl_tax\": 63.46,\n        \"excl_tax\": 50.77\n    },\n    \"sender\": {\n        \"name\": \"TestNavn Hansen\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"00000000\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"order_number\": \"2220192\",\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": \"0\",\n    \"_links\": {\n        \"self\": \"https://api.coolrunner.dk/v3/shipments/370722150441664367\",\n        \"label\": \"https://api.coolrunner.dk/v3/shipments/370722150441664367/label\",\n        \"tracking\": \"https://api.coolrunner.dk/v3/shipments/370722150441664367/tracking\"\n    }\n}"}],"_postman_id":"29d78b51-e084-427a-985b-1667c6946f4d"},{"name":"API V3 - Validate address","id":"7834129a-190d-4169-bb7a-cfb524874c30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/shipments/address/validate","description":"<p>Validate Address endpoint can be used to validate if a carrier are able to handle deliveries for an address. This can be used in checkouts, before shipping etc.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>sender</strong> -&gt; name</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 35 letters</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; attention</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; street1</td>\n<td>String</td>\n<td>Required</td>\n<td>Max 40 letters</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; street2</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 40 letters</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; zip_code</td>\n<td>String / Integer</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; city</td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; country</td>\n<td>String</td>\n<td>Required</td>\n<td>ISO 2</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; phone</td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td>Carrier validated</td>\n</tr>\n<tr>\n<td><strong>sender</strong> -&gt; email</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; name</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 35 letters</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; attention</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; street1</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 40 letters</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; street2</td>\n<td>String</td>\n<td>Optional</td>\n<td>Max 40 letters</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; zip_code</td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; city</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; country</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; phone</td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td>Carrier validated</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; email</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; notify_sms</td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td>Carrier validated</td>\n</tr>\n<tr>\n<td><strong>receiver</strong> -&gt; notify_email</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>length</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>width</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>height</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>carrier</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>carrier_product</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>carrier_service</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comment</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>label_format</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>\"A4\", \"LabelPrint\"</td>\n</tr>\n<tr>\n<td><strong>servicepoint_id</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>This endpoint inherits same request from</strong> <a href=\"https://docs.coolrunner.dk/#29d78b51-e084-427a-985b-1667c6946f4d\">API V3 - Create Shipment</a><strong>.</strong></p>\n","urlObject":{"protocol":"https","path":["v3","shipments","address","validate"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"68c29233-8f57-4d7e-846c-e3e9cdab6c0a","name":"API V3 - Validate address","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/shipments/address/validate"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Address is supported by Bring\",\n    \"fossil_free\": {\n        \"status\": true,\n        \"message\": \"We have Norway's largest electric car fleet. The parcel is delivered by an electric vehicle to your address\"\n    },\n    \"description\": []\n}"}],"_postman_id":"7834129a-190d-4169-bb7a-cfb524874c30"},{"name":"API V3 - Validate shipment","id":"192f30bb-ab7e-4d17-a653-4ccd50d604f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/shipments/validate","description":"<p>Validate Shipment endpoint can be use to validate a price for a shipment before shipping. This will return if Homerunner are able to handle the data and the final price.</p>\n<p><strong>This endpoint inherits same request from</strong> <a href=\"https://docs.coolrunner.dk/#29d78b51-e084-427a-985b-1667c6946f4d\">API V3 - Create Shipment</a><strong>.</strong></p>\n","urlObject":{"protocol":"https","path":["v3","shipments","validate"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"29f3c9c0-8e58-4c2b-a895-defc600cfe53","name":"API V3 - Validate shipment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"20\",\n    \"width\": \"20\",\n    \"height\": \"6\",\n    \"weight\": \"20\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"description\": \"\",\n    \"comment\": \"\",\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/shipments/validate "},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Dec 2020 09:39:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF-Token, X-Requested-With"},{"key":"Content-Length","value":"133"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"\",\n    \"price\": {\n        \"price_incl_tax\": 63.4625,\n        \"price_excl_tax\": 50.77\n    }\n}"}],"_postman_id":"192f30bb-ab7e-4d17-a653-4ccd50d604f3"},{"name":"API V3 - Get shipment","id":"ffcfc41c-9dab-488b-af4e-19334e94575b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/shipments/:package_number","description":"<p>This endpoint can be used to get all informations about a shipment. This will provide you with same data structure as when creating a shipment including links for label etc.</p>\n","urlObject":{"protocol":"https","path":["v3","shipments",":package_number"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"80f66526-7768-4c4e-9ad4-81d0181e3b4f","description":{"content":"<p>string</p>\n","type":"text/plain"},"type":"string","value":"","key":"package_number"}]}},"response":[{"id":"404cb037-0469-40b9-9222-1ea74968141a","name":"API V3 - Get shipment","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/shipments/370722150441664367"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"package_number\": \"370722150441664367\",\n    \"labelless_code\": \"BRING-6667-3112\",\n    \"sender\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": null,\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": null,\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"00000000\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": 20,\n    \"width\": 20,\n    \"height\": 6,\n    \"weight\": 20,\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"Order no: 2220192\",\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": \"0\",\n    \"order_lines\": [],\n    \"price\": {\n        \"incl_tax\": 63.4625,\n        \"excl_tax\": 50.77\n    },\n    \"rebooked\": null,\n    \"deleted\": false,\n    \"meta_data\": [],\n    \"_links\": {\n        \"label\": \"https://api.coolrunner.dk/v3/shipments/370722150441664367/label\",\n        \"tracking\": \"https://api.coolrunner.dk/v3/shipments/370722150441664367/tracking\"\n    },\n    \"product\": \"Bring Hjemmelevering (0-5kg)\"\n}"}],"_postman_id":"ffcfc41c-9dab-488b-af4e-19334e94575b"},{"name":"API V3 - Get shipments with filters","id":"b535da58-b15a-4618-968f-75b31ffad7be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"http://api.homerunner.com/v3/shipments?page=1&limit=25&order_by=created_at&order_dir=desc","description":"<p>This endpoint for retrieving shipments with filters. Examples available under \"Example request\"</p>\n<p><strong>All filters can be added by HTTP parameters.</strong></p>\n<h1 id=\"example-filters\"><strong>Example filters</strong></h1>\n<h3 id=\"return-shipments\"><strong>Return shipments</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[is_return]=1</td>\n<td>1 - Is return  <br />0 - Is NOT return</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"filter-on-label-created-date\"><strong>Filter on label created date</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[created_at]=last-14-days</td>\n<td>today  <br />yesterday  <br />last-7-days  <br />last-14-days  <br />last-30-days  <br />this-week  <br />last-week  <br />last-2-weeks  <br />this-month  <br />last-month  <br />last-6-months  <br />last-12-months  <br />this-year  <br />last-year</td>\n</tr>\n<tr>\n<td>filters[created_at][start]=2022-01-01</td>\n<td>Start date - Format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>filters[created_at][end]=2022-12-31</td>\n<td>End date - Format YYYY-MM-DD</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"carrier\">Carrier</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[carrier]=bring</td>\n<td>All carriers provided by Homerunner</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"recipient\">Recipient</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[receiver_name]=Test+Bob</td>\n<td>Receiver name</td>\n</tr>\n<tr>\n<td>filters[receiver_phone]=12345678</td>\n<td>Receiver phone</td>\n</tr>\n<tr>\n<td>filters[receiver_email]=<a href=\"mailto:example@homerunner.com\">example@homerunner.com</a></td>\n<td>Receiver email</td>\n</tr>\n<tr>\n<td>filters[receiver_country][0]=DK</td>\n<td>Receiver country / ISO 2</td>\n</tr>\n<tr>\n<td>filters[receiver_country][1]=DE</td>\n<td>Receiver country / ISO 2</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"sender\">Sender</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[sender_name]=Test+Bob</td>\n<td>Sender name</td>\n</tr>\n<tr>\n<td>filters[sender_phone]=12345678</td>\n<td>Sender phone</td>\n</tr>\n<tr>\n<td>filters[sender_email]=<a href=\"mailto:example@homerunner.com\">example@homerunner.com</a></td>\n<td>Sender email</td>\n</tr>\n<tr>\n<td>filters[sender_country][0]=DK</td>\n<td>Sender country / ISO 2</td>\n</tr>\n<tr>\n<td>filters[sender_country][1]=DE</td>\n<td>Sender country / ISO 2</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"reference\">Reference</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[reference]=REF12345678</td>\n<td>Reference for a shipment</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"shipments-that-has-been-on-sorting-facility\">Shipments that has been on sorting facility</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filters</strong></th>\n<th><strong>Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filters[sorting_facility]=1</td>\n<td>Boolean if the shipment been at sorting facility</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"http","path":["v3","shipments"],"host":["api","homerunner","com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"25"},{"key":"order_by","value":"created_at"},{"key":"order_dir","value":"desc"}],"variable":[]}},"response":[{"id":"4dd1b714-120e-4d41-a6fd-e33e05297b7a","name":"Return shipments within the last 7 days","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://api.homerunner.com/v3/shipments?page=1&order_by=created_at&order_dir=desc&filters[is_return]=1&filters[created_at]=last-7-days","protocol":"http","host":["api","homerunner","com"],"path":["v3","shipments"],"query":[{"key":"page","value":"1"},{"key":"order_by","value":"created_at"},{"key":"order_dir","value":"desc"},{"key":"filters[is_return]","value":"1"},{"key":"filters[created_at]","value":"last-7-days"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"shipments\": [\n        {\n            \"package_number\": \"CY2456722746NO\",\n            \"labelless_code\": \"COOL-4512-2414\",\n            \"sender\": {\n                \"name\": \"Mr. Coolrunner\",\n                \"attention\": null,\n                \"street1\": \"Streetname 1234\",\n                \"street2\": null,\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country\": \"DK\",\n                \"phone\": \"12341234\",\n                \"email\": \"info@coolrunner.dk\"\n            },\n            \"receiver\": {\n                \"name\": \"Mrs. Coolrunner\",\n                \"attention\": \"\",\n                \"street1\": \"Streetname 4321\",\n                \"street2\": null,\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country\": \"DK\",\n                \"phone\": \"43214321\",\n                \"email\": \"info@coolrunner.dk\",\n                \"notify_sms\": null,\n                \"notify_email\": null\n            },\n            \"length\": 1,\n            \"width\": 1,\n            \"height\": 1,\n            \"weight\": 500,\n            \"carrier\": \"coolrunner\",\n            \"carrier_product\": \"return\",\n            \"carrier_service\": \"business\",\n            \"reference\": \"#COOL2021-RETURN\",\n            \"description\": null,\n            \"order_number\": \"#COOL2021-RETURN\",\n            \"comment\": null,\n            \"label_format\": null,\n            \"servicepoint_id\": null,\n            \"order_lines\": [\n                {\n                    \"item_number\": \"ITEM1234\",\n                    \"qty\": 1,\n                    \"weight\": 200,\n                    \"image_url\": \"\",\n                    \"customs\": [\n                        {\n                            \"description\": \"Product description\",\n                            \"total_price\": \"159.00\",\n                            \"currency_code\": \"DKK\",\n                            \"origin_country\": \"DK\",\n                            \"weight\": 200,\n                            \"sender_tariff\": null,\n                            \"receiver_tariff\": null\n                        }\n                    ],\n                    \"cause\": \"Fejlbestilling\",\n                    \"comment\": \"test\"\n                }\n            ],\n            \"tracking\": [\n                {\n                    \"timestamp\": \"2022-05-04 07:10:20\",\n                    \"title\": \"Levering uden kvittering bestilt af modtageren\",\n                    \"event\": \"DELIVERY_CHANGED\",\n                    \"location\": null,\n                    \"latitude\": null,\n                    \"longitude\": null,\n                    \"carrier_code\": \"DELIVERY_CHANGED\",\n                    \"code\": \"DEVIATION\",\n                    \"subcode\": \"DELIVERY_EXCEPTION\"\n                }\n            ],\n            \"price\": [],\n            \"rebooked\": null,\n            \"created_at\": \"2021-12-20T13:35:29.000000Z\"\n        }\n    ],\n    \"total\": 1,\n    \"pagination\": {\n        \"per_page\": 50,\n        \"current_page\": 1,\n        \"last_page\": 1\n    }\n}"},{"id":"de5104f9-0c68-4661-956c-4f2bb17de20a","name":"All shipments for Denmark and Germany from custom timeframe (december 2021)","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://api.homerunner.com/v3/shipments?page=1&order_by=created_at&order_dir=desc&filters[receiver_country][0]=DE&filters[receiver_country][1]=DK&filters[created_at][start]=2021-12-31&filters[created_at][end]=2021-12-01","protocol":"http","host":["api","homerunner","com"],"path":["v3","shipments"],"query":[{"key":"page","value":"1"},{"key":"order_by","value":"created_at"},{"key":"order_dir","value":"desc"},{"key":"filters[receiver_country][0]","value":"DE"},{"key":"filters[receiver_country][1]","value":"DK"},{"key":"filters[created_at][start]","value":"2021-12-31"},{"key":"filters[created_at][end]","value":"2021-12-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"shipments\": [],\n    \"total\": 1,\n    \"pagination\": {\n        \"per_page\": 50,\n        \"current_page\": 1,\n        \"last_page\": 1\n    }\n}"},{"id":"8dec6bcc-878e-4f97-afe6-da2cd4259508","name":"All shipments this year to everyone named Bob","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://api.homerunner.com/v3/shipments?page=1&order_by=created_at&order_dir=desc&filters[created_at]=this-year&filters[receiver_name]=Bob","protocol":"http","host":["api","homerunner","com"],"path":["v3","shipments"],"query":[{"key":"page","value":"1"},{"key":"order_by","value":"created_at"},{"key":"order_dir","value":"desc"},{"key":"filters[created_at]","value":"this-year"},{"key":"filters[receiver_name]","value":"Bob"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"shipments\": [],\n    \"total\": 1,\n    \"pagination\": {\n        \"per_page\": 50,\n        \"current_page\": 1,\n        \"last_page\": 1\n    }\n}"}],"_postman_id":"b535da58-b15a-4618-968f-75b31ffad7be"},{"name":"API V3 - Get label","id":"331d6df9-22e7-4624-8b79-f77b8b979273","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/shipments/:package_number/label","description":"<p>This endpoint can be used to get a label using the package number. This will return PDF data if the label is found at Homerunner.</p>\n<p><strong>ZPL Format</strong></p>\n<p>Default file type will be PDF but we also support ZPL</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?filetype=zpl\n\n</code></pre>","urlObject":{"protocol":"https","path":["v3","shipments",":package_number","label"],"host":["api","homerunner","com"],"query":[],"variable":[{"description":{"content":"<p>string</p>\n","type":"text/plain"},"type":"string","value":"","key":"package_number"}]}},"response":[{"id":"450aa0b0-b460-4432-af8c-65faddb498f2","name":"API V3 - Get label","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/shipments/370722150441664367/label"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"331d6df9-22e7-4624-8b79-f77b8b979273"},{"name":"API V3 - Cancel shipment","id":"d5a651b4-7cc6-4b80-b6b3-f477bc5b89f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.homerunner.com/v3/shipments/:package_number/cancel","urlObject":{"protocol":"https","path":["v3","shipments",":package_number","cancel"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"72a483ff-0500-4bcd-ad9f-d5400556186d","type":"string","value":"","key":"package_number"}]}},"response":[],"_postman_id":"d5a651b4-7cc6-4b80-b6b3-f477bc5b89f5"}],"id":"f83f3990-036b-42c1-afdd-c281849f1787","_postman_id":"f83f3990-036b-42c1-afdd-c281849f1787","description":""},{"name":"Consignments","item":[{"name":"API V3 - Create consignment","id":"1b2033ec-3737-4ebf-91dd-5b6fa9175ba7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"Test Navn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"Stigsborgvej 60\",\n        \"zip_code\": \"9400 \",\n        \"city\": \"Nørresundby\",\n        \"country\": \"DK\",\n        \"phone\": \"12345678\",\n        \"email\": \"email@testfirma.dk\",\n        \"street2\": \"\"\n    },\n    \"receiver\": {\n        \"name\": \"Test Navn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"Stigsborgvej 60\",\n        \"zip_code\": \"9400 \",\n        \"city\": \"Nørresundby\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"carrier\": \"dfm\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"42341\",\n    \"order_number\": \"Order no: 42341\",\n    \"description\": null,\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0,\n    \"packages\": [\n        {\n            \"length\": \"10\",\n            \"width\": \"10\",\n            \"height\": \"3\",\n            \"weight\": \"1000\",\n            \"reference\": \"Colli#01\",\n            \"order_lines\": [\n                {\n                    \"qty\": 1,\n                    \"item_number\": \"123\",\n                    \"customs\": [\n                        {\n                            \"description\": \"description\",\n                            \"total_price\": \"123\",\n                            \"currency_code\": \"DKK\",\n                            \"sender_tariff\": \"123\",\n                            \"origin_country\": \"DK\",\n                            \"receiver_tariff\": \"123\",\n                            \"procedure_code\": \"5371D51\",\n                            \"weight\": \"123\"\n                        }\n                    ],\n                    \"dangerous_goods\": [\n                        {\n                            \"un_number\": \"1950\",\n                            \"hazard_class\": \"2.1\",\n                            \"tunnel_restriction_code\": \"D\",\n                            \"packing_group\": \"II\",\n                            \"packaging_quantity\": 2,\n                            \"proper_shipping_name\": \"Aerosols, flammable\",\n                            \"nos_description\": \"Aerosols, hydrocarbon propellant\",\n                            \"packaging_description\": \"UN-approved metal canister\",\n                            \"environmentally_hazardous\": false,\n                            \"limited_quantity\": true,\n                            \"quantity_unit\": \"kg\",\n                            \"quantity_value\": 10.67\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"length\": \"20\",\n            \"width\": \"20\",\n            \"height\": \"6\",\n            \"weight\": \"2000\",\n            \"reference\": \"Colli#02\",\n            \"order_lines\": [\n                {\n                    \"qty\": 1,\n                    \"item_number\": \"123\",\n                    \"customs\": [\n                        {\n                            \"description\": \"description\",\n                            \"total_price\": \"123\",\n                            \"sender_tariff\": \"123\",\n                            \"origin_country\": \"DK\",\n                            \"receiver_tariff\": \"123\",\n                            \"procedure_code\": \"5371D51\",\n                            \"weight\": \"123\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/consignments","description":"<p><strong>This request inherits same structure as</strong> <a href=\"https://docs.coolrunner.dk/#29d78b51-e084-427a-985b-1667c6946f4d\"><b>API V3 - Create shipment</b></a><strong>.</strong></p>\n","urlObject":{"protocol":"https","path":["v3","consignments"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"830d4259-ae72-4e3a-a47f-4e1ed84fb83e","name":"API V3 - Create consignment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": {\n        \"name\": \"Test Navn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"Stigsborgvej 60\",\n        \"zip_code\": \"9400 \",\n        \"city\": \"Nørresundby\",\n        \"country\": \"DK\",\n        \"phone\": \"12345678\",\n        \"email\": \"email@testfirma.dk\",\n        \"street2\": \"\"\n    },\n    \"receiver\": {\n        \"name\": \"Test Navn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"Stigsborgvej 60\",\n        \"zip_code\": \"9400 \",\n        \"city\": \"Nørresundby\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"carrier\": \"dfm\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"delivery\",\n    \"reference\": \"42341\",\n    \"order_number\": \"Order no: 42341\",\n    \"description\": null,\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": 0,\n    \"packages\": [\n        {\n            \"length\": \"10\",\n            \"width\": \"10\",\n            \"height\": \"3\",\n            \"weight\": \"1000\",\n            \"order_lines\": [\n                {\n                    \"qty\": 1,\n                    \"item_number\": \"123\",\n                    \"customs\": [\n                        {\n                            \"description\": \"description\",\n                            \"total_price\": \"123\",\n                            \"currency_code\": \"DKK\",\n                            \"sender_tariff\": \"123\",\n                            \"origin_country\": \"DK\",\n                            \"receiver_tariff\": \"123\",\n                            \"weight\": \"123\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"length\": \"20\",\n            \"width\": \"20\",\n            \"height\": \"6\",\n            \"weight\": \"2000\",\n            \"order_lines\": [\n                {\n                    \"qty\": 1,\n                    \"item_number\": \"123\",\n                    \"customs\": [\n                        {\n                            \"description\": \"description\",\n                            \"total_price\": \"123\",\n                            \"sender_tariff\": \"123\",\n                            \"origin_country\": \"DK\",\n                            \"receiver_tariff\": \"123\",\n                            \"weight\": \"123\"\n                        }\n                    ],\n                    \"dangerous_goods\": [\n                        {\n                            \"un_number\": \"1950\",\n                            \"hazard_class\": \"2.1\",\n                            \"tunnel_restriction_code\": \"D\",\n                            \"packing_group\": \"II\",\n                            \"packaging_quantity\": 2,\n                            \"proper_shipping_name\": \"Aerosols, flammable\",\n                            \"nos_description\": \"Aerosols, hydrocarbon propellant\",\n                            \"packaging_description\": \"UN-approved metal canister\",\n                            \"environmentally_hazardous\": false,\n                            \"limited_quantity\": true,\n                            \"quantity_unit\": \"kg\",\n                            \"quantity_value\": 10.67\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/consignments"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n\t\"status_message\": \"Consignment Created\",\n\t\"response_code\": 201,\n\t\"consignment_number\": \"70722151789179550\",\n\t\"response_data\": [\n\t\t{\n\t\t\t\"sender\": {\n\t\t\t\t\"name\": \"Test Navn\",\n\t\t\t\t\"attention\": \"TestFirma\",\n\t\t\t\t\"street1\": \"Stigsborgvej 60\",\n\t\t\t\t\"zip_code\": \"9400\",\n\t\t\t\t\"city\": \"Nørresundby\",\n\t\t\t\t\"country\": \"DK\",\n\t\t\t\t\"phone\": \"12345678\",\n\t\t\t\t\"email\": \"email@testfirma.dk\",\n\t\t\t\t\"street2\": null\n\t\t\t},\n\t\t\t\"receiver\": {\n\t\t\t\t\"name\": \"Test Navn\",\n\t\t\t\t\"attention\": \"TestFirma\",\n\t\t\t\t\"street1\": \"Stigsborgvej 60\",\n\t\t\t\t\"zip_code\": \"9400\",\n\t\t\t\t\"city\": \"Nørresundby\",\n\t\t\t\t\"country\": \"DK\",\n\t\t\t\t\"phone\": \"77340500\",\n\t\t\t\t\"email\": \"email@testfirma.dk\",\n\t\t\t\t\"notify_sms\": \"77340500\",\n\t\t\t\t\"notify_email\": \"email@testfirma.dk\"\n\t\t\t},\n\t\t\t\"carrier\": \"bring\",\n\t\t\t\"carrier_product\": \"private\",\n\t\t\t\"carrier_service\": \"delivery\",\n            \"reference\": \"42341\",\n            \"order_number\": \"Order no: 42341\",\n\t\t\t\"description\": null,\n\t\t\t\"comment\": null,\n\t\t\t\"label_format\": \"LabelPrint\",\n\t\t\t\"servicepoint_id\": \"0\",\n\t\t\t\"price\": {\n\t\t\t\t\"incl_tax\": 108.94,\n\t\t\t\t\"excl_tax\": 87.16,\n\t\t\t\t\"currency\": \"DKK\"\n\t\t\t},\n\t\t\t\"packages\": [\n\t\t\t\t{\n\t\t\t\t\t\"package_number\": \"370722151921981929\",\n\t\t\t\t\t\"labelless_code\": null,\n\t\t\t\t\t\"reference\": \"Order no: 1\",\n\t\t\t\t\t\"length\": 10,\n\t\t\t\t\t\"width\": 10,\n\t\t\t\t\t\"height\": 3,\n\t\t\t\t\t\"weight\": 1000,\n\t\t\t\t\t\"order_lines\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"qty\": 1,\n\t\t\t\t\t\t\t\"item_number\": \"123\",\n\t\t\t\t\t\t\t\"customs\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"description\": \"description\",\n\t\t\t\t\t\t\t\t\t\"total_price\": \"123\",\n\t\t\t\t\t\t\t\t\t\"currency_code\": \"DKK\",\n\t\t\t\t\t\t\t\t\t\"sender_tariff\": \"123\",\n\t\t\t\t\t\t\t\t\t\"origin_country\": \"DK\",\n\t\t\t\t\t\t\t\t\t\"receiver_tariff\": \"123\",\n\t\t\t\t\t\t\t\t\t\"weight\": \"123\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t],\n                            \"dangerous_goods\": [\n                {\n                    \"un_number\": \"1950\",\n                    \"hazard_class\": \"2.1\",\n                    \"tunnel_restriction_code\": \"D\",\n                    \"packing_group\": \"II\",\n                    \"packaging_quantity\": 2,\n                    \"proper_shipping_name\": \"Aerosols, flammable\",\n                    \"nos_description\": \"Aerosols, hydrocarbon propellant\",\n                    \"packaging_description\": \"UN-approved metal canister\",\n                    \"environmentally_hazardous\": false,\n                    \"limited_quantity\": true,\n                    \"quantity_unit\": \"kg\",\n                    \"quantity_value\": 10.67\n                }\n            ]\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"package_number\": \"370722151921981936\",\n\t\t\t\t\t\"labelless_code\": null,\n\t\t\t\t\t\"reference\": \"Order no: 1\",\n\t\t\t\t\t\"length\": 20,\n\t\t\t\t\t\"width\": 20,\n\t\t\t\t\t\"height\": 6,\n\t\t\t\t\t\"weight\": 2000,\n\t\t\t\t\t\"order_lines\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"qty\": 1,\n\t\t\t\t\t\t\t\"item_number\": \"123\",\n\t\t\t\t\t\t\t\"customs\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"description\": \"description\",\n\t\t\t\t\t\t\t\t\t\"total_price\": \"123\",\n\t\t\t\t\t\t\t\t\t\"sender_tariff\": \"123\",\n\t\t\t\t\t\t\t\t\t\"origin_country\": \"DK\",\n\t\t\t\t\t\t\t\t\t\"receiver_tariff\": \"123\",\n\t\t\t\t\t\t\t\t\t\"weight\": \"123\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"}],"_postman_id":"1b2033ec-3737-4ebf-91dd-5b6fa9175ba7"},{"name":"API V3 - Get labels","id":"5f972e11-c847-4e23-a8ba-cf1394932942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/consignments/{consignment_number}/label","description":"<p><strong>ZPL Format</strong></p>\n<p>Default file type will be PDF but we also support ZPL</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?filetype=zpl\n\n</code></pre>","urlObject":{"protocol":"https","path":["v3","consignments","{consignment_number}","label"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f972e11-c847-4e23-a8ba-cf1394932942"},{"name":"API V3 - Get tracking","id":"c409e0db-c109-4920-97d3-0bbb22fa3f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/consignments/{consignment_number}/tracking","urlObject":{"protocol":"https","path":["v3","consignments","{consignment_number}","tracking"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c409e0db-c109-4920-97d3-0bbb22fa3f4b"},{"name":"API V3 - Cancel labels","id":"9c908d23-a4d6-4d58-bae6-b4f6d94c89f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.homerunner.com/v3/consignments/{consignment_number}/cancel","urlObject":{"protocol":"https","path":["v3","consignments","{consignment_number}","cancel"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c908d23-a4d6-4d58-bae6-b4f6d94c89f8"}],"id":"181646b9-4e6c-47eb-8ab7-ae9161b58831","description":"<p>Consignments endpoints can be used to handle orders with got multiple shipments for a single order. Often used to handle collis.</p>\n","_postman_id":"181646b9-4e6c-47eb-8ab7-ae9161b58831"},{"name":"Tracking","item":[{"name":"API V3 - Get tracking","id":"fc6bca69-969c-4418-8a99-b019c95f4464","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/shipments/:package_number/tracking","description":"<p>This endpoint will return all tracking events for a shipment by using package number.</p>\n<p><strong>Response</strong></p>\n<p>The response contains internal and external events. Below you will find an explanation for each of these.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Explanation</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>package_number</strong></td>\n<td>String</td>\n<td>Package number used to identify the package</td>\n</tr>\n<tr>\n<td><strong>carrier</strong></td>\n<td>String</td>\n<td>Carrier used to handle the shipment</td>\n</tr>\n<tr>\n<td><strong>links</strong> -&gt; tracking</td>\n<td>String</td>\n<td>Link for internal tracking at Homerunner</td>\n</tr>\n<tr>\n<td><strong>links</strong> -&gt; carrier</td>\n<td>String</td>\n<td>Link for external tracking at carriers homepage</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; timestamp</td>\n<td>Datetime (YYYY-MM-DD HH:MM:SS)</td>\n<td>Timestamp for the given event (UTC)</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; title</td>\n<td>String</td>\n<td>Readable description of the event</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; event</td>\n<td>String</td>\n<td>Internal code for the event</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; location</td>\n<td>String</td>\n<td>Location when the event was triggered</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; latitude</td>\n<td>String</td>\n<td>Latitude for event location</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; longitude</td>\n<td>String</td>\n<td>Longitude for event location</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; carrier_code</td>\n<td>String</td>\n<td>Carrier code for the event</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; code</td>\n<td>String</td>\n<td>Code is internal event code at Homerunner</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; subcode</td>\n<td>String</td>\n<td>Subcode is internal code at Homerunner</td>\n</tr>\n<tr>\n<td><strong>events</strong> -&gt; provider</td>\n<td>String</td>\n<td>Provider of the tracking event</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v3","shipments",":package_number","tracking"],"host":["api","homerunner","com"],"query":[],"variable":[{"description":{"content":"<p>string</p>\n","type":"text/plain"},"type":"string","value":"","key":"package_number"}]}},"response":[{"id":"9c0f9d88-f1bf-474b-8987-d1a615d9ed05","name":"API V3 - Get tracking","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/shipments/370722150441664367/tracking"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"package_number\": \"370722150441664367\",\n    \"carrier\": \"bring\",\n    \"links\": {\n        \"tracking\": \"https://tracking.coolrunner.dk/?shipment=Z4216754574\",\n        \"carrier\": \"https://tracking.bring.dk/tracking/370722150441664367\"\n    },\n    \"events\": [\n        {\n            \"timestamp\": \"2022-08-09 12:11:57\",\n            \"title\": \"Forsendelsen er udleveret.\",\n            \"event\": \"DELIVERED\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"DELIVERED\",\n            \"code\": \"DELIVERED\",\n            \"subcode\": \"PACKAGE_DELIVERED\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 08:27:44\",\n            \"title\": \"Varsel at forsendelsen er lastet på bil\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 08:26:25\",\n            \"title\": \"Varsel at forsendelsen er lastet på bil\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 08:19:49\",\n            \"title\": \"Forsendelsen er læsset på bil.\",\n            \"event\": \"TRANSPORT_TO_RECIPIENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"TRANSPORT_TO_RECIPIENT\",\n            \"code\": \"TRANSIT\",\n            \"subcode\": \"IN_TRANSIT\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 06:56:32\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 06:27:21\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 03:49:07\",\n            \"title\": \"Forsendelsen er indleveret til terminal.\",\n            \"event\": \"IN_TRANSIT\",\n            \"location\": \"2670 Greve, Denmark\",\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"IN_TRANSIT\",\n            \"code\": \"TRANSIT\",\n            \"subcode\": \"IN_TRANSIT\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 03:48:15\",\n            \"title\": \"Forsendelsen er sorteret.\",\n            \"event\": \"IN_TRANSIT\",\n            \"location\": \"2670 OTTA, Norway\",\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"IN_TRANSIT\",\n            \"code\": \"TRANSIT\",\n            \"subcode\": \"IN_TRANSIT\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-08 21:56:09\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-08 21:55:18\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-08 21:49:36\",\n            \"title\": \"Vi har fået information om forsendelsen, som nu er hos afsender eller på vej til Brings terminal. Sporingen opdateres når forsendelsen er ankommet til terminalen i modtagerlandet.\",\n            \"event\": \"PRE_NOTIFIED\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"PRE_NOTIFIED\",\n            \"code\": \"BOOKED\",\n            \"subcode\": \"LABEL_BOOKED\",\n            \"provider\": \"bring\"\n        }\n    ]\n}"}],"_postman_id":"fc6bca69-969c-4418-8a99-b019c95f4464"},{"name":"API V3 - Tracking embedded page","id":"8ec6adb7-92cc-441f-81e7-6a0c40859ed3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"VIEW","header":[],"body":{"mode":"raw","raw":"<link rel=\"stylesheet\" href=\"https://assets.coolrunner.dk/scripts/embeddable-tracking/embeddable-tracking.css\">\n\n<script src=\"https://assets.coolrunner.dk/scripts/embeddable-tracking/embeddable-tracking.js\"></script>\n    <div id=\"tracking\"></div>\n\n<script> \n  new Homerunner.Tracking({\n    target: document.getElementById(\"tracking\"),\n    props: { \n        allowManualLookup: true, \n        title: '',\n        description: '',\n        defaultErrorMessage: '', \n        loaderMessage: '', \n\n\n        trackingNumberQueryParam: ['package_number', 'tracking_number', 'tracking', 'shipment'], \n        errorImageUrl: '', \n\n        iconColorScheme: {\n            primary: '#d7e0ff',\n            secondary: '#ffffff',\n            outline: '#4147d5', \n        } \n    }\n  });\n</script","options":{"raw":{"language":"html"}}},"url":"","description":"<p>This will give you the possibility to add Homerunners tracking page as an embedded feature on your own page with som custom properties.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>allowManualLookup</td>\n<td>Boolean</td>\n<td>This will add a search field on the page. If false then the packagenumber will be required in the url</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>This will add a customs title for the tracking page.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>Adds a custom description for the tracking page.</td>\n</tr>\n<tr>\n<td>defaultErrorMessage</td>\n<td>String</td>\n<td>This allows to overrule the standard error message</td>\n</tr>\n<tr>\n<td>loaderMessage</td>\n<td>String</td>\n<td>Overrule standard loading message</td>\n</tr>\n<tr>\n<td>trackingNumberQueryParam</td>\n<td>Arrray</td>\n<td>Which URL parameters should be checked when packagenumber is found.</td>\n</tr>\n<tr>\n<td>errorImageUrl</td>\n<td>String</td>\n<td>Overrule standard error image</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following code can be used to change the apperances of the tracking icons</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>iconColorScheme: {\n   primary: '#d7e0ff',\n   secondary: '#ffffff',\n   outline: '#4147d5',\n} \n\n</code></pre>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"8ec6adb7-92cc-441f-81e7-6a0c40859ed3"}],"id":"d382b600-b4ff-4293-912d-2395b0c21117","_postman_id":"d382b600-b4ff-4293-912d-2395b0c21117","description":""},{"name":"Servicepoints","item":[{"name":"API V3 - Find list servicepoints","id":"f7240bfb-eee8-4edd-9672-7a9cbda5b5c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/servicepoints/:carrier?country_code=DK&street=&zip_code=1456&city=København&limit=25","description":"<p>This endpoint can be used to get all servicepoints near an address or a zip code. This will return same data structure for every carrier.</p>\n<p><strong>The returned servicepoint id will be used to book a shipment for the final servicepoint.</strong></p>\n<p><strong>The limit for returned servicepoints is 25. Default is 10.</strong></p>\n","urlObject":{"protocol":"https","path":["v3","servicepoints",":carrier"],"host":["api","homerunner","com"],"query":[{"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"country_code","value":"DK"},{"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"street","value":""},{"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"zip_code","value":"1456"},{"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"city","value":"København"},{"key":"limit","value":"25"}],"variable":[{"type":"any","value":"instabox","key":"carrier"}]}},"response":[{"id":"015f1b3e-3d47-4ff9-a0e2-4aa49c4eca05","name":"API V3 - Find list servicepoints","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.homerunner.com/v3/servicepoints/bring?country_code=DK&street=Stigsborgvej 60 4. Th&zip_code=9400&city=Nørresundby","protocol":"https","host":["api","homerunner","com"],"path":["v3","servicepoints","bring"],"query":[{"key":"country_code","value":"DK"},{"key":"street","value":"Stigsborgvej 60 4. Th"},{"key":"zip_code","value":"9400"},{"key":"city","value":"Nørresundby"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"servicepoints\": [\n        {\n            \"id\": \"108413\",\n            \"name\": \"Next Data\",\n            \"distance\": 1600,\n            \"address\": {\n                \"street\": \"Østerbrogade 79\",\n                \"zip_code\": \"9400\",\n                \"city\": \"Nørresundby\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.058604,\n                \"longitude\": 9.926823\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"tuesday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"wednesday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"thursday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"friday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"saturday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"sunday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                }\n            }\n        },\n        {\n            \"id\": \"108562\",\n            \"name\": \"Schou Bertelsen Sko\",\n            \"distance\": 1900,\n            \"address\": {\n                \"street\": \"Vestergade 2A\",\n                \"zip_code\": \"9400\",\n                \"city\": \"Nørresundby\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.059138,\n                \"longitude\": 9.922549\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"tuesday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"wednesday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"thursday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"friday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"saturday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                },\n                \"sunday\": {\n                    \"from\": \"10:00\",\n                    \"to\": \"17:30\"\n                }\n            }\n        },\n        {\n            \"id\": \"107130\",\n            \"name\": \"Solsidens maler- og farvehandel\",\n            \"distance\": 3400,\n            \"address\": {\n                \"street\": \"Hjørringvej 80\",\n                \"zip_code\": \"9400\",\n                \"city\": \"Nørresundby\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.071346,\n                \"longitude\": 9.947973\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"tuesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"wednesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"thursday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"friday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"saturday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"sunday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                }\n            }\n        },\n        {\n            \"id\": \"107155\",\n            \"name\": \"Din PC Partner Aalborg\",\n            \"distance\": 3000,\n            \"address\": {\n                \"street\": \"Reberbansgade 13\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.049416,\n                \"longitude\": 9.913011\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"tuesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"wednesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"thursday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"friday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"saturday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"sunday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                }\n            }\n        },\n        {\n            \"id\": \"107117\",\n            \"name\": \"Spar Årestrupsvej\",\n            \"distance\": 4900,\n            \"address\": {\n                \"street\": \"Årestrupsvej 2\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.04331,\n                \"longitude\": 9.966492\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                },\n                \"tuesday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                },\n                \"wednesday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                },\n                \"thursday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                },\n                \"friday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                },\n                \"saturday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                },\n                \"sunday\": {\n                    \"from\": \"07:00\",\n                    \"to\": \"21:00\"\n                }\n            }\n        },\n        {\n            \"id\": \"105959\",\n            \"name\": \"Spar Aalborg\",\n            \"distance\": 7300,\n            \"address\": {\n                \"street\": \"Doravej 1\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.032244,\n                \"longitude\": 9.955676\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                },\n                \"tuesday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                },\n                \"wednesday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                },\n                \"thursday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                },\n                \"friday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                },\n                \"saturday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                },\n                \"sunday\": {\n                    \"from\": \"08:00\",\n                    \"to\": \"21:00\"\n                }\n            }\n        },\n        {\n            \"id\": \"108181\",\n            \"name\": \"Netkiosken.dk\",\n            \"distance\": 3700,\n            \"address\": {\n                \"street\": \"Kastetvej 55\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.053814,\n                \"longitude\": 9.902436\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                },\n                \"tuesday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                },\n                \"wednesday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                },\n                \"thursday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                },\n                \"friday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                },\n                \"saturday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                },\n                \"sunday\": {\n                    \"from\": \"08:30\",\n                    \"to\": \"23:00\"\n                }\n            }\n        },\n        {\n            \"id\": \"106881\",\n            \"name\": \"Kiosken på Boulevarden\",\n            \"distance\": 3600,\n            \"address\": {\n                \"street\": \"Boulevarden 33\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.043939,\n                \"longitude\": 9.918728\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                },\n                \"tuesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                },\n                \"wednesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                },\n                \"thursday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                },\n                \"friday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                },\n                \"saturday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                },\n                \"sunday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"22:00\"\n                }\n            }\n        },\n        {\n            \"id\": \"107559\",\n            \"name\": \"Netkiosken.dk\",\n            \"distance\": 3900,\n            \"address\": {\n                \"street\": \"Kayerødsgade 6\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.044744,\n                \"longitude\": 9.924055\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:30\"\n                },\n                \"tuesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:30\"\n                },\n                \"wednesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:30\"\n                },\n                \"thursday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:30\"\n                },\n                \"friday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:30\"\n                },\n                \"saturday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                },\n                \"sunday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"17:30\"\n                }\n            }\n        },\n        {\n            \"id\": \"109302\",\n            \"name\": \"Silvan Aalborg\",\n            \"distance\": 7500,\n            \"address\": {\n                \"street\": \"Håndværkervej 21-23\",\n                \"zip_code\": \"9000\",\n                \"city\": \"Aalborg\",\n                \"country_code\": \"DK\"\n            },\n            \"coordinates\": {\n                \"latitude\": 57.033786,\n                \"longitude\": 9.927391\n            },\n            \"opening_hours\": {\n                \"monday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:00\"\n                },\n                \"tuesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:00\"\n                },\n                \"wednesday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:00\"\n                },\n                \"thursday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:00\"\n                },\n                \"friday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"19:00\"\n                },\n                \"saturday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"18:00\"\n                },\n                \"sunday\": {\n                    \"from\": \"09:00\",\n                    \"to\": \"18:00\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"f7240bfb-eee8-4edd-9672-7a9cbda5b5c0"},{"name":"API V3 - Find single servicepoint","id":"9208da45-2191-4763-8029-ea2c811a204d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/servicepoints/:carrier/:id","description":"<p>This endpoint will return a single servicepoint by id.</p>\n<p><strong>This endpoint inherits same structure as</strong> <a href=\"https://docs.coolrunner.dk/#f7240bfb-eee8-4edd-9672-7a9cbda5b5c0\">API V3 - Find list servicepoints</a><strong>.</strong></p>\n","urlObject":{"protocol":"https","path":["v3","servicepoints",":carrier",":id"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"0f422a01-3284-4fb6-9a6a-adb3213bbcdc","description":{"content":"<p>string</p>\n","type":"text/plain"},"type":"string","value":"","key":"carrier"},{"id":"5bdc5a21-b5c0-4a82-be21-04a840e7d54f","description":{"content":"<p>string</p>\n","type":"text/plain"},"type":"string","value":"","key":"id"}]}},"response":[{"id":"771e3e47-c851-4593-8569-c17f0a27fb05","name":"API V3 - Find single servicepoint","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/servicepoints/bring/108413"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"108413\",\n    \"name\": \"Next Data\",\n    \"address\": {\n        \"street\": \"Østerbrogade 79\",\n        \"zip_code\": \"9400\",\n        \"city\": \"Nørresundby\",\n        \"country_code\": \"DK\"\n    },\n    \"coordinates\": {\n        \"latitude\": 57.058604,\n        \"longitude\": 9.926823\n    },\n    \"opening_hours\": {\n        \"monday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        },\n        \"tuesday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        },\n        \"wednesday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        },\n        \"thursday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        },\n        \"friday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        },\n        \"saturday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        },\n        \"sunday\": {\n            \"from\": \"10:00\",\n            \"to\": \"17:30\"\n        }\n    }\n}"}],"_postman_id":"9208da45-2191-4763-8029-ea2c811a204d"}],"id":"22e004fc-58c7-462b-abee-d373a70c907b","_postman_id":"22e004fc-58c7-462b-abee-d373a70c907b","description":""},{"name":"Products","item":[{"name":"API V3 - Get shipping products","id":"32c24419-1168-4ca7-938d-802821389244","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/products/:country_code","description":"<p>This endpoint is used to get all shipping products available for an account at Homerunner. This will only return \"read-to-use\" products.</p>\n<p>The returned carrier, product, service will later be used to book a shipment.</p>\n<p>Country code will always be the sender country.</p>\n<p><strong>Example</strong></p>\n<p>At HomeRunner a CPS (Carrier Product Service) defines the final shipping product. This could be as listed below:</p>\n<p>CPS: bring_private_delivery</p>\n","urlObject":{"protocol":"https","path":["v3","products",":country_code"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"bd213308-e45e-4b5a-adc2-c7830d260343","description":{"content":"<p>string</p>\n","type":"text/plain"},"type":"string","value":"","key":"country_code"}]}},"response":[{"id":"2aafee47-c959-4463-b035-ea3984148819","name":"API V3 - Get shipping products","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/products/DK"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"SE\": {\n        \"bring\": {\n            \"private\": [\n                {\n                    \"title\": \" (0-2kg)\",\n                    \"max_size\": {\n                        \"length\": 60,\n                        \"height\": 120,\n                        \"width\": 60,\n                        \"weight\": 2000\n                    },\n                    \"weight\": {\n                        \"from\": 0,\n                        \"to\": 2000\n                    },\n                    \"prices\": {\n                        \"incl_tax\": 1.25,\n                        \"excl_tax\": 1\n                    },\n                    \"services\": [\n                        {\n                            \"cps\": \"bring_private_delivery_express\",\n                            \"code\": \"delivery_express\",\n                            \"description\": \"\",\n                            \"required\": true\n                        }\n                    ]\n                },\n                {\n                    \"title\": \"Bring Hjemmelevering (0-3kg)\",\n                    \"max_size\": {\n                        \"length\": 60,\n                        \"height\": 120,\n                        \"width\": 60,\n                        \"weight\": 3000\n                    },\n                    \"weight\": {\n                        \"from\": 0,\n                        \"to\": 3000\n                    },\n                    \"prices\": {\n                        \"incl_tax\": 111.802312,\n                        \"excl_tax\": 89.4418496\n                    },\n                    \"services\": [\n                        {\n                            \"cps\": \"bring_private_delivery\",\n                            \"code\": \"delivery\",\n                            \"description\": \"\",\n                            \"required\": true\n                        }\n                    ]\n                },\n                {\n                    \"title\": \"Bring Hjemmelevering (3-6kg)\",\n                    \"max_size\": {\n                        \"length\": 60,\n                        \"height\": 120,\n                        \"width\": 60,\n                        \"weight\": 6000\n                    },\n                    \"weight\": {\n                        \"from\": 3000,\n                        \"to\": 6000\n                    },\n                    \"prices\": {\n                        \"incl_tax\": 116.869308,\n                        \"excl_tax\": 93.4954464\n                    },\n                    \"services\": [\n                        {\n                            \"cps\": \"bring_private_deliver\",\n                            \"code\": \"delivery\",\n                            \"description\": \"\",\n                            \"required\": true\n                        }\n                    ]\n                },\n                {\n                    \"title\": \"Bring Hjemmelevering (6-10kg)\",\n                    \"max_size\": {\n                        \"length\": 60,\n                        \"height\": 120,\n                        \"width\": 60,\n                        \"weight\": 10000\n                    },\n                    \"weight\": {\n                        \"from\": 6000,\n                        \"to\": 10000\n                    },\n                    \"prices\": {\n                        \"incl_tax\": 123.367976,\n                        \"excl_tax\": 98.6943808\n                    },\n                    \"services\": [\n                        {\n                            \"cps\": \"bring_private_delivery\",\n                            \"code\": \"delivery\",\n                            \"description\": \"\",\n                            \"required\": true\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"DK\": {\n        \"...\"\n    }\n}"}],"_postman_id":"32c24419-1168-4ca7-938d-802821389244"},{"name":"API V3 - Get simple products list","id":"0cf37345-db67-4ef1-804c-e59a447050bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/products/list/:from_country/:to_country","description":"<p>This endpoint is used to get all shipping products available for an account at Homerunner. This will only return \"read-to-use\" products.</p>\n<p>The returned carrier, product, service will later be used to book a shipment.</p>\n<p><strong>Example</strong></p>\n<p>At HomeRunner a CPS (Carrier Product Service) defines the final shipping product. This could be as listed below:</p>\n<p>CPS: bring_private_delivery</p>\n","urlObject":{"protocol":"https","path":["v3","products","list",":from_country",":to_country"],"host":["api","homerunner","com"],"query":[],"variable":[{"type":"any","value":"","key":"from_country"},{"description":{"content":"<p>Not required</p>\n","type":"text/plain"},"type":"any","value":"","key":"to_country"}]}},"response":[{"id":"c83fd598-fce3-4043-9de5-ab357707faf2","name":"API V3 - API V3 - Get simple products list","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/products/list/DK/SE"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"from_country\": \"DK\",\n\t\t\"to_country\": \"SE\",\n\t\t\"available_cps\": [\n\t\t\t{\n\t\t\t\t\"code\": \"dhlexpress_private_delivery\",\n\t\t\t\t\"name\": \"DHL Express  Delivery\",\n\t\t\t\t\"carrier\": \"dhlexpress\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"delivery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"pdk_private_droppoint\",\n\t\t\t\t\"name\": \"PostNord Pakkeshoplevering\",\n\t\t\t\t\"carrier\": \"pdk\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"droppoint\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"pdk_private_delivery\",\n\t\t\t\t\"name\": \"PostNord Hjemmelevering\",\n\t\t\t\t\"carrier\": \"pdk\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"delivery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"pdk_business_delivery\",\n\t\t\t\t\"name\": \"PostNord Erhvervslevering\",\n\t\t\t\t\"carrier\": \"pdk\",\n\t\t\t\t\"carrier_product\": \"business\",\n\t\t\t\t\"carrier_service\": \"delivery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"dhl_private_droppoint\",\n\t\t\t\t\"name\": \"DHL Sverige Service point\",\n\t\t\t\t\"carrier\": \"dhl\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"droppoint\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"instabox_private_delivery\",\n\t\t\t\t\"name\": \"Instabox Hjemmelevering\",\n\t\t\t\t\"carrier\": \"instabox\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"delivery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"instabox_private_droppoint\",\n\t\t\t\t\"name\": \"Instabox Pakkeboks A\",\n\t\t\t\t\"carrier\": \"instabox\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"droppoint\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"icapaket_private_droppoint\",\n\t\t\t\t\"name\": \"ICA Paket L1\",\n\t\t\t\t\"carrier\": \"icapaket\",\n\t\t\t\t\"carrier_product\": \"private\",\n\t\t\t\t\"carrier_service\": \"droppoint\"\n\t\t\t}\n\t\t]\n\t}\n]"}],"_postman_id":"0cf37345-db67-4ef1-804c-e59a447050bb"}],"id":"83c527ef-34db-45b4-a84b-1accdc0693a2","_postman_id":"83c527ef-34db-45b4-a84b-1accdc0693a2","description":""},{"name":"Reports","item":[{"name":"API V3 - Create report","id":"6bed0266-9012-4944-987d-29c0a813e950","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"from_date\": \"2020-05-01 00:00\",\n    \"to_date\": \"2020-05-31 00:00\",\n    \"carriers\": [\n        \"dao\",\n        \"bring\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/reports","urlObject":{"protocol":"https","path":["v3","reports"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"a9fd35bd-17b5-4804-877c-17ad0f60f33c","name":"API V3 - Create report","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"from_date\": \"2020-05-01 00:00\",\n    \"to_date\": \"2020-05-02 00:00\",\n    \"carriers\": [\n        \"bring\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/v3/reports "},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"RE_0001\",\n    \"status_message\": \"Report request was saved and report is pending\",\n    \"response_code\": 201,\n    \"response_data\": {\n        \"report_id\": 5833,\n        \"download_links\": {\n            \"excel\": \"https://api.homerunner.com/v3/reports/5833/excel\",\n            \"json\": \"https://api.homerunner.com/v3/reports/5833/json\"\n        }\n    },\n    \"http_code\": 201,\n    \"status_code\": \"RE_0001\"\n}"}],"_postman_id":"6bed0266-9012-4944-987d-29c0a813e950"},{"name":"API V3 - Get report status","id":"15d57a45-e07f-4025-b558-22afccd1f384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/reports/:report_id/status","urlObject":{"protocol":"https","path":["v3","reports",":report_id","status"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"26b6f089-2e96-42ba-bf1f-6ff095972894","description":{"content":"<p>int</p>\n","type":"text/plain"},"type":"string","value":"","key":"report_id"}]}},"response":[{"id":"348b4fa0-4b0c-42f0-abfd-063a90bfa4cd","name":"API V3 - Get report status","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/reports/5833/status"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"RE_0005\",\n    \"status_message\": \"Report Status\",\n    \"response_code\": 200,\n    \"response_data\": {\n        \"report_id\": 5833,\n        \"status\": \"complete\",\n        \"progress\": \"100%\"\n    },\n    \"http_code\": 200,\n    \"status_code\": \"RE_0005\"\n}"}],"_postman_id":"15d57a45-e07f-4025-b558-22afccd1f384"},{"name":"API V3 - Get report (JSON)","id":"ccea8115-2554-49ac-99ae-b5f43f4e6437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/reports/:report_id/json","urlObject":{"protocol":"https","path":["v3","reports",":report_id","json"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"4daa6db7-fece-4a46-91ac-c4d5dc559311","description":{"content":"<p>int</p>\n","type":"text/plain"},"type":"string","value":"","key":"report_id"}]}},"response":[{"id":"02d23f50-555f-4ded-a902-8a32353f24e8","name":"API V3 - Get report (JSON)","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/reports/5833/json"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"overview\": {\n        \"from\": \"2020-05-01 00:00:00\",\n        \"to\": \"2020-05-02 00:00:00\",\n        \"countries\": [],\n        \"carriers\": [\n            \"bring\"\n        ]\n    },\n    \"count\": {\n        \"count\": \"\",\n        \"countries\": [],\n        \"carriers\": []\n    },\n    \"shipments\": []\n}"}],"_postman_id":"ccea8115-2554-49ac-99ae-b5f43f4e6437"},{"name":"API V3 - Get report (Excel)","id":"7bf9cccc-742d-468d-86e8-dc2b60db2f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/reports/:report_id/excel","urlObject":{"protocol":"https","path":["v3","reports",":report_id","excel"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"6bd21572-07bd-4b7d-abfd-8c81ed099da6","description":{"content":"<p>int</p>\n","type":"text/plain"},"type":"string","value":"","key":"report_id"}]}},"response":[],"_postman_id":"7bf9cccc-742d-468d-86e8-dc2b60db2f8b"}],"id":"5af787d5-1973-4496-b497-02fbcb540867","_postman_id":"5af787d5-1973-4496-b497-02fbcb540867","description":""},{"name":"Address","item":[{"name":"API V3 - Autocity","id":"1efd69bc-dceb-45f5-97cc-0f8580dbb229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/v3/autocity/:country/:zip_code","description":"<p>This endpoint can be used to find a city name only by using the zip code.</p>\n","urlObject":{"protocol":"https","path":["v3","autocity",":country",":zip_code"],"host":["api","homerunner","com"],"query":[],"variable":[{"type":"any","value":null,"key":"country"},{"type":"any","value":null,"key":"zip_code"}]}},"response":[{"id":"ec70d342-74dd-4be2-9e7a-4a650ee9d3d2","name":"API V3 - Get report status","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/v3/autocity/DK/9000"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"zip_code\": \"9000\",\n\t\t\"iso\": \"DK\",\n\t\t\"city\": \"Aalborg\"\n\t}\n]"}],"_postman_id":"1efd69bc-dceb-45f5-97cc-0f8580dbb229"}],"id":"d84743cf-1c9b-4b68-b688-e938b4118155","_postman_id":"d84743cf-1c9b-4b68-b688-e938b4118155","description":""}],"id":"d1392cf1-6995-49c3-ae73-fd8525c541ad","description":"<p>This API version is used to generate shipping labels with own warehouse, so you are able to easy generate and print shipping labels for all our carriers.</p>\n<p>API V3 supports following features:</p>\n<ul>\n<li>Create shipments (with and without customs)</li>\n<li>Find servicepoints for all carriers</li>\n<li>Validation of addresses and shipments</li>\n<li>Get shipments (data, pdf, price)</li>\n<li>Get tracking information</li>\n<li>Get available delivery products</li>\n<li>Generate reports for deliveries</li>\n</ul>\n","_postman_id":"d1392cf1-6995-49c3-ae73-fd8525c541ad"},{"name":"API WMS","item":[{"name":"Orders","item":[{"name":"API WMS - Create order","id":"7e4f31a1-f34f-4cf5-abfb-c66e3e98081f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"warehouse\": \"tpl\",\n    \"order_number\": \"000001\",\n    \"sender\": {\n        \"name\": \"TestName\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"1\",\n    \"width\": \"1\",\n    \"height\": \"1\",\n    \"weight\": \"2000\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"droppoint\",\n    \"reference\": null,\n    \"description\": null,\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": null,\n    \"shop_name\": \"testshop\",\n    \"order_lines\": [\n        {\n            \"item_number\": \"123\",\n            \"qty\": 1,\n            \"image_url\": \"https://coolrunner.dk/image.png\",\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"procedure_code\": \"5371D51\",\n                \"weight\": 1000,\n                \"total_price\": 240\n            }\n        },\n        {\n            \"item_number\": \"1234\",\n            \"qty\": 1,\n            \"image_url\": \"https://coolrunner.dk/image.png\",\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"procedure_code\": \"5371D51\",\n                \"weight\": 1000,\n                \"total_price\": 400\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/wms/orders","description":"<p>This endpoint can be used to create orders / shipments at warehouses that is integrated at Homerunner. This allows you to choose a specific warehouse or to split orders.</p>\n<h3 id=\"descriptions--limits\"><strong>DESCRIPTIONS / LIMITS</strong></h3>\n<p>Below you will find a description of additional attributes added to the request.</p>\n<p><strong>This request inherits same structure as</strong> <a href=\"https://docs.coolrunner.dk/#29d78b51-e084-427a-985b-1667c6946f4d\"><b>API V3 - Create shipment</b></a><strong>.</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>warehouse</strong></td>\n<td>String</td>\n<td>Required</td>\n<td>\"pcn\" for Pakkecenter Nord  <br />  <br />\"tpl\" for Postnord TPL  <br />  <br />\"auto\" to select warehouse based on item numbers</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["wms","orders"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"952dd4a3-8729-4c60-8ea8-a5076804d308","name":"API WMS - Create order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"warehouse\": \"tpl\",\n    \"order_number\": \"000001\",\n    \"sender\": {\n        \"name\": \"TestName\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"1\",\n    \"width\": \"1\",\n    \"height\": \"1\",\n    \"weight\": \"2000\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"droppoint\",\n    \"reference\": null,\n    \"description\": null,\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": null,\n    \"order_lines\": [\n        {\n            \"item_number\": \"123\",\n            \"qty\": 1,\n            \"image_url\": \"https://coolrunner.dk/image.png\",\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"weight\": 1000,\n                \"total_price\": 240\n            }\n        },\n        {\n            \"item_number\": \"1234\",\n            \"qty\": 1,\n            \"image_url\": \"https://coolrunner.dk/image.png\",\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"weight\": 1000,\n                \"total_price\": 400\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/wms/orders"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"6cf6a978-86e0-4eab-aa0e-38495f601234\",\n    \"shop_order_number\": \"000001\",\n    \"wms_order_number\": \"TPL-1-123456\",\n    \"order_lines\": {\n        \"500204\": {\n            \"qty_ordered\": 1,\n            \"qty_packed\": null\n        },\n        \"500442\": {\n            \"qty_ordered\": 1,\n            \"qty_packed\": null\n        }\n    },\n    \"packed\": false,\n    \"status\": \"sent-to-wms\",\n    \"cancelled_at\": false,\n    \"shipments\": [\n        {\n            \"package_number\": \"CY925201234NO\",\n            \"carrier\": \"bring\",\n            \"carrier_product\": \"private\",\n            \"carrier_service\": \"droppoint\"\n        }\n    ],\n    \"history\": [\n        {\n            \"status\": \"initial\",\n            \"description\": \"Initial order creation\",\n            \"created_at\": \"2021-02-08 13:34:38\"\n        },\n        {\n            \"status\": \"passed-validation\",\n            \"description\": \"Initial order validation\",\n            \"created_at\": \"2021-02-08 13:34:38\"\n        },\n        {\n            \"status\": \"shipment-created\",\n            \"description\": \"Shipment created: CY925201234NO\",\n            \"created_at\": \"2021-02-08 13:34:40\"\n        },\n        {\n            \"status\": \"sent-to-wms\",\n            \"description\": \"Sent to WMS (Postnord TPL)\",\n            \"created_at\": \"2021-02-08 13:34:40\"\n        }\n    ]\n}"}],"_postman_id":"7e4f31a1-f34f-4cf5-abfb-c66e3e98081f"},{"name":"API WMS - Get all orders","id":"7facc04a-5dcd-4952-9b22-362772744a24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/wms/orders?limit=2","urlObject":{"protocol":"https","path":["wms","orders"],"host":["api","homerunner","com"],"query":[{"key":"limit","value":"2"}],"variable":[]}},"response":[{"id":"db28bb72-b820-40fa-8705-aafef3bcd9b8","name":"API WMS - Get all orders","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.homerunner.com/wms/orders?limit=2","protocol":"https","host":["api","homerunner","com"],"path":["wms","orders"],"query":[{"key":"limit","value":"2"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1154850,\n      \"uuid\": \"9999999-224d-458d-8d47-40d3b06ff238\",\n      \"customer_id\": 0,\n      \"warehouse\": \"pcn\",\n      \"customer_order_number\": \"19\",\n      \"created_at\": \"2022-05-06T06:39:47.000000Z\",\n      \"updated_at\": \"2022-05-06T06:40:17.000000Z\",\n      \"order_number\": \"40730342\",\n      \"data\": {\n        \"sender\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th\",\n          \"street2\": null,\n          \"zip_code\": \"9400\",\n          \"city\": \"Nørresundby\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\"\n        },\n        \"receiver\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th, ST 4\",\n          \"street2\": null,\n          \"zip_code\": \"9400\",\n          \"city\": \"Nørresundby\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\",\n          \"notify_sms\": \"11111111\",\n          \"notify_email\": \"noreply@coolrunner.dk\"\n        },\n        \"length\": \"10\",\n        \"width\": \"10\",\n        \"height\": \"10\",\n        \"weight\": \"3000\",\n        \"carrier\": \"homerunner\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"delivery\",\n        \"reference\": 19,\n        \"description\": null,\n        \"comment\": null,\n        \"label_format\": \"LabelPrint\",\n        \"order_lines\": [\n          {\n            \"item_number\": \"test1\",\n            \"qty\": 3\n          }\n        ]\n      },\n      \"status\": \"sent-to-wms\",\n      \"deleted_at\": null,\n      \"shop_id\": null\n    },\n    {\n      \"id\": 1155211,\n      \"uuid\": \"999998-f0bb-4e78-97df-e88f0e7fe56b\",\n      \"customer_id\": 0,\n      \"warehouse\": \"pcn\",\n      \"customer_order_number\": \"18\",\n      \"created_at\": \"2022-05-06T07:20:33.000000Z\",\n      \"updated_at\": \"2022-05-06T07:20:34.000000Z\",\n      \"order_number\": \"40730372\",\n      \"data\": {\n        \"sender\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th\",\n          \"street2\": null,\n          \"zip_code\": \"9400\",\n          \"city\": \"Nørresundby\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\"\n        },\n        \"receiver\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th\",\n          \"street2\": \"ST 4\",\n          \"zip_code\": \"9400\",\n          \"city\": \"NØRRESUNDBY\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\",\n          \"notify_sms\": \"11111111\",\n          \"notify_email\": \"noreply@coolrunner.dk\"\n        },\n        \"length\": \"10\",\n        \"width\": \"10\",\n        \"height\": \"10\",\n        \"weight\": \"1000\",\n        \"carrier\": \"homerunner\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"delivery\",\n        \"reference\": 18,\n        \"description\": null,\n        \"comment\": null,\n        \"label_format\": \"LabelPrint\",\n        \"order_lines\": [\n          {\n            \"item_number\": \"test1\",\n            \"qty\": 1\n          }\n        ]\n      },\n      \"status\": \"sent-to-wms\",\n      \"deleted_at\": null,\n      \"shop_id\": null\n    }\n  ],\n  \"path\": \"http://api.coolrunner.dk/wms/orders\",\n  \"per_page\": \"2\",\n  \"next_page_url\": \"http://api.coolrunner.dk/wms/orders?cursor=eyJ3bXNfb3JkZXJzLmlkIjoxMTU1MjExLCJfcG9pbnRzVG9OZXh0SXRlbXMiOnRydWV9\",\n  \"prev_page_url\": null\n}"}],"_postman_id":"7facc04a-5dcd-4952-9b22-362772744a24"},{"name":"API WMS - Get updated orders","id":"6974702a-41d0-4d2d-832b-45a6bae9e699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/wms/orders/updated?status=packed&from=2022-09-26 00:00:00&to=2022-09-26 14:06:40","urlObject":{"protocol":"https","path":["wms","orders","updated"],"host":["api","homerunner","com"],"query":[{"key":"status","value":"packed"},{"key":"from","value":"2022-09-26 00:00:00"},{"key":"to","value":"2022-09-26 14:06:40"}],"variable":[]}},"response":[{"id":"19e268f3-f442-40d9-91e2-85c7809e399e","name":"API WMS - Get updated orders","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.homerunner.com/wms/orders/updated?status=packed&from=2022-09-26 00:00:00&to=2022-09-26 14:06:40","protocol":"https","host":["api","homerunner","com"],"path":["wms","orders","updated"],"query":[{"key":"status","value":"packed"},{"key":"from","value":"2022-09-26 00:00:00"},{"key":"to","value":"2022-09-26 14:06:40"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1154850,\n      \"uuid\": \"9999999-224d-458d-8d47-40d3b06ff238\",\n      \"customer_id\": 0,\n      \"warehouse\": \"pcn\",\n      \"customer_order_number\": \"19\",\n      \"created_at\": \"2022-05-06T06:39:47.000000Z\",\n      \"updated_at\": \"2022-05-06T06:40:17.000000Z\",\n      \"order_number\": \"40730342\",\n      \"data\": {\n        \"sender\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th\",\n          \"street2\": null,\n          \"zip_code\": \"9400\",\n          \"city\": \"Nørresundby\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\"\n        },\n        \"receiver\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th, ST 4\",\n          \"street2\": null,\n          \"zip_code\": \"9400\",\n          \"city\": \"Nørresundby\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\",\n          \"notify_sms\": \"11111111\",\n          \"notify_email\": \"noreply@coolrunner.dk\"\n        },\n        \"length\": \"10\",\n        \"width\": \"10\",\n        \"height\": \"10\",\n        \"weight\": \"3000\",\n        \"carrier\": \"homerunner\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"delivery\",\n        \"reference\": 19,\n        \"description\": null,\n        \"comment\": null,\n        \"label_format\": \"LabelPrint\",\n        \"order_lines\": [\n          {\n            \"item_number\": \"test1\",\n            \"qty\": 3\n          }\n        ]\n      },\n      \"status\": \"sent-to-wms\",\n      \"deleted_at\": null,\n      \"shop_id\": null\n    },\n    {\n      \"id\": 1155211,\n      \"uuid\": \"999998-f0bb-4e78-97df-e88f0e7fe56b\",\n      \"customer_id\": 0,\n      \"warehouse\": \"pcn\",\n      \"customer_order_number\": \"18\",\n      \"created_at\": \"2022-05-06T07:20:33.000000Z\",\n      \"updated_at\": \"2022-05-06T07:20:34.000000Z\",\n      \"order_number\": \"40730372\",\n      \"data\": {\n        \"sender\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th\",\n          \"street2\": null,\n          \"zip_code\": \"9400\",\n          \"city\": \"Nørresundby\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\"\n        },\n        \"receiver\": {\n          \"name\": \"TestNavn\",\n          \"attention\": null,\n          \"street1\": \"Stigsborgsvej 60, 4th\",\n          \"street2\": \"ST 4\",\n          \"zip_code\": \"9400\",\n          \"city\": \"NØRRESUNDBY\",\n          \"country\": \"DK\",\n          \"phone\": \"11111111\",\n          \"email\": \"noreply@coolrunner.dk\",\n          \"notify_sms\": \"11111111\",\n          \"notify_email\": \"noreply@coolrunner.dk\"\n        },\n        \"length\": \"10\",\n        \"width\": \"10\",\n        \"height\": \"10\",\n        \"weight\": \"1000\",\n        \"carrier\": \"homerunner\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"delivery\",\n        \"reference\": 18,\n        \"description\": null,\n        \"comment\": null,\n        \"label_format\": \"LabelPrint\",\n        \"order_lines\": [\n          {\n            \"item_number\": \"test1\",\n            \"qty\": 1\n          }\n        ]\n      },\n      \"status\": \"sent-to-wms\",\n      \"deleted_at\": null,\n      \"shop_id\": null\n    }\n  ],\n  \"path\": \"http://api.coolrunner.dk/wms/orders\",\n  \"per_page\": \"2\",\n  \"next_page_url\": \"http://api.coolrunner.dk/wms/orders?cursor=eyJ3bXNfb3JkZXJzLmlkIjoxMTU1MjExLCJfcG9pbnRzVG9OZXh0SXRlbXMiOnRydWV9\",\n  \"prev_page_url\": null\n}"}],"_postman_id":"6974702a-41d0-4d2d-832b-45a6bae9e699"},{"name":"API WMS - Get single order","id":"3f9ae43e-f3f5-49d3-a2d4-833c4a1b69d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/wms/orders/{order_id}","urlObject":{"protocol":"https","path":["wms","orders","{order_id}"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"e916afd4-9995-46c7-87fa-2d9b1efd8c2e","name":"API WMS - Get single order","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/wms/orders/6cf6a978-86e0-4eab-aa0e-38495f60c4a2"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"6cf6a978-86e0-4eab-aa0e-38495f60c4a2\",\n    \"shop_order_number\": \"LK000001\",\n    \"wms_order_number\": \"TPL-7-134702\",\n    \"order_lines\": {\n        \"500204\": {\n            \"qty_ordered\": 1,\n            \"qty_packed\": null\n        },\n        \"500442\": {\n            \"qty_ordered\": 1,\n            \"qty_packed\": null\n        }\n    },\n    \"packed\": false,\n    \"status\": \"sent-to-wms\",\n    \"cancelled_at\": false,\n    \"shipments\": [\n        {\n            \"package_number\": \"CY925203905NO\",\n            \"carrier\": \"bring\",\n            \"carrier_product\": \"private\",\n            \"carrier_service\": \"droppoint\"\n        }\n    ],\n    \"history\": [\n        {\n            \"status\": \"initial\",\n            \"description\": \"Initial order creation\",\n            \"created_at\": \"2021-02-08 13:34:38\"\n        },\n        {\n            \"status\": \"passed-validation\",\n            \"description\": \"Initial order validation\",\n            \"created_at\": \"2021-02-08 13:34:38\"\n        },\n        {\n            \"status\": \"shipment-created\",\n            \"description\": \"Shipment created: CY925203905NO\",\n            \"created_at\": \"2021-02-08 13:34:40\"\n        },\n        {\n            \"status\": \"sent-to-wms\",\n            \"description\": \"Sent to WMS (Postnord TPL)\",\n            \"created_at\": \"2021-02-08 13:34:40\"\n        }\n    ]\n}"}],"_postman_id":"3f9ae43e-f3f5-49d3-a2d4-833c4a1b69d5"},{"name":"API WMS - Cancel order","id":"b14bdf2a-aee1-40a8-9641-987aaac5f672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.homerunner.com/wms/orders/{order_id}","urlObject":{"protocol":"https","path":["wms","orders","{order_id}"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"befa958c-4fdf-4d13-b0b5-f2b55aaef7b0","name":"API WMS - Delete order","originalRequest":{"method":"DELETE","header":[],"url":"https://api.homerunner.com/wms/orders/ad2a5742-fc9c-4d3e-b5a4-054276721892"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Order cancelled\",\n    \"order_id\": \"ad2a5742-fc9c-4d3e-b5a4-054276721892\"\n}"}],"_postman_id":"b14bdf2a-aee1-40a8-9641-987aaac5f672"}],"id":"a4bf2ab3-36aa-4afc-b1df-8b89f96672d7","_postman_id":"a4bf2ab3-36aa-4afc-b1df-8b89f96672d7","description":""},{"name":"Warehouses","item":[{"name":"API WMS - Suggest warehouse","id":"16df5d41-0d9a-44a0-8efd-9dc199d48199","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"warehouse\": \"tpl\",\n    \"order_number\": \"LK000001\",\n    \"sender\": {\n        \"name\": \"TestName\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"1\",\n    \"width\": \"1\",\n    \"height\": \"1\",\n    \"weight\": \"2000\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"droppoint\",\n    \"reference\": null,\n    \"description\": null,\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": null,\n    \"order_lines\": [\n        {\n            \"item_number\": \"500204\",\n            \"qty\": 1,\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"weight\": 1000,\n                \"total_price\": 240\n            }\n        },\n        {\n            \"item_number\": \"500442\",\n            \"qty\": 1,\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"weight\": 1000,\n                \"total_price\": 400\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/wms/warehouses","urlObject":{"protocol":"https","path":["wms","warehouses"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"5518158b-40d2-494e-9b4d-447e1ff30b56","name":"API WMS - Suggest warehouse","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"warehouse\": \"tpl\",\n    \"order_number\": \"LK000001\",\n    \"sender\": {\n        \"name\": \"TestName\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\"\n    },\n    \"receiver\": {\n        \"name\": \"TestNavn\",\n        \"attention\": \"TestFirma\",\n        \"street1\": \"TestGade 123\",\n        \"street2\": \"\",\n        \"zip_code\": \"9000\",\n        \"city\": \"Aalborg\",\n        \"country\": \"DK\",\n        \"phone\": \"77340500\",\n        \"email\": \"email@testfirma.dk\",\n        \"notify_sms\": \"77340500\",\n        \"notify_email\": \"email@testfirma.dk\"\n    },\n    \"length\": \"1\",\n    \"width\": \"1\",\n    \"height\": \"1\",\n    \"weight\": \"2000\",\n    \"carrier\": \"bring\",\n    \"carrier_product\": \"private\",\n    \"carrier_service\": \"droppoint\",\n    \"reference\": null,\n    \"description\": null,\n    \"comment\": null,\n    \"label_format\": \"LabelPrint\",\n    \"servicepoint_id\": null,\n    \"order_lines\": [\n        {\n            \"item_number\": \"500204\",\n            \"qty\": 1,\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"weight\": 1000,\n                \"total_price\": 240\n            }\n        },\n        {\n            \"item_number\": \"500442\",\n            \"qty\": 1,\n            \"customs\": {\n                \"description\": \"Test\",\n                \"sender_tariff\": null,\n                \"receiver_tariff\": null,\n                \"origin_country\": null,\n                \"currency_code\": null,\n                \"weight\": 1000,\n                \"total_price\": 400\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/wms/warehouses"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"order_lines\": [\n        {\n            \"item_number\": \"500204\",\n            \"qty\": 1\n        },\n        {\n            \"item_number\": \"500442\",\n            \"qty\": 1\n        }\n    ],\n    \"found\": [\n        {\n            \"warehouse\": \"tpl\",\n            \"title\": \"Postnord TPL\",\n            \"supports_orders\": true\n        }\n    ]\n}"}],"_postman_id":"16df5d41-0d9a-44a0-8efd-9dc199d48199"},{"name":"API WMS - Get warehouses","id":"f7c8a0fc-716c-4f38-9e11-3b1283830a4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.homerunner.com/wms/warehouses","urlObject":{"protocol":"https","path":["wms","warehouses"],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"52210b85-48c4-4279-a357-ad6ef72d248a","name":"API WMS - Get warehouses","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/wms/warehouses"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"pcn\": {\n        \"title\": \"Pakkecenter Nord\",\n        \"enabled\": false,\n        \"stock\": true,\n        \"orders\": true\n    },\n    \"tpl\": {\n        \"title\": \"Postnord TPL\",\n        \"enabled\": true,\n        \"stock\": true,\n        \"orders\": true\n    }\n}"}],"_postman_id":"f7c8a0fc-716c-4f38-9e11-3b1283830a4b"}],"id":"3709b28e-74ab-49ff-b878-b69c210274e0","_postman_id":"3709b28e-74ab-49ff-b878-b69c210274e0","description":""}],"id":"5525750d-9d0a-41fc-9b3d-605bb16103a9","description":"<p>Some statuses may get renamed, added or removed.<br />Additional statuses are available internally in case of failures during the initial creation of the order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Statuses</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Possible statuses</strong></td>\n<td>initial  <br />passed-validation  <br />shipment-created  <br />shipment-failed  <br />sent-to-wms  <br />rejected-by-wms  <br />accepted-by-wms  <br />imported-by-wms  <br />cancelled  <br />failed  <br />packed  <br />picked  <br />unknown-item-number  <br />missing-stock</td>\n</tr>\n<tr>\n<td><strong>Webhook statuses</strong></td>\n<td>sent-to-wms  <br />rejected-by-wms  <br />accepted-by-wms  <br />imported-by-wmseb  <br />shipment-created  <br />cancelled  <br />packed  <br />picked  <br />missing-stock  <br />unknown-item-number  <br /></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5525750d-9d0a-41fc-9b3d-605bb16103a9"},{"name":"API SMARTCHECKOUT","item":[{"name":"Setup","item":[{"name":"API SMARTCHECKOUT - Install","id":"9b4fb707-e8e5-459f-b9b5-e9bbb674a3fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"activation_code\": \"473-981-722\",\n    \"name\": \"Webshop Name\",\n    \"platform\": \"Magento\",\n    \"version\": \"2.0.0\",\n    \"shop_url\": \"https://coolrunner.dk\",\n    \"pingback_url\": \"http://coolrunner.dk/pingback/test?token=473-981-722\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.smartcheckout.homerunner.com?activation_token=473-981-722","description":"<p>This endpoint is used to install SmartCheckout at a webshop, wms etc. This will return the needed informations for showing delivery methods and the informations required to book shipments at Homerunner.</p>\n<h3 id=\"descriptions--limits\"><strong>DESCRIPTIONS / LIMITS</strong></h3>\n<p>Below you will find a full description of each attribute used in the request body.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>activation_code</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>platform</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>version</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>shop_url</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>pingback_url</strong></td>\n<td>String</td>\n<td>Required</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","host":["api","smartcheckout","homerunner","com"],"query":[{"key":"activation_token","value":"473-981-722"}],"variable":[]}},"response":[{"id":"4b853a3e-c21b-40ad-a535-b692e6eb8490","name":"API SMARTCHECKOUT - Install","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"activation_code\": \"473-981-722\",\n    \"name\": \"Webshop Name\",\n    \"platform\": \"Magento\",\n    \"version\": \"2.0.0\",\n    \"shop_url\": \"https://coolrunner.dk\",\n    \"pingback_url\": \"http://coolrunner.dk/pingback/test?token=473-981-722\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.smartcheckout.homerunner.com?activation_token=473-981-722","protocol":"https","host":["api","smartcheckout","homerunner","com"],"query":[{"key":"activation_token","value":"473-981-722"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\",\n    \"shop_info\": {\n        \"shop_token\": \"HEMMELIGT\",\n        \"integration_email\": \"HEMMELIGT\",\n        \"integration_token\": \"HEMMELIGT\"\n    }\n}"}],"_postman_id":"9b4fb707-e8e5-459f-b9b5-e9bbb674a3fe"}],"id":"3e4f8f81-a3b5-4008-912b-7adcfd09bc43","_postman_id":"3e4f8f81-a3b5-4008-912b-7adcfd09bc43","description":""},{"name":"Delivery methods","item":[{"name":"API SMARTCHECKOUT - Get delivery methods","id":"a0fe24e6-0563-4733-a9c7-cba261889ff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"receiver_address1\": \"\",\n    \"receiver_address2\": \"\",\n    \"receiver_country\": \"\",\n    \"receiver_city\": \"\",\n    \"receiver_zip_code\": \"\",\n    \"receiver_phone\": \"\",\n    \"receiver_email\": \"\",\n    \"receiver_company\": \"\",\n    \"cart_date\": 1607558400,\n    \"cart_time\": \"08:08:44\",\n    \"cart_day\": \"Thursday\",\n    \"cart_amount\": 1,\n    \"cart_weight\": 1000,\n    \"cart_currency\": \"DKK\",\n    \"cart_subtotal\": 100,\n    \"cart_items\": [\n        {\n            \"item_name\": \"\",\n            \"item_sku\": \"\",\n            \"item_id\": \"\",\n            \"item_qty\": \"\",\n            \"item_price\": \"\",\n            \"item_weight\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.smartcheckout.homerunner.com?shop_token=TOKEN","description":"<p>This endpoint is used to get delivery methods from SmartCheckout at Homerunner. This required the most used informations as sender, receiver, order lines.</p>\n<p>Homerunner will also address validate on all the shipping methods before returned.</p>\n<h3 id=\"descriptions--limits\"><strong>DESCRIPTIONS / LIMITS</strong></h3>\n<p>Below you will find a complete description of each attribute used in the request body.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>receiver_address1</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver_address2</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver_country</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>ISO 2</td>\n</tr>\n<tr>\n<td><strong>receiver_city</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver_zip_code</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver_phone</strong></td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver_email</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receiver_company</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_date</strong></td>\n<td>Integer</td>\n<td>Optional</td>\n<td>UTC</td>\n</tr>\n<tr>\n<td><strong>cart_time</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>HH:MM:SS</td>\n</tr>\n<tr>\n<td><strong>cart_day</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_amount</strong></td>\n<td>Integer</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_weight</strong></td>\n<td>Integer</td>\n<td>Optional</td>\n<td>Grams</td>\n</tr>\n<tr>\n<td><strong>cart_currency</strong></td>\n<td>String</td>\n<td>Optional</td>\n<td>ISO 4217</td>\n</tr>\n<tr>\n<td><strong>cart_subtotal</strong></td>\n<td>Float</td>\n<td>Optional</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-order-lines\">Optional: Order lines</h3>\n<p>We do recommend to send order lines aswell in the request but its not required. These can be used to add filters for specific products.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required / Optional</strong></th>\n<th><strong>Limits</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>cart_items</strong> -&gt; item_name</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_items</strong> -&gt; item_sku</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_items</strong> -&gt; item_id</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_items</strong> -&gt; item_qty</td>\n<td>String</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_items</strong> -&gt; item_price</td>\n<td>String / Float</td>\n<td>Optional</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cart_items</strong> -&gt; item_weight</td>\n<td>String / Integer</td>\n<td>Optional</td>\n<td>Grams</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","host":["api","smartcheckout","homerunner","com"],"query":[{"key":"shop_token","value":"TOKEN"}],"variable":[]}},"response":[{"id":"e8d23026-d875-4bdc-9dca-e29378ceb625","name":"API SMARTCHECKOUT - Get products","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"receiver_address1\": \"\",\n    \"receiver_address2\": \"\",\n    \"receiver_country\": \"\",\n    \"receiver_city\": \"\",\n    \"receiver_zip_code\": \"\",\n    \"receiver_phone\": \"\",\n    \"receiver_email\": \"\",\n    \"receiver_company\": \"\",\n    \"cart_date\": 1607558400,\n    \"cart_time\": \"08:08:44\",\n    \"cart_day\": \"Thursday\",\n    \"cart_amount\": 1,\n    \"cart_weight\": 1000,\n    \"cart_currency\": \"DKK\",\n    \"cart_subtotal\": 100,\n    \"cart_items\": [\n        {\n            \"item_name\": \"\",\n            \"item_sku\": \"\",\n            \"item_id\": \"\",\n            \"item_qty\": \"\",\n            \"item_price\": \"\",\n            \"item_weight\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.smartcheckout.homerunner.com?shop_token=d012ba65031af23809580f74889e34c3","protocol":"https","host":["api","smartcheckout","homerunner","com"],"query":[{"key":"shop_token","value":"d012ba65031af23809580f74889e34c3"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"carrier\": \"bring\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"droppoint\",\n        \"description\": \"Bring pakkeshoplevering - Vælge din nærmeste pakkeshop\",\n        \"title\": \"Bring\",\n        \"label\": \"Mest anbefalet\",\n        \"conditions\": [\n            {\n                \"price\": 39,\n                \"priority\": 1,\n                \"filters\": [\n                    {\n                        \"type\": \"array\",\n                        \"position\": \"receiver\",\n                        \"rule\": \"receiver_country in ['DK']\"\n                    },\n                    {\n                        \"type\": \"number\",\n                        \"position\": \"receiver\",\n                        \"rule\": \"receiver_zipcode >= '9000' && receiver_zipcode <= '9999' || receiver_zipcode in ['1000','2000','3000']\"\n                    }\n                ]\n            }\n        ],\n        \"servicepoint_url\": \"https://api.homerunner.com/v3/servicepoints/bring?country_code=DK&street=Fredensvej 2B, ST 3&zip_code=9400&city=Nørresundby\"\n    },\n    {\n        \"carrier\": \"dao\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"delivery\",\n        \"description\": \"DAO Hjemmelevering - Få leveret pakken lige til døren\",\n        \"title\": \"DAO\",\n        \"label\": null,\n        \"conditions\": [\n            {\n                \"price\": 29,\n                \"priority\": 1,\n                \"filters\": [\n                    {\n                        \"type\": \"array\",\n                        \"position\": \"receiver\",\n                        \"rule\": \"receiver_country in ['DK', 'SE']\"\n                    }\n                ]\n            }\n        ]\n    },\n    {\n        \"carrier\": \"homerunner\",\n        \"carrier_product\": \"private\",\n        \"carrier_service\": \"delivery\",\n        \"description\": \"HomeRunner - Levering til døren\",\n        \"title\": \"HomeRunner\",\n        \"label\": \"Hurtigst levering\",\n        \"conditions\": [\n            {\n                \"price\": 89,\n                \"priority\": 1,\n                \"filters\": [\n                    {\n                        \"type\": \"array\",\n                        \"position\": \"receiver\",\n                        \"rule\": \"receiver_country in ['DK']\"\n                    }\n                ]\n            }\n        ]\n    }\n]"}],"_postman_id":"a0fe24e6-0563-4733-a9c7-cba261889ff3"}],"id":"cdb396c0-56d0-45ad-a7ae-a76e6e2c66e4","_postman_id":"cdb396c0-56d0-45ad-a7ae-a76e6e2c66e4","description":""}],"id":"07ce50ca-4e84-48ee-b933-5544384dc42b","description":"<p>This API version is used for SmartCheckout. SmartCheckout allows you to handle rulesets for your shipping methods with a simple \"drag and drop\" interface.</p>\n<p>SmartCheckout API is used to provide the data for every delivery methods when they are validated.</p>\n<p>API SmartCheckout supports following features:</p>\n<ul>\n<li>Connect shop/platform to Homerunner</li>\n<li>Receive shipping methods for checkout</li>\n</ul>\n","_postman_id":"07ce50ca-4e84-48ee-b933-5544384dc42b"},{"name":"API PRINTERSERVICE","item":[{"name":"Printers","item":[{"name":"API PRINTERSERVICE - Send label to printer","id":"2839d86c-09d8-43c2-ad94-590ecf9216ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"package_number\": \"370722150445666343\",\n    \"base64\": \"xxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/printers/:printer_alias/print","description":"<p>One of these, are required in body request:</p>\n<p>\"package_number\", \"base64\" (encoded PDF).</p>\n<p>You are able to add both parameters if needed.</p>\n","urlObject":{"protocol":"https","path":["printers",":printer_alias","print"],"host":["api","homerunner","com"],"query":[],"variable":[{"type":"string","value":"","key":"printer_alias"}]}},"response":[{"id":"92e2b0c3-050c-4960-80a2-3ce5ea334cfe","name":"API PRINTERSERVICE - Sent label to printer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"package_number\": \"370722150445666343\",\n    \"base64\": \"xxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/printers/TestAfNavn/print"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 13:18:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips"},{"key":"Content-Length","value":"38"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Print sent to TestAfNavn\"\n}"}],"_postman_id":"2839d86c-09d8-43c2-ad94-590ecf9216ed"},{"name":"API PRINTERSERIVCE - Get printers","id":"e8c269b5-08cc-4383-a9d1-716f564efc3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/printers/","urlObject":{"protocol":"https","path":["printers",""],"host":["api","homerunner","com"],"query":[],"variable":[]}},"response":[{"id":"1d7dc22a-8d29-440f-9d2a-254f53690882","name":"API PRINTERSERIVCE - Get printers","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/printers/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 13:07:47 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips"},{"key":"Content-Length","value":"3058"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"KONICA_MINOLTA\",\n        \"alias\": \"Homerunner Testprinter\",\n        \"location\": \"\",\n        \"description\": \"Generic PostScript Printer\",\n        \"default\": 1,\n        \"active_at\": \"2021-01-07 13:06:58\",\n        \"updated_at\": \"2021-01-07T13:06:58.000000Z\",\n        \"active\": true,\n        \"print_service\": {\n            \"mac_address\": \"8c:87:87:87:87:89\",\n            \"location\": \"Homerunner-MacBook-Pro-2.local\",\n            \"hostname\": \"Homerunner-MacBook-Pro-2.local\",\n            \"updated_at\": \"2021-01-07T13:06:58.000000Z\"\n        }\n    }\n]"}],"_postman_id":"e8c269b5-08cc-4383-a9d1-716f564efc3d"},{"name":"API PRINTERSERVICE - Get specific printer","id":"e0c3babc-79f4-43e5-8776-a3a3d0189b3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"GET","header":[],"url":"https://api.homerunner.com/printers/:printer_alias","urlObject":{"protocol":"https","path":["printers",":printer_alias"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"30fddaba-672d-49fc-bedb-5fecfadd592b","type":"string","value":"","key":"printer_alias"}]}},"response":[{"id":"9f34d0ad-a0f2-4d32-af6b-1dcc7de7819f","name":"API PRINTERSERVICE - Get specific printer","originalRequest":{"method":"GET","header":[],"url":"https://api.homerunner.com/printers/Homerunner Testprinter"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"KONICA_MINOLTA\",\n        \"alias\": \"Homerunner Testprinter\",\n        \"location\": \"\",\n        \"description\": \"Generic PostScript Printer\",\n        \"default\": 1,\n        \"active_at\": \"2021-01-07 13:06:58\",\n        \"updated_at\": \"2021-01-07T13:06:58.000000Z\",\n        \"active\": true,\n        \"print_service\": {\n            \"mac_address\": \"8c:87:87:87:87:89\",\n            \"location\": \"CoolRunner-MacBook-Pro-2.local\",\n            \"hostname\": \"CoolRunner-MacBook-Pro-2.local\",\n            \"updated_at\": \"2021-01-07T13:06:58.000000Z\"\n        }\n    }\n]"}],"_postman_id":"e0c3babc-79f4-43e5-8776-a3a3d0189b3d"},{"name":"API PRINTERSERVICE - Update printer","id":"35d1d757-9e52-48d0-80bb-c5775713c6cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"LabelPrinter\",\n    \"alias\": \"LabelPrinter\",\n    \"description\": \"Labelprinter på lager\",\n    \"default\": true,\n    \"location\": \"Lager1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/printers/:printer_alias","urlObject":{"protocol":"https","path":["printers",":printer_alias"],"host":["api","homerunner","com"],"query":[],"variable":[{"id":"327fbffe-4c23-4fe7-a89f-52a9b908d836","type":"string","value":"","key":"printer_alias"}]}},"response":[{"id":"7d75ae32-fb95-467f-bdc5-7433e3e75c4d","name":"API PRINTERSERVICE - Update printer","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"LabelPrinter\",\n    \"alias\": \"LabelPrinter\",\n    \"description\": \"Labelprinter på lager\",\n    \"default\": true,\n    \"location\": \"Lager1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.homerunner.com/printers/CoolRunner Testprinter"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"35d1d757-9e52-48d0-80bb-c5775713c6cb"}],"id":"af0a5cfb-fd51-4888-aa69-2098ff585618","_postman_id":"af0a5cfb-fd51-4888-aa69-2098ff585618","description":""}],"id":"f4dc5148-2b47-45aa-8d67-1904ae2db270","description":"<p>Use this printerservice to easily print every shipping labels you generate using Homerunner</p>\n<p><a href=\"https://assets.coolrunner.dk/printservice/PrintService.msi\">Download for Windows</a></p>\n<p><a href=\"https://assets.coolrunner.dk/printservice/PrintService.dmg\">Download for OSX</a></p>\n","event":[{"listen":"prerequest","script":{"id":"893b1e51-e3ce-4983-8176-93c4ec392959","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c5e4933c-e4df-4702-8bec-13097ce8b4d3","type":"text/javascript","exec":[""]}}],"_postman_id":"f4dc5148-2b47-45aa-8d67-1904ae2db270"},{"name":"WEBHOOKS","item":[{"name":"Tracking","item":[{"name":"WEBHOOKS - Tracking event","id":"cba655b6-72ec-47e2-8b1e-b56e132f8edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"VIEW","header":[],"url":"","description":"<p>This tracking event will forward all newest tracking events received from warehouse, carriers etc. to an endpoint.</p>\n<p>Data is inherits same structure as <a href=\"https://docs.homerunner.com/#fc6bca69-969c-4418-8a99-b019c95f4464\">API V3 - Get tracking</a></p>\n<p>This webhook can be activated by Homerunner.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[{"id":"bf8ae2c7-344c-4ab8-bab1-136f8d75968c","name":"WEBHOOKS - Tracking event","originalRequest":{"method":"VIEW","header":[]},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"package_number\": \"370722150441664367\",\n    \"carrier\": \"bring\",\n    \"links\": {\n        \"tracking\": \"https://tracking.coolrunner.dk/?shipment=Z4216754574\",\n        \"carrier\": \"https://tracking.bring.dk/tracking/370722150441664367\"\n    },\n    \"events\": [\n        {\n            \"timestamp\": \"2022-08-09 12:11:57\",\n            \"title\": \"Forsendelsen er udleveret.\",\n            \"event\": \"DELIVERED\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"DELIVERED\",\n            \"code\": \"DELIVERED\",\n            \"subcode\": \"PACKAGE_DELIVERED\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 08:27:44\",\n            \"title\": \"Varsel at forsendelsen er lastet på bil\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 08:26:25\",\n            \"title\": \"Varsel at forsendelsen er lastet på bil\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 08:19:49\",\n            \"title\": \"Forsendelsen er læsset på bil.\",\n            \"event\": \"TRANSPORT_TO_RECIPIENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"TRANSPORT_TO_RECIPIENT\",\n            \"code\": \"TRANSIT\",\n            \"subcode\": \"IN_TRANSIT\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 06:56:32\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 06:27:21\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 03:49:07\",\n            \"title\": \"Forsendelsen er indleveret til terminal.\",\n            \"event\": \"IN_TRANSIT\",\n            \"location\": \"2670 Greve, Denmark\",\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"IN_TRANSIT\",\n            \"code\": \"TRANSIT\",\n            \"subcode\": \"IN_TRANSIT\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-09 03:48:15\",\n            \"title\": \"Forsendelsen er sorteret.\",\n            \"event\": \"IN_TRANSIT\",\n            \"location\": \"2670 OTTA, Norway\",\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"IN_TRANSIT\",\n            \"code\": \"TRANSIT\",\n            \"subcode\": \"IN_TRANSIT\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-08 21:56:09\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-08 21:55:18\",\n            \"title\": \"Varsel at forsendelsen er på vej\",\n            \"event\": \"NOTIFICATION_SENT\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"NOTIFICATION_SENT\",\n            \"code\": \"INFO\",\n            \"subcode\": \"NOTIFICATION\",\n            \"provider\": \"bring\"\n        },\n        {\n            \"timestamp\": \"2022-08-08 21:49:36\",\n            \"title\": \"Vi har fået information om forsendelsen, som nu er hos afsender eller på vej til Brings terminal. Sporingen opdateres når forsendelsen er ankommet til terminalen i modtagerlandet.\",\n            \"event\": \"PRE_NOTIFIED\",\n            \"location\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"carrier_code\": \"PRE_NOTIFIED\",\n            \"code\": \"BOOKED\",\n            \"subcode\": \"LABEL_BOOKED\",\n            \"provider\": \"bring\"\n        }\n    ]\n}"}],"_postman_id":"cba655b6-72ec-47e2-8b1e-b56e132f8edb"}],"id":"dfce801a-9b1f-416c-9171-7a9f5fe0f6fc","_postman_id":"dfce801a-9b1f-416c-9171-7a9f5fe0f6fc","description":""},{"name":"WMS","item":[{"name":"WEBHOOKS - Order status updated","id":"74c6a4f7-5def-4c1a-a052-a3dd918144f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"VIEW","header":[],"description":"<p>This webhook will be sent as soon as an order updates status.</p>\n<p><strong>Type:</strong> order-status-updated</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"1f97edf9-31ff-487d-9a5f-7887e8f63e27","name":"WEBHOOKS - Order status updated","originalRequest":{"method":"VIEW","header":[]},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"order-status-updated\",\n    \"order_id\": \"22222222-bad1-49f4-8599-24840d563413\",\n    \"shop_order_number\": \"123456\",\n    \"reference\": \"123456\",\n    \"wms_order_number\": \"12345678\",\n    \"status\": \"picked\",\n    \"description\": \"Order Picked\",\n    \"event_at\": \"2023-06-21 06:41:56\",\n    \"data\": {}\n}"}],"_postman_id":"74c6a4f7-5def-4c1a-a052-a3dd918144f7"},{"name":"WEBHOOKS - Stock items updated","id":"5918d5a8-7eae-4534-96ed-17f914fa3d31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"VIEW","header":[],"description":"<p>This webhook will be sent as soon as an stock items updates.</p>\n<p><strong>Type:</strong> stock-items-updated</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"aa0d1698-f500-49c5-aead-22c20a2406a0","name":"WEBHOOKS - Stock items updated","originalRequest":{"method":"VIEW","header":[]},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"stock-items-updated\",\n    \"items\": [\n        {\n            \"sku\": \"test-product\",\n            \"ean\": \"88887777755555\",\n            \"qty_total\": 10,\n            \"qty_avaiable\": 5,\n            \"description\": \"This is a test product\" \n        }\n    ]\n}"}],"_postman_id":"5918d5a8-7eae-4534-96ed-17f914fa3d31"}],"id":"2ff38c70-21da-44ba-8bcb-32a3d2ed43d7","_postman_id":"2ff38c70-21da-44ba-8bcb-32a3d2ed43d7","description":""}],"id":"8226ee6f-6135-4703-a121-f994cc441630","_postman_id":"8226ee6f-6135-4703-a121-f994cc441630","description":""}]}