{"info":{"_postman_id":"e983e30f-4484-48aa-9c9f-d602ab7448c3","name":"Nimbuspost API","description":"<html><head></head><body><img width=\"150px\" src=\"http://amit.nimbuspost.com/assets/company_logo/Nimbus_Logo.png\">\n\n<h1 id=\"getting-started\">Getting Started</h1>\n\n<p>First you need to register with Nimbuspost and create an account. Click on this <a href=\"https://ship.nimbuspost.com/users/signup\">link</a> to complete the simple sign up process.</p>\n<p>After the signup process is complete, follow the enlisted steps to create an API user and get started with using our APIs:</p>\n<ol>\n<li>Open your Nimbuspost account and navigate to the left hand panel.</li>\n<li>Click On <strong>Settings =&gt; API</strong>.</li>\n<li>Click on <strong>'Generate API Key'</strong> Button. On successful completion, you should have API Key generated.</li>\n</ol>\n\n<h1 id=\"authentication\">Authentication</h1>\n\n<p>Pass your API key in header with <strong>'NP-API-KEY'</strong> key with each request. </p>\n<p>Example <strong>NP-API-KEY: {api_key}</strong></p>\n<p>Replace {api_key} with your account API key</p><p>\n</p><p><strong>Rate Limit: </strong> 10 requests/second</p>\n\n<h1 id=\"support\">Support</h1>\n<ul>\n<li>All the necessary information on integration is laid out in this document. Please read it thoroughly.</li>\n<li>For any integration and API related support, you can feel free to drop us an email at <strong><em><a href=\"mailto:tech@nimbuspost.com\">tech@nimbuspost.com</a></em></strong>.</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Authentication","slug":"authentication"},{"content":"Support","slug":"support"}],"owner":"9692837","collectionId":"e983e30f-4484-48aa-9c9f-d602ab7448c3","publishedId":"SWE6beC7","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-12-10T10:46:39.000Z"},"item":[{"name":"Orders","item":[{"name":"Get All Orders","event":[{"listen":"prerequest","script":{"id":"f5888666-aa77-4791-8735-df04cf1318a5","exec":[""],"type":"text/javascript"}}],"id":"56be4ac5-b5d3-4fb5-82e0-04990447cfc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/orders","description":"<p>This API will list orders from your Nimbuspost account.</p>\n<p>You can also sort and filter the data according to your needs by passing the optional parameters. Not passing anything will display the data in the default format.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\"><table>\n<thead>\n<tr>\n<th><strong>PARAMS</strong></th>\n<th><strong>REQUIRED</strong></th>\n<th><strong>DATA TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>NO</td>\n<td><em>integer</em></td>\n<td>The page number to display.</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>per_page</code></td>\n<td>NO</td>\n<td><em>integer</em></td>\n<td>The number of entries per page.</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>sort</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>Sort conditions: ASC or DESC</td>\n<td>ASC</td>\n</tr>\n<tr>\n<td><code>sort_by</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>The Field to sort by: id or status</td>\n<td>id</td>\n</tr>\n<tr>\n<td><code>to</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>The end date.</td>\n<td>2018-07-24</td>\n</tr>\n<tr>\n<td><code>from</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>The start date.</td>\n<td>2019-07-24</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","orders"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"56be4ac5-b5d3-4fb5-82e0-04990447cfc7"},{"name":"Get Specific Order Details","event":[{"listen":"prerequest","script":{"id":"f5888666-aa77-4791-8735-df04cf1318a5","exec":[""],"type":"text/javascript"}}],"id":"c8a87162-3088-4fb2-a1fe-8c634361f5b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/orders/{id}","description":"<p>Get the order details of a particular order through this API by passing the Nimbuspost order id in the endpoint URL itself. Type Nimbuspost Order id in place of {id}.</p>\n<p>No other body parameters are required.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>../orders/4433</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","orders","{id}"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8a87162-3088-4fb2-a1fe-8c634361f5b7"},{"name":"Create Custom Order","id":"1318e2f9-0ef6-4571-a71f-da4d22b665bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/orders/create","description":"<p>Use this API to Create custom order in your Nimbuspost account</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\">\n<table>\n    <thead>\n        <tr>\n            <th><strong>PARAMS</strong></th>\n            <th><strong>REQUIRED</strong></th>\n            <th><strong>DATA TYPE</strong></th>\n            <th><strong>DESCRIPTION</strong></th>\n            <th><strong>EXAMPLE</strong></th>\n        </tr>\n    </thead>\n    <tbody>\n        <tr>\n            <td><code>order_number</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>The order number generated from your sales channel</td>\n            <td>4423</td>\n        </tr>\n        <tr>\n            <td><code>payment_method</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Order Payment Type. Allowed Values: prepaid, COD</td>\n            <td>Prepaid</td>\n        </tr>\n        <tr>\n            <td><code>amount</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>Calculated sub total amount in Rupee</td>\n            <td>Prepaid</td>\n        </tr>\n        <tr>\n            <td><code>fname</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>First name of the customer</td>\n            <td>Vikalp</td>\n        </tr>\n        <tr>\n            <td><code>lname</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Last name of the customer</td>\n            <td>Sharma</td>\n        </tr>\n        <tr>\n            <td><code>address</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Address of the customer</td>\n            <td>House No 11, Pocket 12</td>\n        </tr>\n        <tr>\n            <td><code>address_2</code></td>\n            <td>NO</td>\n            <td><em>string</em></td>\n            <td>Address 2 of the customer</td>\n            <td>Near Metro Station</td>\n        </tr>\n        <tr>\n            <td><code>phone</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>10 Digit mobile number of the customer</td>\n            <td>9999999999</td>\n        </tr>\n        <tr>\n            <td><code>city</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>City of the customer</td>\n            <td>New Delhi</td>\n        </tr>\n        <tr>\n            <td><code>state</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>state of the customer</td>\n            <td>Delhi</td>\n        </tr>\n        <tr>\n            <td><code>country</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Country of the customer</td>\n            <td>India</td>\n        </tr>\n        <tr>\n            <td><code>pincode</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>6 Digit are pin code of the customer</td>\n            <td>110022</td>\n        </tr>\n        <tr>\n            <td><code>weight</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Total weight of the package (grams)</td>\n            <td>300</td>\n        </tr>\n        <tr>\n            <td><code>length</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Length of the shipment (in cms)</td>\n            <td>15</td>\n        </tr>\n        <tr>\n            <td><code>height</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Height of the shipment (in cms)</td>\n            <td>15</td>\n        </tr>\n        <tr>\n            <td><code>breadth</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Breadth of the shipment (in cms)</td>\n            <td>15</td>\n        </tr>\n        <tr>\n            <td><code>products[]</code></td>\n            <td>Yes</td>\n            <td><em>array</em></td>\n            <td>name, qty &amp; price</td>\n            <td>array(\n                array(\n                    'name' =&gt; 'product name',\n                    'qty' =&gt; '5',\n                    'price' =&gt; '999\n                )\n            )</td>\n        </tr>\n    </tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","orders","create"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1318e2f9-0ef6-4571-a71f-da4d22b665bd"},{"name":"Create Autoship Order","id":"e345df1e-5b5e-4042-ab9c-26028e22c9af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/orders/autoship_order","description":"<p>Use this API to Create and ship custom order using a single API</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\">\n<table>\n    <thead>\n        <tr>\n            <th><strong>PARAMS</strong></th>\n            <th><strong>REQUIRED</strong></th>\n            <th><strong>DATA TYPE</strong></th>\n            <th><strong>DESCRIPTION</strong></th>\n            <th><strong>EXAMPLE</strong></th>\n        </tr>\n    </thead>\n    <tbody>\n        <tr>\n            <td><code>order_number</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>The order number generated from your sales channel</td>\n            <td>4423</td>\n        </tr>\n        <tr>\n            <td><code>payment_method</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Order Payment Type. Allowed Values: prepaid, COD</td>\n            <td>Prepaid</td>\n        </tr>\n        <tr>\n            <td><code>amount</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>Calculated sub total amount in Rupee</td>\n            <td>Prepaid</td>\n        </tr>\n        <tr>\n            <td><code>fname</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>First name of the customer</td>\n            <td>Vikalp</td>\n        </tr>\n        <tr>\n            <td><code>lname</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Last name of the customer</td>\n            <td>Sharma</td>\n        </tr>\n        <tr>\n            <td><code>address</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Address of the customer</td>\n            <td>House No 11, Pocket 12</td>\n        </tr>\n        <tr>\n            <td><code>address_2</code></td>\n            <td>NO</td>\n            <td><em>string</em></td>\n            <td>Address 2 of the customer</td>\n            <td>Near Metro Station</td>\n        </tr>\n        <tr>\n            <td><code>phone</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>10 Digit mobile number of the customer</td>\n            <td>9999999999</td>\n        </tr>\n        <tr>\n            <td><code>city</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>City of the customer</td>\n            <td>New Delhi</td>\n        </tr>\n        <tr>\n            <td><code>state</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>state of the customer</td>\n            <td>Delhi</td>\n        </tr>\n        <tr>\n            <td><code>country</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Country of the customer</td>\n            <td>India</td>\n        </tr>\n        <tr>\n            <td><code>pincode</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>6 Digit are pin code of the customer</td>\n            <td>110022</td>\n        </tr>\n        <tr>\n            <td><code>weight</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Total weight of the package (grams)</td>\n            <td>300</td>\n        </tr>\n        <tr>\n            <td><code>length</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Length of the shipment (in cms)</td>\n            <td>15</td>\n        </tr>\n        <tr>\n            <td><code>height</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Height of the shipment (in cms)</td>\n            <td>15</td>\n        </tr>\n        <tr>\n            <td><code>breadth</code></td>\n            <td>NO</td>\n            <td><em>integer</em></td>\n            <td>Breadth of the shipment (in cms)</td>\n            <td>15</td>\n        </tr>\n        <tr>\n<td><code>warehouse_id</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The ID of the warehouse for the pickup.</td>\n<td>3</td>\n</tr>\n        <tr>\n            <td><code>products[]</code></td>\n            <td>Yes</td>\n            <td><em>array</em></td>\n            <td>name, qty &amp; price</td>\n            <td>array(\n                array(\n                    'name' =&gt; 'product name',\n                    'qty' =&gt; '5',\n                    'price' =&gt; '999\n                )\n            )</td>\n        </tr>\n    </tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","orders","autoship_order"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e345df1e-5b5e-4042-ab9c-26028e22c9af"},{"name":"Cancel Order","id":"fb04f1d2-feef-43fd-b5ee-a559d0290bc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/orders/cancel","description":"<p>Use this API to cancel a created order.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PARAMS</strong></th>\n<th><strong>REQUIRED</strong></th>\n<th><strong>DATA TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The order id of the order that need to be cancelled.</td>\n<td>4423</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","orders","cancel"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb04f1d2-feef-43fd-b5ee-a559d0290bc5"},{"name":"Ship an Order","id":"deabf7ad-03bc-4e09-a773-482d569fe153","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/orders/ship","description":"<p>Use this API to Generate AWB for any order with courier of your choice.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PARAMS</strong></th>\n<th><strong>REQUIRED</strong></th>\n<th><strong>DATA TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The ID of the order that need to be ship.</td>\n<td>4423</td>\n</tr>\n<tr>\n<td><code>courier_id</code></td>\n<td>YES</td>\n<td><em>integer/autoship</em></td>\n<td>The ID of the courier with which you want to ship this order. Use \"autoship\" as value to assing courier automatically based on rules setup in your Nimbuspost account</td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>warehouse_id</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The ID of the warehouse for the pickup.</td>\n<td>3</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","orders","ship"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"deabf7ad-03bc-4e09-a773-482d569fe153"}],"id":"f61ff5c5-6bad-4c12-b467-7e0f4b801310","description":"<p>These API's can be used to get details about your created orders, cancel any order and ship an order</p>\n","event":[{"listen":"prerequest","script":{"id":"6b8fcf5c-fc42-48c4-b6ce-acf0df600a38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d4a7cb34-34fd-4909-b12c-accb9795e576","type":"text/javascript","exec":[""]}}],"_postman_id":"f61ff5c5-6bad-4c12-b467-7e0f4b801310"},{"name":"Shipments","item":[{"name":"Create New Shipment","id":"af41c1b6-8c02-432d-9586-08eb28fa26db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{{api_key}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"consignee\": {\n        \"name\" : \"Vikalp Sharma\",\n        \"address\": \"140, MG Road\",\n        \"address_2\" : \"Near metro station\",\n        \"city\": \"Gurgaon\",\n        \"state\": \"Haryana\",\n        \"pincode\" : \"122001\",\n        \"phone\" : \"9999999999\"\n    },\n    \"order\": {\n        \"order_number\": \"#001\",\n        \"shipping_charges\" : 40,\n        \"discount\" : 100,\n        \"cod_charges\" : 30,\n        \"payment_type\": \"cod\",\n        \"total\" : 1000,\n        \"package_weight\": 300,\n        \"package_length\" : 10,\n        \"package_height\" : 10,\n        \"package_breadth\" : 10\n    },\n    \"order_items\": [{\n        \"name\" : \"product 1\",\n        \"qty\" : \"1\",\n        \"price\" : \"100\",\n        \"sku\":\"sku001\"\n    }],\n    \"pickup_warehouse_id\": \"3\",\n    \"rto_warehouse_id\": \"3\"\n    \n}"},"url":"https://ship.nimbuspost.com/api/shipments/create","description":"<p>Use this API to do multiple tasks in one go, namely creating a enw order, request AWB for its shipment.</p>\n<p>Make sure to create order allocation rules before using this API. Allcoation rules can be set inside Nimbuspost dashboard by visiting Addons-&gt;Order allocation engine.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\">\n<table>\n    <thead>\n        <tr>\n            <th><strong>PARAMS</strong></th>\n            <th><strong>REQUIRED</strong></th>\n            <th><strong>DATA TYPE</strong></th>\n            <th><strong>DESCRIPTION</strong></th>\n            <th><strong>EXAMPLE</strong></th>\n        </tr>\n    </thead>\n    <tbody>\n            <tr>\n            <td><code>consignee[name]</code></td>\n            <td>Yes</td>\n            <td><em>string</em></td>\n            <td>Customer Name</td>\n            <td>Vikalp Sharma</td>\n        </tr>\n            <tr>\n            <td><code>consignee[company_name]</code></td>\n            <td>NO</td>\n            <td><em>string</em></td>\n            <td>Customer Company Name (optional)</td>\n            <td>ABC PVT LTD.</td>\n        </tr>\n            <tr>\n            <td><code>consignee[address]</code></td>\n            <td>Yes</td>\n            <td><em>string</em></td>\n            <td>Customer Delivery Address</td>\n            <td>140, ABC road</td>\n        </tr>\n            <tr>\n            <td><code>consignee[address_2]</code></td>\n            <td>No</td>\n            <td><em>string</em></td>\n            <td>Customer nearby address</td>\n            <td>Near metro station</td>\n        </tr>\n            <tr>\n            <td><code>consignee[city]</code></td>\n            <td>Yes</td>\n            <td><em>string</em></td>\n            <td>Customer city</td>\n            <td>Gurgaon</td>\n        </tr>\n            <tr>\n            <td><code>consignee[state]</code></td>\n            <td>Yes</td>\n            <td><em>string</em></td>\n            <td>Customer state</td>\n            <td>Haryana</td>\n        </tr>\n            <tr>\n            <td><code>consignee[pincode]</code></td>\n            <td>Yes</td>\n            <td><em>numbers</em></td>\n            <td>6 digit customer pincode</td>\n            <td>122001</td>\n        </tr>\n            <tr>\n            <td><code>consignee[phone]</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>10 Digit mobile number of the customer</td>\n            <td>9999999999</td>\n        </tr><tr>\n            <td><code>order[order_number]</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>The order number generated from your sales channel</td>\n            <td>4423</td>\n        </tr>\n        <tr>\n            <td><code>order[payment_type]</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Order Payment Type. Allowed Values: prepaid, cod, reverse</td>\n            <td>Prepaid</td>\n        </tr>\n                <tr>\n            <td><code>order[total]</code></td>\n            <td>YES</td>\n            <td><em>Float</em></td>\n            <td>Calculated total amount in Rupee</td>\n            <td>200</td>\n        </tr>\n                        <tr>\n            <td><code>order[shipping_charges]</code></td>\n            <td>No</td>\n            <td><em>float</em></td>\n            <td>Shipping charges for your order (If any)</td>\n            <td>200</td>\n        </tr>\n                                <tr>\n            <td><code>order[cod_charges]</code></td>\n            <td>No</td>\n            <td><em>float</em></td>\n            <td>COD charges for your order (If any)</td>\n            <td>50</td>\n        </tr>\n                                <tr>\n            <td><code>order[discount]</code></td>\n            <td>No</td>\n            <td><em>float</em></td>\n            <td>Discount applied to order (If any)</td>\n            <td>60</td>\n        </tr>\n                                <tr>\n            <td><code>order[package_weight]</code></td>\n            <td>No</td>\n            <td><em>integer</em></td>\n            <td>Package weight (in grams)</td>\n            <td>500</td>\n        </tr>\n                     <tr>\n            <td><code>order[package_length]</code></td>\n            <td>No</td>\n            <td><em>integer</em></td>\n            <td>Package lenght (in cms)</td>\n            <td>10</td>\n        </tr>\n           <tr>\n            <td><code>order[package_breadth]</code></td>\n            <td>No</td>\n            <td><em>integer</em></td>\n            <td>Package breadth (in cms)</td>\n            <td>10</td>\n        </tr>\n           <tr>\n            <td><code>order[package_height]</code></td>\n            <td>No</td>\n            <td><em>integer</em></td>\n            <td>Package height (in cms)</td>\n            <td>10</td>\n        </tr>\n        <tr>\n<td><code>pickup_warehouse_id</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The ID of the warehouse for the pickup.</td>\n<td>3</td>\n</tr>\n        <tr>\n<td><code>rto_warehouse_id</code></td>\n<td>No</td>\n<td><em>integer</em></td>\n<td>The ID of the warehouse for RTO. </td>\n<td>3</td>\n</tr>\n  <tr>\n<td><code>courier_id</code></td>\n<td>No</td>\n<td><em>integer</em></td>\n<td>Courier ID. Is mentioned, then AWB will be booked from specific courier company. </td>\n<td>3</td>\n</tr>\n        <tr>\n            <td><code>order_items[]</code></td>\n            <td>Yes</td>\n            <td><em>array</em></td>\n            <td>required: name, qty &amp; price</td>\n            <td>array(\n                array(\n                    'name' =&gt; 'product name',\n                    'qty' =&gt; '5',\n                    'price' =&gt; 999,\n                                        'sku' =&gt; 'SKU001'\n                )\n            )</td>\n        </tr>\n    </tbody>\n</table>\n</div>\n\n<p>Be sure to input the correct calculated total amount. This is not calculated automatically through the API.</p>\n<p>Courier ID is optional while making request using this API. If courier ID is passed then system will try to generate AWB using that courier ID. If AWB generation fail because of any reason then order allocaiton engine will choose courier partner as per matchin rule.</p>\n","urlObject":{"protocol":"https","path":["api","shipments","create"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[{"id":"6e513dc7-8443-43d6-bbdf-9a0cdf06ec8d","name":"Create New Shipment","originalRequest":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{{api_key}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"consignee\": {\n        \"name\" : \"Vikalp Sharma\",\n        \"address\": \"140, MG Road\",\n        \"address_2\" : \"Near metro station\",\n        \"city\": \"Gurgaon\",\n        \"state\": \"Haryana\",\n        \"pincode\" : \"122001\",\n        \"phone\" : \"9999999999\"\n    },\n    \"order\": {\n        \"order_number\": \"#001\",\n        \"shipping_charges\" : 40,\n        \"discount\" : 100,\n        \"cod_charges\" : 30,\n        \"payment_type\": \"cod\",\n        \"total\" : 1000,\n        \"package_weight\": 300,\n        \"package_length\" : 10,\n        \"package_height\" : 10,\n        \"package_breadth\" : 10\n    },\n    \"order_items\": [{\n        \"name\" : \"product 1\",\n        \"qty\" : \"1\",\n        \"price\" : \"100\",\n        \"sku\":\"sku001\"\n    }],\n    \"pickup_warehouse_id\": \"3\",\n    \"rto_warehouse_id\": \"3\"\n    \n}"},"url":"https://ship.nimbuspost.com/api/shipments/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Dec 2020 09:36:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"07549ac07b0000174cb09e7000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=YU4BHhj84WNi9g0ngt385HRQ6PwJEXYU1KClmJVwMcJbJaCa4qtUBDntPfWJFsFXZLKSl0KcpZb0iQl8zS6h23AiP7MZinEAVyUO1vfOnBj1DnV9\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"609ac713fe39174c-SIN"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"data\": {\n        \"order_id\": 3099321,\n        \"shipment_id\": 1790593,\n        \"awb_number\": \"59616858350\",\n        \"courier_id\": \"5\",\n        \"courier_name\": \"Bluedart\",\n        \"status\": \"booked\",\n        \"additional_info\": \"GGN / GED\",\n        \"payment_type\": \"cod\"\n    }\n}"}],"_postman_id":"af41c1b6-8c02-432d-9586-08eb28fa26db"},{"name":"Get All Shipments","event":[{"listen":"prerequest","script":{"id":"f5888666-aa77-4791-8735-df04cf1318a5","exec":[""],"type":"text/javascript"}}],"id":"375acfea-0222-459b-aa64-f74786a4d0f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/shipments","description":"<p>This API will list shipments from your Nimbuspost account.</p>\n<p>You can also sort and filter the data according to your needs by passing the optional parameters. Not passing anything will display the data in the default format.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\"><table>\n<thead>\n<tr>\n<th><strong>PARAMS</strong></th>\n<th><strong>REQUIRED</strong></th>\n<th><strong>DATA TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>NO</td>\n<td><em>integer</em></td>\n<td>The page number to display.</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>per_page</code></td>\n<td>NO</td>\n<td><em>integer</em></td>\n<td>The number of entries per page.</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>sort</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>Sort conditions: ASC or DESC</td>\n<td>ASC</td>\n</tr>\n<tr>\n<td><code>sort_by</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>The Field to sort by: id or status</td>\n<td>id</td>\n</tr>\n<tr>\n<td><code>to</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>The end date.</td>\n<td>2018-07-24</td>\n</tr>\n<tr>\n<td><code>from</code></td>\n<td>NO</td>\n<td><em>string</em></td>\n<td>The start date.</td>\n<td>2019-07-24</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"375acfea-0222-459b-aa64-f74786a4d0f3"},{"name":"Get Specific Shipment Details","event":[{"listen":"prerequest","script":{"id":"f5888666-aa77-4791-8735-df04cf1318a5","exec":[""],"type":"text/javascript"}}],"id":"6d5f1b31-bfde-449e-a11e-9d387a6025be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/shipments/{id}","description":"<p>Get the shipment details of a particular shipment through this API by passing the Nimbuspost shipment id in the endpoint URL itself. Type Nimbuspost shipment id in place of {id}.</p>\n<p>No other body parameters are required.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>../shipments/4313</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments","{id}"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d5f1b31-bfde-449e-a11e-9d387a6025be"},{"name":"Pickup Request","id":"8923e517-b823-4def-b132-490d753406a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","value":"{api_key}","type":"text"}],"url":"https://ship.nimbuspost.com/api/shipments/pickups","description":"<p>Raise a pickup request when shipments are ready for pickup.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>ids[]</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>array(222,333,656)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments","pickups"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8923e517-b823-4def-b132-490d753406a0"},{"name":"Generate Shipping Label","id":"9c80c9dc-41f4-4bee-be8b-a759afd88cd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/shipments/label","description":"<p>Use this API to generate PDF shipping label for your shipments</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PARAMS</strong></th>\n<th><strong>REQUIRED</strong></th>\n<th><strong>DATA TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ids</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The ID of the shipment for lable generate (comma separated).</td>\n<td>4423,4424</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments","label"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c80c9dc-41f4-4bee-be8b-a759afd88cd5"},{"name":"Shipment Tracking History","event":[{"listen":"prerequest","script":{"id":"749804d4-fe10-4f99-8e96-5c85d9818e4a","exec":[""],"type":"text/javascript"}}],"id":"d80b0afb-53ac-4c0f-bb3e-0c340b0aa049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/shipments/track/{id}","description":"<p>Get the tracking history a particular shipment through this API by passing the Nimbuspost shipment id in the endpoint URL itself. Type Nimbuspost shipment id in place of {id}.</p>\n<p>No other body parameters are required.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>../shipments/track/4313</td>\n</tr>\n</tbody>\n</table>\n</div>\n\n<h4 id=\"parameters\">Response Status Codes:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Status</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PP</td>\n<td>Pending Pickup</td>\n</tr>\n<tr>\n<td>IT</td>\n<td>In Transit</td>\n</tr>\n<tr>\n<td>EX</td>\n<td>Exception</td>\n</tr>\n<tr>\n<td>OFD</td>\n<td>Out For Delivery</td>\n</tr>\n<tr>\n<td>DL</td>\n<td>Delivered</td>\n</tr>\n<tr>\n<td>RT</td>\n<td>RTO</td>\n</tr>\n<tr>\n<td>RT-IT</td>\n<td>RTO In Transit</td>\n</tr>\n<tr>\n<td>RT-DL</td>\n<td>RTO Delivered</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments","track","{id}"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d80b0afb-53ac-4c0f-bb3e-0c340b0aa049"},{"name":"Shipment Tracking History using AWB","event":[{"listen":"prerequest","script":{"id":"2d38cf21-f7e1-483f-8eb6-733c79b68efb","exec":[""],"type":"text/javascript"}}],"id":"a15c6eb6-e16d-478a-b774-4b87e66f95ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/shipments/track_awb/{awb}","description":"<p>Get the tracking history a particular shipment through this API by passing the Nimbuspost AWB Number in the endpoint URL itself. Type Nimbuspost shipment AWB Number in place of {awb}.</p>\n<p>No other body parameters are required.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>../shipments/track_awb/N123456789</td>\n</tr>\n</tbody>\n</table>\n</div>\n\n<h4 id=\"parameters\">Response Status Codes:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper is-expandable\">\n<table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Status</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PP</td>\n<td>Pending Pickup</td>\n</tr>\n<tr>\n<td>IT</td>\n<td>In Transit</td>\n</tr>\n<tr>\n<td>EX</td>\n<td>Exception</td>\n</tr>\n<tr>\n<td>OFD</td>\n<td>Out For Delivery</td>\n</tr>\n<tr>\n<td>DL</td>\n<td>Delivered</td>\n</tr>\n<tr>\n<td>RT</td>\n<td>RTO</td>\n</tr>\n<tr>\n<td>RT-IT</td>\n<td>RTO In Transit</td>\n</tr>\n<tr>\n<td>RT-DL</td>\n<td>RTO Delivered</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments","track_awb","{awb}"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a15c6eb6-e16d-478a-b774-4b87e66f95ef"},{"name":"Cancel Shipment","id":"107d503a-4c6f-4a16-ac12-b356407b7d26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nibuspost.com/api/shipments/cancel","description":"<p>Use this API to cancel a created Shipment.</p>\n<p>Shipments which are in transit can't be cancelled.</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PARAMS</strong></th>\n<th><strong>REQUIRED</strong></th>\n<th><strong>DATA TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n<th><strong>EXAMPLE</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>YES</td>\n<td><em>integer</em></td>\n<td>The ID of the shipment that need to be cancelled.</td>\n<td>4423</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","shipments","cancel"],"host":["ship","nibuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"107d503a-4c6f-4a16-ac12-b356407b7d26"}],"id":"060a2e4c-2059-4140-9f15-0769d4768b74","description":"<p>These API's can be used to get shipment details. You can either get all shipment details at once or the details of a particular shipment.</p>\n","_postman_id":"060a2e4c-2059-4140-9f15-0769d4768b74"},{"name":"Couriers","item":[{"name":"List All Couriers","event":[{"listen":"prerequest","script":{"id":"f5888666-aa77-4791-8735-df04cf1318a5","exec":[""],"type":"text/javascript"}}],"id":"5f4cd28f-841f-4a89-a5a7-d3af962f6e1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/couriers","description":"<p>This API will list all couriers from your Nimbuspost account.</p>\n<p>No other body parameters are required.</p>\n","urlObject":{"protocol":"https","path":["api","couriers"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f4cd28f-841f-4a89-a5a7-d3af962f6e1c"}],"id":"581b65cb-4006-4991-8a17-24d300832f44","description":"<p>These API's can be used to list all the available couriers.</p>\n","_postman_id":"581b65cb-4006-4991-8a17-24d300832f44"},{"name":"Warehouse","item":[{"name":"List All Warehouses","event":[{"listen":"prerequest","script":{"id":"8657c580-b38b-476a-bc4a-33293ff981c1","exec":[""],"type":"text/javascript"}}],"id":"42d8f354-c80a-47d9-9e51-49ac513818c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/warehouse","description":"<p>This API will list all warehouses from your Nimbuspost account.</p>\n<p>No other body parameters are required.</p>\n","urlObject":{"protocol":"https","path":["api","warehouse"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"42d8f354-c80a-47d9-9e51-49ac513818c5"},{"name":"Create Warehouse","id":"dc3ae3c6-6050-48e0-ae05-df7afcb281aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"NP-API-KEY","type":"text","value":"{api_key}"}],"url":"https://ship.nimbuspost.com/api/warehouse/create","description":"<p>Use this API to Create warehouse in your Nimbuspost account</p>\n<h4 id=\"parameters\">Parameters:</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\">\n<table>\n    <thead>\n        <tr>\n            <th><strong>PARAMS</strong></th>\n            <th><strong>REQUIRED</strong></th>\n            <th><strong>DATA TYPE</strong></th>\n            <th><strong>DESCRIPTION</strong></th>\n            <th><strong>EXAMPLE</strong></th>\n        </tr>\n    </thead>\n    <tbody>\n        <tr>\n            <td><code>name</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Warehouse Name</td>\n            <td>My Warehouse</td>\n        </tr>\n        <tr>\n            <td><code>contact_name</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Contact Person Name</td>\n            <td>Ram</td>\n        </tr>\n        <tr>\n            <td><code>phone</code></td>\n            <td>YES</td>\n            <td><em>integer 10 digit</em></td>\n            <td>Contact Phone Number</td>\n            <td>9999999999</td>\n        </tr>\n        <tr>\n            <td><code>address_1</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>Warehouse Address</td>\n            <td>Flat 1, Street 4</td>\n        </tr>\n        <tr>\n            <td><code>address_2</code></td>\n            <td>NO</td>\n            <td><em>string</em></td>\n            <td>Address 2</td>\n            <td>Near Main Road</td>\n        </tr>\n        <tr>\n            <td><code>city</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>City of the warehouse</td>\n            <td>New Delhi</td>\n        </tr>\n        <tr>\n            <td><code>state</code></td>\n            <td>YES</td>\n            <td><em>string</em></td>\n            <td>state of the warehouse</td>\n            <td>Delhi</td>\n        </tr>\n        <tr>\n            <td><code>zip</code></td>\n            <td>YES</td>\n            <td><em>integer</em></td>\n            <td>6 Digit are pin code of the warehouse</td>\n            <td>110022</td>\n        </tr>\n        <tr>\n            <td><code>gst_number</code></td>\n            <td>NO</td>\n            <td><em>string</em></td>\n            <td>15 Digit GST Number if available</td>\n            <td>XZQSEDRFDFRDGTF</td>\n        </tr>\n    </tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","warehouse","create"],"host":["ship","nimbuspost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc3ae3c6-6050-48e0-ae05-df7afcb281aa"}],"id":"bb709838-692b-4d9f-846d-21714f456d92","description":"<p>These API's can be used to list all the pickup locations added to your account.</p>\n","event":[{"listen":"prerequest","script":{"id":"6d1f3371-0422-4ef7-aebe-2f59cda16377","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25c176ba-7dbf-4043-bd00-8e32e256c945","type":"text/javascript","exec":[""]}}],"_postman_id":"bb709838-692b-4d9f-846d-21714f456d92"}],"event":[{"listen":"prerequest","script":{"id":"f24cdb45-9bc0-4fd4-9f7a-cde9654c1072","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"897f1518-0e8a-4d8d-8970-765e3772fe59","type":"text/javascript","exec":[""]}}]}