{"info":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","description":"<html><head></head><body><p>UnifyWMS API is available on the following URLs:</p>\n<p>Production: https:://{tenant_domain}.unifywms.com/api/v1</p>\n<p>Staging: https:://{tenant_domain}.unifywms-staging.com/api/v1</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>To authenticate on the API, you need an API token. You can create one in the UnifyWMS portal. API tokens are associated with the UnifyWMS account.</p>\n<p>We strongly advise you to create a separate API token for each application that integrates with the UnifyWMS API. API tokens can be revoked at any time.</p>\n<p>Every request to the API needs to have the <code>Authorization</code> header set like so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Authorization: Bearer YOUR_ACCESS_TOKEN\n\n</code></pre>\n<p>When no, or an incorrect <code>Authorization</code> header is set, a 401 Unauthorized is returned.</p>\n<h2 id=\"versioning\">Versioning</h2>\n<p>The API currently supports one version, which needs to be explicitly set in url: /api/v1</p>\n<h2 id=\"api-status\">API Status</h2>\n<p>The API Status page provides real-time information about the operational status of the API and its components.</p>\n<p><a href=\"https://status.unifywms.com\">https://status.unifywms.com</a></p>\n<h2 id=\"rate-limit\">Rate Limit</h2>\n<p>The API uses a rate limit, it allows you to make up to 60 requests per minute.</p>\n<p>You can check the returned HTTP headers of any API request to see your current rate limit status.</p>\n<p><strong>When still within the rate limit:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-RateLimit-Limit: 60\nX-RateLimit-Remaining: 58\n\n</code></pre><p>Where <code>Limit</code> indicates how many requests per minute are allowed, and <code>Remaining</code> how many requests are left for this minute.</p>\n<p><strong>When over the rate limit:</strong></p>\n<p>A 429 Too Many Requests response will be returned when the rate limit is reached, with the following headers set:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-RateLimit-Limit: 60\nX-RateLimit-Remaining: 0\n\n</code></pre><h2 id=\"filtering\">Filtering</h2>\n<p>You can filter a resource by setting the <code>filter</code> params in the uri, like so:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>type</th>\n<th>uri formatting</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>single field / value</td>\n<td><code>/resource1?filter[field1]=value1</code></td>\n</tr>\n<tr>\n<td>multiple values</td>\n<td><code>/resource1?filter[field1]=value1,value2</code></td>\n</tr>\n<tr>\n<td>multiple fields</td>\n<td><code>/resource1?filter[field1]=value1&amp;filter[field2]=value2</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The available filters are specified per resource in the resource definition and will be either <code>exact</code> or <code>partial</code> filters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>filter type</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exact</td>\n<td>only resources exactly matching the value for the field will be returned</td>\n</tr>\n<tr>\n<td>partial</td>\n<td>resources for which the passed value exists within the field will be returned</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"sorting\">Sorting</h2>\n<p>You can sort a resource by setting the <code>sort</code> param in the uri, like so:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>type</th>\n<th>uri formatting</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>single field ascending</td>\n<td><code>/resource1?sort=field1</code></td>\n</tr>\n<tr>\n<td>single field descending</td>\n<td><code>/resource1?sort=-field1</code></td>\n</tr>\n<tr>\n<td>multiple fields</td>\n<td><code>/resource1?sort=field1,-field2</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The available sorts are specified per resource in the resource definition.</p>\n<h2 id=\"including-resources\">Including Resources</h2>\n<p>When fetching a single or list of resources, the response will usually not include related resources by default.</p>\n<p>You can include a resource by setting the <code>include</code> param in the uri, like so:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>type</th>\n<th>uri formatting</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>single</td>\n<td><code>/resource1?include=resource2</code></td>\n</tr>\n<tr>\n<td>multiple</td>\n<td><code>/resource1?include=resource2,resource3</code></td>\n</tr>\n<tr>\n<td>nested</td>\n<td><code>/resource1?include=resource2.nested_resource1</code></td>\n</tr>\n<tr>\n<td>combined</td>\n<td><code>/resource1?include=resource2.nested_resource1,resource3</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The available includes are specified per resource in the resource definition.</p>\n<h2 id=\"cursor-pagination\">Cursor Pagination</h2>\n<p>Listing a resource will return a paginated response where the number of items returned is limited to a maximum of 100. Default is 30.</p>\n<p>You can specify the page number and size like so: <code>/resource?page[size]=100&amp;page[cursor]=eyJp</code></p>\n<p>Information about pagination is provided in the <code>links</code> and <code>meta</code> objects of a response. E.g.:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": [\n    {\n      \"...\": \"...\"\n    }\n  ],\n  \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": \"https://tenant1.unifywms.com/api/v1/accounts?page[cursor]=eyJpZCI6NjIsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0\"\n    },\n    \"meta\": {\n        \"path\": \"https://tenant1.unifywms.com/api/v1/accounts\",\n        \"per_page\": 30,\n        \"next_cursor\": \"eyJpZCI6NjIsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0\",\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n  }\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"30621634","collectionId":"e829be61-0a3c-4807-8706-5cd79cb9cafe","publishedId":"2sA35Bc4Px","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-03-24T17:05:09.000Z"},"item":[{"name":"Authentication","item":[{"name":"token","id":"3515312b-5c38-4aa3-ba6e-feba59370e27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"},{"key":"Accept-Language","value":"en-GB","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"username\":\"\",\r\n    \"password\":\"\",\r\n    \"device_name\":\"web\"\r\n}"},"url":"https://{tenant}.unifywms.com/api/v1/token?username=&password=","description":"<p>Request an API Token</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"71762da2-f191-4ca6-8d37-1bec112f94fc","id":"71762da2-f191-4ca6-8d37-1bec112f94fc","name":"Authentication","type":"folder"}},"urlObject":{"path":["token"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[{"key":"username","value":""},{"key":"password","value":""}],"variable":[]}},"response":[{"id":"addad946-fa21-42f0-a124-5a807382b6c2","name":"token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"},{"key":"Accept-Language","value":"en-GB","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"username\":\"\",\r\n    \"password\":\"\",\r\n    \"device_name\":\"web\"\r\n}"},"url":{"raw":"https://{tenant}.unifywms.com/api/v1/token?username=&password=","host":["https://{tenant}.unifywms.com/api/v1"],"path":["token"],"query":[{"key":"username","value":""},{"key":"password","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Authenticated\",\n    \"data\": {\n        \"token\": \"8ieymWtwIVDKECEtDcIgIJ35zOeYktvAtgB10vlbef5f4483\",\n        \"email\": \"dev@example.com\",\n        \"user_id\": 38,\n        \"expires_at\": \"2025-03-31T10:14:40+00:00\"\n    }\n}"}],"_postman_id":"3515312b-5c38-4aa3-ba6e-feba59370e27"}],"id":"71762da2-f191-4ca6-8d37-1bec112f94fc","description":"<p>Authentication endpoints.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e3be8dfa-e43b-4719-b057-b7d7f6baee5d","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"7d6db8ef-ee41-405b-893e-ac6134c4947c","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"71762da2-f191-4ca6-8d37-1bec112f94fc"},{"name":"Rest","item":[{"name":"User","item":[{"name":"/me","id":"1f4246a1-d47e-45c7-9f37-78003f968795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/me","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["me"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"246e486d-74fe-48bb-96cf-12a5aafddd06","name":"/me","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://fidelity.unifywms-staging.com/api/v1/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 38,\n        \"username\": \"dau\",\n        \"name\": \"Demo User\",\n        \"email\": \"dev@example.com\",\n        \"profile_photo_path\": \"\",\n        \"email_verified_at\": \"2024-03-24T00:00:00+00:00\",\n        \"status\": 1,\n        \"status_description\": {\n            \"id\": 1,\n            \"color\": \"positive\",\n            \"name\": \"Active\"\n        },\n        \"type\": 2,\n        \"type_description\": {\n            \"id\": 2,\n            \"color\": \"warning\",\n            \"name\": \"Account\"\n        },\n        \"locale\": \"en-GB\",\n        \"phone_number\": null,\n        \"timezone\": \"Europe/London\",\n        \"two_factor_enabled\": false,\n        \"two_factor_confirmed_at\": null,\n        \"password_changed_at\": null,\n        \"user_roles\": [\n            {\n                \"id\": 65,\n                \"account_id\": 100,\n                \"warehouse_id\": 1,\n                \"role_id\": 9\n            }\n        ],\n        \"permissions\": [\n            {\n                \"id\": 12,\n                \"name\": \"create-order\",\n                \"description\": \"...\",\n                \"icon\": \"article\"\n            },\n            {\n                \"id\": 13,\n                \"name\": \"view-order\",\n                \"description\": \"...\",\n                \"icon\": \"article\"\n            },\n            {\n                \"id\": 37,\n                \"name\": \"view-warehouse\",\n                \"description\": \"...\",\n                \"icon\": \"warehouse\"\n            },\n            {\n                \"id\": 48,\n                \"name\": \"create-product\",\n                \"description\": \"...\",\n                \"icon\": \"inventory_2\"\n            },\n            {\n                \"id\": 49,\n                \"name\": \"view-product\",\n                \"description\": \"...\",\n                \"icon\": \"inventory_2\"\n            },\n            {\n                \"id\": 81,\n                \"name\": \"view-account\",\n                \"description\": \"...\",\n                \"icon\": \"business\"\n            },\n            {\n                \"id\": 174,\n                \"name\": \"create-webhook\",\n                \"description\": \"...\",\n                \"icon\": \"webhook\"\n            },\n            {\n                \"id\": 175,\n                \"name\": \"view-webhook\",\n                \"description\": \"...\",\n                \"icon\": \"webhook\"\n            },\n            {\n                \"id\": 176,\n                \"name\": \"update-webhook\",\n                \"description\": \"...\",\n                \"icon\": \"webhook\"\n            },\n            {\n                \"id\": 177,\n                \"name\": \"delete-webhook\",\n                \"description\": \"...\",\n                \"icon\": \"webhook\"\n            }\n        ],\n        \"warehouses\": [\n            {\n                \"id\": 1,\n                \"name\": \"Default Warehouse\",\n                \"code\": \"DW\"\n            }\n        ],\n        \"customer_groups\": [\n            {\n                \"id\": 1,\n                \"name\": \"Default\",\n                \"warehouse_id\": null\n            }\n        ],\n        \"accounts\": [\n            {\n                \"id\": 100,\n                \"name\": \"Demo Account\",\n                \"master_account_id\": null,\n                \"currency_id\": 1\n            }\n        ],\n        \"created_at\": \"2024-03-24T13:17:16+00:00\",\n        \"updated_at\": \"2024-03-24T13:37:51+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"1f4246a1-d47e-45c7-9f37-78003f968795"}],"id":"f3693407-9c68-4760-bb2e-d771ed897912","_postman_id":"f3693407-9c68-4760-bb2e-d771ed897912","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Accounts","item":[{"name":"/accounts","id":"601d954b-2f72-481a-a377-297df29d269c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/accounts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["accounts"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"dc87685b-5a90-4de5-9b1f-c22fa02c5e5e","name":"/accounts","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 100,\n            \"name\": \"Demo Account\",\n            \"master_account_id\": null,\n            \"currency_id\": 1,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"ni_eori_number\": null,\n            \"ioss_number\": null,\n            \"ppi_licence_number\": null,\n            \"brand_name\": null,\n            \"account_code\": \"DA\",\n            \"short_name\": null,\n            \"notes\": \"\",\n            \"incoterms\": null,\n            \"created_at\": \"2024-03-24T13:10:38+00:00\",\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/accounts\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"601d954b-2f72-481a-a377-297df29d269c"},{"name":"/accounts/:id","id":"d9ac5acd-6ea5-49e5-ae5c-9c9fe4a2f4b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/accounts/100","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["accounts","100"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e50baa6e-a314-41d4-be8a-004517b966dd","name":"/accounts/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/accounts/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 100,\n        \"name\": \"Demo Account\",\n        \"master_account\": null,\n        \"master_account_id\": null,\n        \"address\": {\n            \"id\": 118,\n            \"model_type\": \"account\",\n            \"model_id\": 100,\n            \"address_type\": 2,\n            \"address_type_name\": \"Billing\",\n            \"company_name\": null,\n            \"title\": null,\n            \"name\": null,\n            \"phone\": null,\n            \"email\": null,\n            \"line_1\": null,\n            \"line_2\": null,\n            \"city\": null,\n            \"post_code\": null,\n            \"county\": null,\n            \"country\": \"United Kingdom\",\n            \"is_default\": true,\n            \"is_billing\": false,\n            \"condensed_address\": \"United Kingdom\\n\",\n            \"user_id\": 4,\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\",\n            \"created_at\": \"2024-03-24T13:10:38+00:00\"\n        },\n        \"currency_id\": 1,\n        \"currency\": {\n            \"id\": 1,\n            \"name\": \"British Pounds\",\n            \"symbol\": \"£\",\n            \"iso_code\": \"GBP\",\n            \"exchange_rate\": \"1.00000\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\",\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        \"vat_number\": null,\n        \"eori_number\": null,\n        \"ni_eori_number\": null,\n        \"ioss_number\": null,\n        \"ppi_licence_number\": null,\n        \"brand_name\": null,\n        \"account_code\": \"DA\",\n        \"short_name\": null,\n        \"notes\": \"\",\n        \"incoterms\": null,\n        \"created_at\": \"2024-03-24T13:10:38+00:00\",\n        \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"d9ac5acd-6ea5-49e5-ae5c-9c9fe4a2f4b1"}],"id":"afb01312-0dbc-425a-83c9-b74aceb009c0","description":"<p>Retrieve the accounts.</p>\n","_postman_id":"afb01312-0dbc-425a-83c9-b74aceb009c0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Products","item":[{"name":"/products","id":"d9719292-4ca5-45f3-bcaf-3c82fbd19a3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/products","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["products"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d278c79d-4815-4402-bf82-670abd722efa","name":"/products","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 8717,\n            \"account_id\": 100,\n            \"sku\": \"SKU-1X\",\n            \"name\": \"Eample SKU\",\n            \"description\": null,\n            \"image_url\": \"\",\n            \"customs_description\": null,\n            \"commodity_code\": null,\n            \"country_of_origin\": null,\n            \"status_id\": 1,\n            \"status\": {\n                \"label\": \"products.statuses.active\",\n                \"hint\": null,\n                \"value\": 1,\n                \"color\": \"positive\",\n                \"icon\": null\n            },\n            \"type_id\": 1,\n            \"type\": {\n                \"label\": \"products.types.stock\",\n                \"hint\": \"products.types.stock_hint\",\n                \"value\": 1,\n                \"color\": \"primary\",\n                \"icon\": \"qr_code_scanner\",\n                \"disable\": false\n            },\n            \"packing_instructions\": null,\n            \"width\": \"0.00\",\n            \"height\": \"0.00\",\n            \"length\": \"0.00\",\n            \"weight\": \"0.00000\",\n            \"weight_gross\": \"0.00000\",\n            \"weight_unit\": \"kg\",\n            \"cubic_meter\": \"0.00\",\n            \"price\": \"0.00000\",\n            \"purchasing_price\": \"0.00000\",\n            \"notes\": \"\",\n            \"external_id\": null,\n            \"created_at\": \"2024-03-24T14:44:48+00:00\",\n            \"updated_at\": \"2024-03-24T14:44:48+00:00\"\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/products\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"d9719292-4ca5-45f3-bcaf-3c82fbd19a3e"},{"name":"/products/:id","id":"08659414-4ce8-480a-a85c-b81333438916","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/products/8717","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["products","8717"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"7b07d0ff-c034-4111-8c75-50418dbc4e6a","name":"/products/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/products/8785"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 8785,\n        \"account_id\": 100,\n        \"account\": {\n            \"id\": 100,\n            \"name\": \"Demo Account\",\n            \"master_account_id\": null,\n            \"currency_id\": 1,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"ni_eori_number\": null,\n            \"ioss_number\": null,\n            \"ppi_licence_number\": null,\n            \"brand_name\": null,\n            \"account_code\": \"DA\",\n            \"short_name\": null,\n            \"notes\": \"\",\n            \"incoterms\": null,\n            \"created_at\": \"2024-03-24T13:10:38+00:00\",\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n        },\n        \"sku\": \"SKU-2\",\n        \"name\": \"SKU2\",\n        \"description\": \"Product description\",\n        \"image_url\": \"https://fidelity.unifywms-staging.com/icons/picture.svg\",\n        \"customs_description\": null,\n        \"commodity_code\": null,\n        \"country_of_origin\": null,\n        \"status_id\": 1,\n        \"status\": {\n            \"label\": \"products.statuses.active\",\n            \"hint\": null,\n            \"value\": 1,\n            \"color\": \"positive\",\n            \"icon\": null\n        },\n        \"type_id\": 1,\n        \"type\": {\n            \"label\": \"products.types.stock\",\n            \"hint\": \"products.types.stock_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"qr_code_scanner\",\n            \"disable\": false\n        },\n        \"packing_instructions\": null,\n        \"width\": \"2.00\",\n        \"height\": \"2.00\",\n        \"length\": \"0.00\",\n        \"weight\": \"5.00000\",\n        \"weight_gross\": \"0.00000\",\n        \"weight_unit\": \"kg\",\n        \"cubic_meter\": \"0.00\",\n        \"price\": \"0.00000\",\n        \"purchasing_price\": \"0.00000\",\n        \"notes\": \"\",\n        \"un_hazardous_number\": null,\n        \"is_rohs\": false,\n        \"is_weee\": false,\n        \"product_units\": [\n            {\n                \"id\": 7508,\n                \"account_id\": 100,\n                \"product_id\": 8785,\n                \"unit_id\": 1,\n                \"unit\": {\n                    \"id\": 1,\n                    \"name\": \"EACH\",\n                    \"symbol\": \"EA\",\n                    \"description\": \"Base Unit\",\n                    \"user_id\": 1,\n                    \"created_at\": \"2023-11-25T21:13:49+00:00\",\n                    \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n                },\n                \"print_sequence_number\": 1,\n                \"multiple_of_each_unit\": 1,\n                \"each_unit_value\": \"1.00000\",\n                \"sku_barcode\": \"SKU-2\",\n                \"ean_barcode\": null,\n                \"upc_barcode\": null,\n                \"user_id\": 38,\n                \"created_at\": \"2024-04-02T14:25:15+01:00\",\n                \"updated_at\": \"2024-04-02T14:25:15+01:00\"\n            }\n        ],\n        \"warehouse_products\": [\n            {\n                \"id\": 8785,\n                \"account_id\": 100,\n                \"warehouse_id\": 1,\n                \"warehouse\": {\n                    \"id\": 1,\n                    \"name\": \"Fidelity UK (MP1)\",\n                    \"code\": \"UK-MP1\",\n                    \"description\": \"Default warehouse\",\n                    \"priority\": 1,\n                    \"notes\": \"\",\n                    \"active\": true,\n                    \"weight_unit\": \"kg\",\n                    \"currency_id\": 1,\n                    \"user_id\": null,\n                    \"created_at\": \"2023-11-25T21:13:49+00:00\",\n                    \"updated_at\": \"2023-12-21T10:36:01+00:00\"\n                },\n                \"product_id\": 8785,\n                \"quantity_total\": 0,\n                \"quantity_allocated\": 0,\n                \"quantity_on_hold\": 0,\n                \"quantity_free\": 0,\n                \"created_at\": \"2024-04-02T14:25:15+01:00\",\n                \"updated_at\": \"2024-04-02T14:25:15+01:00\"\n            }\n        ],\n        \"tags\": [],\n        \"product_param\": {\n            \"id\": 8785,\n            \"product_id\": 8785,\n            \"has_lot_no_info\": false,\n            \"has_batch_info\": false,\n            \"has_serial_info\": false,\n            \"has_expiry_info\": false,\n            \"created_at\": \"2024-04-02T13:25:15+00:00\",\n            \"updated_at\": \"2024-04-02T13:25:15+00:00\"\n        },\n        \"product_boms\": [],\n        \"external_id\": null,\n        \"created_at\": \"2024-04-02T14:25:15+01:00\",\n        \"updated_at\": \"2024-04-02T14:25:15+01:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"08659414-4ce8-480a-a85c-b81333438916"},{"name":"/products/:id","id":"84b027a0-bf90-4b7f-88ea-2f0a42df4d02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": 8718,\n    \"account_id\": 100,\n    \"sku\": \"SKU-1XX\",\n    \"name\": \"Eample SKU\",\n    \"description\": \"...\",\n    \"image_url\": \"\",\n    \"customs_description\": null,\n    \"commodity_code\": null,\n    \"country_of_origin\": \"CH\",\n    \"status_id\": 1,\n    \"type_id\": 1,\n    \"packing_instructions\": null,\n    \"width\": \"0.00\",\n    \"height\": \"0.00\",\n    \"length\": \"0.00\",\n    \"weight\": \"0.00000\",\n    \"weight_gross\": \"0.00000\",\n    \"weight_unit\": \"kg\",\n    \"cubic_meter\": \"0.00\",\n    \"price\": \"25\",\n    \"purchasing_price\": \"0.00000\",\n    \"notes\": \"notes\",\n    \"external_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/products/8718","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["products","8718"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"68634a6c-04f7-46b5-93ca-84d8016c93a7","name":"/products/:id","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"account_id\": 100,\n  \"sku\": \"SKU-1XX\",\n  \"name\": \"Eample SKU\",\n  \"description\": \"...\",\n  \"image_url\": \"\",\n  \"customs_description\": null,\n  \"commodity_code\": null,\n  \"country_of_origin\": \"CH\",\n  \"status_id\": 1,\n  \"type_id\": 1,\n  \"packing_instructions\": null,\n  \"width\": \"0.00\",\n  \"height\": \"0.00\",\n  \"length\": \"0.00\",\n  \"weight\": \"0.00000\",\n  \"weight_gross\": \"0.00000\",\n  \"weight_unit\": \"kg\",\n  \"cubic_meter\": \"0.00\",\n  \"price\": \"25\",\n  \"purchasing_price\": \"0.00000\",\n  \"notes\": \"notes\",\n  \"external_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/products/8718"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 8718,\n        \"account_id\": 100,\n        \"sku\": \"SKU-1XX\",\n        \"name\": \"Eample SKU\",\n        \"description\": \"...\",\n        \"image_url\": \"https://fidelity.unifywms-staging.com/icons/picture.svg\",\n        \"customs_description\": null,\n        \"commodity_code\": null,\n        \"country_of_origin\": \"CH\",\n        \"status_id\": 1,\n        \"status\": {\n            \"label\": \"products.statuses.active\",\n            \"hint\": null,\n            \"value\": 1,\n            \"color\": \"positive\",\n            \"icon\": null\n        },\n        \"type_id\": 1,\n        \"type\": {\n            \"label\": \"products.types.stock\",\n            \"hint\": \"products.types.stock_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"qr_code_scanner\",\n            \"disable\": false\n        },\n        \"packing_instructions\": null,\n        \"width\": \"0.00\",\n        \"height\": \"0.00\",\n        \"length\": \"0.00\",\n        \"weight\": \"0.00000\",\n        \"weight_gross\": \"0.00000\",\n        \"weight_unit\": \"kg\",\n        \"cubic_meter\": \"0.00\",\n        \"price\": \"25.00000\",\n        \"purchasing_price\": \"0.00000\",\n        \"notes\": \"notes\",\n        \"external_id\": null,\n        \"created_at\": \"2024-03-24T14:57:41+00:00\",\n        \"updated_at\": \"2024-03-24T15:03:14+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"84b027a0-bf90-4b7f-88ea-2f0a42df4d02"},{"name":"/products/:id","id":"1e815ce6-b3a3-40b3-9434-12e6c54baf32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/products/?id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["products",""],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[{"key":"id","value":null}],"variable":[]}},"response":[{"id":"dfa58dac-d714-428d-bbef-aa1c9e229e86","name":"/products/:id","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/products/8717"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null\n}"}],"_postman_id":"1e815ce6-b3a3-40b3-9434-12e6c54baf32"},{"name":"/products","id":"93d295f6-77c5-487d-9d8b-e50f77b9736d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"account_id\": 100,\n  \"sku\": \"SKU-2\",\n  \"name\": \"SKU2\",\n  \"description\": \"Product description\",\n  \"image_url\": \"\",\n  \"customs_description\": null,\n  \"commodity_code\": null,\n  \"country_of_origin\": null,\n  \"status_id\": 1,\n  \"type_id\": 1,\n  \"packing_instructions\": null,\n  \"width\": \"2\",\n  \"height\": \"2\",\n  \"length\": \"0.00\",\n  \"weight\": \"5\",\n  \"weight_gross\": \"0.00000\",\n  \"weight_unit\": \"kg\",\n  \"cubic_meter\": \"0.00\",\n  \"price\": \"0.00000\",\n  \"purchasing_price\": \"0.00000\",\n  \"notes\": \"\",\n  \"external_id\": null,\n  \"warehouse_products\": [\n    {\n        \"warehouse_id\": 1\n    },\n    {\n        \"warehouse_id\": 2\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/products","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["products"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c3613571-67a7-4ccc-88b8-97d6f7873b65","name":"/products","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"account_id\": 100,\n  \"sku\": \"SKU-2\",\n  \"name\": \"SKU2\",\n  \"description\": \"Product description\",\n  \"image_url\": \"\",\n  \"customs_description\": null,\n  \"commodity_code\": null,\n  \"country_of_origin\": null,\n  \"status_id\": 1,\n  \"type_id\": 1,\n  \"packing_instructions\": null,\n  \"width\": \"2\",\n  \"height\": \"2\",\n  \"length\": \"0.00\",\n  \"weight\": \"5\",\n  \"weight_gross\": \"0.00000\",\n  \"weight_unit\": \"kg\",\n  \"cubic_meter\": \"0.00\",\n  \"price\": \"0.00000\",\n  \"purchasing_price\": \"0.00000\",\n  \"notes\": \"\",\n  \"external_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/products"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 8718,\n        \"account_id\": 100,\n        \"sku\": \"SKU-2\",\n        \"name\": \"SKU2\",\n        \"description\": \"Product description\",\n        \"image_url\": \"https://fidelity.unifywms-staging.com/icons/picture.svg\",\n        \"customs_description\": null,\n        \"commodity_code\": null,\n        \"country_of_origin\": null,\n        \"status_id\": 1,\n        \"status\": {\n            \"label\": \"products.statuses.active\",\n            \"hint\": null,\n            \"value\": 1,\n            \"color\": \"positive\",\n            \"icon\": null\n        },\n        \"type_id\": 1,\n        \"type\": {\n            \"label\": \"products.types.stock\",\n            \"hint\": \"products.types.stock_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"qr_code_scanner\",\n            \"disable\": false\n        },\n        \"packing_instructions\": null,\n        \"width\": \"2.00\",\n        \"height\": \"2.00\",\n        \"length\": \"0.00\",\n        \"weight\": \"5.00000\",\n        \"weight_gross\": \"0.00000\",\n        \"weight_unit\": \"kg\",\n        \"cubic_meter\": \"0.00\",\n        \"price\": \"0.00000\",\n        \"purchasing_price\": \"0.00000\",\n        \"notes\": \"\",\n        \"external_id\": null,\n        \"created_at\": \"2024-03-24T14:57:41+00:00\",\n        \"updated_at\": \"2024-03-24T14:57:41+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"93d295f6-77c5-487d-9d8b-e50f77b9736d"}],"id":"456919c8-854d-454c-ae90-a14e4f1a2113","_postman_id":"456919c8-854d-454c-ae90-a14e4f1a2113","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Grns","item":[{"name":"Delivery Types","item":[{"name":"/delivery-types","id":"7a79b3fd-2c8d-4412-be2c-752f0a6f6b4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{tenant}.unifywms.com/api/v1/delivery-types","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["delivery-types"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"65c17b08-b94e-4d12-9c77-79dc8a910d22","name":"/delivery-types","originalRequest":{"method":"GET","header":[],"url":"https://{tenant}.unifywms.com/api/v1/delivery-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 31 Mar 2024 12:21:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"vary","value":"Accept-Encoding","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"x-ratelimit-limit","value":"60","enabled":true},{"key":"x-ratelimit-remaining","value":"59","enabled":true},{"key":"x-frame-options","value":"SAMEORIGIN","enabled":true},{"key":"x-xss-protection","value":"1; mode=block","enabled":true},{"key":"x-content-type-options","value":"nosniff","enabled":true},{"key":"CF-Cache-Status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=DDlxV1eCl2vZaQg5wDi7cwYMY7oRVWN6s2MzAhNha8CODlJXwNbu9apzgOx3mqp6mXGqwoI9s6cicaN7dT9n9Ve0tX%2FO0AyHEo2Y9pDKK5RLgwwRFBDaqNaumOQzoa7r2%2F%2BBHlgSDWKt6VNv3G7XAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=0; includeSubDomains; preload","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"86d04c937bb4532a-LHR","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"alt-svc","value":"h3=\":443\"; ma=86400","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 26,\n            \"name\": \"HGV Trailer\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2024-01-17T13:57:07+00:00\",\n            \"created_at\": \"2024-01-17T13:57:07+00:00\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"45' FCL\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"40' HC FCL\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Carton\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Pallet\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"40' FCL\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        {\n            \"id\": 1,\n            \"name\": \"20' FCL\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/delivery-types\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"7a79b3fd-2c8d-4412-be2c-752f0a6f6b4f"}],"id":"7b0a441d-817c-4abf-8a9a-e8abf5cb0451","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>van</td>\n<td></td>\n</tr>\n<tr>\n<td>hgv</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7b0a441d-817c-4abf-8a9a-e8abf5cb0451","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"/grns","id":"0448beec-57cb-4d77-a66e-e462fe3fbac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/grns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["grns"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ce1248e9-0ba7-4d40-b6f7-8c1015aa750a","name":"/grns","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/grns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 39,\n            \"warehouse_id\": 1,\n            \"account_id\": 100,\n            \"supplier_id\": null,\n            \"grn_status_id\": 2,\n            \"grn_status\": {\n                \"label\": \"grns.statuses.pending\",\n                \"hint\": \"grns.statuses.pending_hint\",\n                \"value\": 2,\n                \"color\": \"warning\",\n                \"icon\": \"hourglass_bottom\",\n                \"disable\": false\n            },\n            \"incoterms\": null,\n            \"document_number\": \"GRN-000039\",\n            \"supplier_grn_no\": null,\n            \"reference\": \"EXT-GRN-222\",\n            \"currency_id\": 1,\n            \"exchange_rate\": \"0.00000\",\n            \"total_net_value\": \"0.00\",\n            \"total_tax_value\": \"0.00\",\n            \"total_gross_value\": \"0.00\",\n            \"priority\": 1,\n            \"priority_details\": {\n                \"label\": \"priorities.normal\",\n                \"hint\": \"\",\n                \"value\": 1,\n                \"color\": \"primary\",\n                \"icon\": \"remove\",\n                \"disable\": false\n            },\n            \"is_part_received\": true,\n            \"notes\": null,\n            \"courier_id\": null,\n            \"delivery_type_id\": 1,\n            \"delivery_quantity\": 1,\n            \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n            \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n            \"offloaded_at\": null,\n            \"arrived_at\": null,\n            \"is_delivery_confirmed\": false,\n            \"tracking_number\": null,\n            \"bill_of_landing\": null,\n            \"container_number\": null,\n            \"seal_number\": null,\n            \"vehicle_type\": null,\n            \"vehicle_reg\": null,\n            \"is_bonded\": false,\n            \"import_customs_ref\": null,\n            \"external_id\": \"EXT-ID-111\",\n            \"user_id\": null,\n            \"created_at\": \"2024-03-31T11:47:58+01:00\",\n            \"updated_at\": \"2024-03-31T11:47:58+01:00\"\n        },\n        {\n            \"id\": 38,\n            \"warehouse_id\": 1,\n            \"account_id\": 100,\n            \"supplier_id\": null,\n            \"grn_status_id\": 2,\n            \"grn_status\": {\n                \"label\": \"grns.statuses.pending\",\n                \"hint\": \"grns.statuses.pending_hint\",\n                \"value\": 2,\n                \"color\": \"warning\",\n                \"icon\": \"hourglass_bottom\",\n                \"disable\": false\n            },\n            \"incoterms\": null,\n            \"document_number\": \"GRN-000038\",\n            \"supplier_grn_no\": null,\n            \"reference\": \"EXT-GRN-102\",\n            \"currency_id\": 1,\n            \"exchange_rate\": \"0.00000\",\n            \"total_net_value\": \"0.00\",\n            \"total_tax_value\": \"0.00\",\n            \"total_gross_value\": \"0.00\",\n            \"priority\": 1,\n            \"priority_details\": {\n                \"label\": \"priorities.normal\",\n                \"hint\": \"\",\n                \"value\": 1,\n                \"color\": \"primary\",\n                \"icon\": \"remove\",\n                \"disable\": false\n            },\n            \"is_part_received\": true,\n            \"notes\": null,\n            \"courier_id\": null,\n            \"delivery_type_id\": 1,\n            \"delivery_quantity\": 1,\n            \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n            \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n            \"offloaded_at\": null,\n            \"arrived_at\": null,\n            \"is_delivery_confirmed\": false,\n            \"tracking_number\": null,\n            \"bill_of_landing\": null,\n            \"container_number\": null,\n            \"seal_number\": null,\n            \"vehicle_type\": null,\n            \"vehicle_reg\": null,\n            \"is_bonded\": false,\n            \"import_customs_ref\": null,\n            \"external_id\": null,\n            \"user_id\": null,\n            \"created_at\": \"2024-03-31T11:39:04+01:00\",\n            \"updated_at\": \"2024-03-31T11:39:04+01:00\"\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/grns\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"0448beec-57cb-4d77-a66e-e462fe3fbac7"},{"name":"/grns/:id","id":"f9ad2919-5983-4aec-8cd6-940c0d622fd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/grns/39","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["grns","39"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2f3833d5-d51b-4ba9-a806-11f9bb1d99c1","name":"/grns/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/grns/39"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 39,\n        \"warehouse_id\": 1,\n        \"warehouse\": {\n            \"id\": 1,\n            \"name\": \"Fidelity UK (MP1)\",\n            \"code\": \"UK-MP1\",\n            \"description\": \"Default warehouse\",\n            \"priority\": 1,\n            \"notes\": \"\",\n            \"active\": true,\n            \"weight_unit\": \"kg\",\n            \"currency_id\": 1,\n            \"user_id\": null,\n            \"created_at\": \"2023-11-25T21:13:49+00:00\",\n            \"updated_at\": \"2023-12-21T10:36:01+00:00\"\n        },\n        \"account_id\": 100,\n        \"account\": {\n            \"id\": 100,\n            \"name\": \"Demo Account\",\n            \"master_account_id\": null,\n            \"currency_id\": 1,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"ni_eori_number\": null,\n            \"ioss_number\": null,\n            \"ppi_licence_number\": null,\n            \"brand_name\": null,\n            \"account_code\": \"DA\",\n            \"short_name\": null,\n            \"notes\": \"\",\n            \"incoterms\": null,\n            \"created_at\": \"2024-03-24T13:10:38+00:00\",\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n        },\n        \"supplier_id\": null,\n        \"supplier\": null,\n        \"grn_status_id\": 2,\n        \"grn_status\": {\n            \"label\": \"grns.statuses.pending\",\n            \"hint\": \"grns.statuses.pending_hint\",\n            \"value\": 2,\n            \"color\": \"warning\",\n            \"icon\": \"hourglass_bottom\",\n            \"disable\": false\n        },\n        \"incoterms\": null,\n        \"document_number\": \"GRN-000039\",\n        \"supplier_grn_no\": null,\n        \"reference\": \"EXT-GRN-222\",\n        \"currency_id\": 1,\n        \"currency\": {\n            \"id\": 1,\n            \"name\": \"British Pounds\",\n            \"symbol\": \"£\",\n            \"iso_code\": \"GBP\",\n            \"exchange_rate\": \"1.00000\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\",\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        \"exchange_rate\": \"0.00000\",\n        \"total_net_value\": \"0.00\",\n        \"total_tax_value\": \"0.00\",\n        \"total_gross_value\": \"0.00\",\n        \"priority\": 1,\n        \"priority_details\": {\n            \"label\": \"priorities.normal\",\n            \"hint\": \"\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"remove\",\n            \"disable\": false\n        },\n        \"is_part_received\": true,\n        \"notes\": null,\n        \"courier_id\": null,\n        \"courier\": null,\n        \"delivery_type_id\": 1,\n        \"delivery_type\": {\n            \"id\": 1,\n            \"name\": \"20' FCL\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        \"delivery_quantity\": 1,\n        \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n        \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n        \"offloaded_at\": null,\n        \"arrived_at\": null,\n        \"is_delivery_confirmed\": false,\n        \"tracking_number\": null,\n        \"tracking_url\": null,\n        \"bill_of_landing\": null,\n        \"container_number\": null,\n        \"seal_number\": null,\n        \"vehicle_type\": null,\n        \"vehicle_reg\": null,\n        \"is_bonded\": false,\n        \"import_customs_ref\": null,\n        \"external_id\": \"EXT-ID-111\",\n        \"user_id\": null,\n        \"created_at\": \"2024-03-31T11:47:58+01:00\",\n        \"updated_at\": \"2024-03-31T11:47:58+01:00\",\n        \"grn_lines\": [\n            {\n                \"id\": 89,\n                \"grn_id\": 39,\n                \"product_id\": 8718,\n                \"product\": {\n                    \"id\": 8718,\n                    \"account_id\": 100,\n                    \"sku\": \"SKU-1XX\",\n                    \"name\": \"Eample SKU\",\n                    \"description\": \"...\",\n                    \"image_url\": \"https://fidelity.unifywms-staging.com/icons/picture.svg\",\n                    \"customs_description\": null,\n                    \"commodity_code\": null,\n                    \"country_of_origin\": \"CH\",\n                    \"status_id\": 1,\n                    \"status\": {\n                        \"label\": \"products.statuses.active\",\n                        \"hint\": null,\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": null\n                    },\n                    \"type_id\": 1,\n                    \"type\": {\n                        \"label\": \"products.types.stock\",\n                        \"hint\": \"products.types.stock_hint\",\n                        \"value\": 1,\n                        \"color\": \"primary\",\n                        \"icon\": \"qr_code_scanner\",\n                        \"disable\": false\n                    },\n                    \"packing_instructions\": null,\n                    \"width\": \"0.00\",\n                    \"height\": \"0.00\",\n                    \"length\": \"0.00\",\n                    \"weight\": \"0.00000\",\n                    \"weight_gross\": \"0.00000\",\n                    \"weight_unit\": \"kg\",\n                    \"cubic_meter\": \"0.00\",\n                    \"price\": \"25.00000\",\n                    \"purchasing_price\": \"0.00000\",\n                    \"notes\": \"notes\",\n                    \"product_units\": [\n                        {\n                            \"id\": 7441,\n                            \"account_id\": 100,\n                            \"product_id\": 8718,\n                            \"unit_id\": 1,\n                            \"unit\": {\n                                \"id\": 1,\n                                \"name\": \"EACH\",\n                                \"symbol\": \"EA\",\n                                \"description\": \"Base Unit\",\n                                \"user_id\": 1,\n                                \"created_at\": \"2023-11-25T21:13:49+00:00\",\n                                \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n                            },\n                            \"print_sequence_number\": 1,\n                            \"multiple_of_each_unit\": 1,\n                            \"each_unit_value\": \"1.00000\",\n                            \"sku_barcode\": \"SKU-1XX\",\n                            \"ean_barcode\": null,\n                            \"upc_barcode\": null,\n                            \"user_id\": 4,\n                            \"created_at\": \"2024-03-24T15:24:06+00:00\",\n                            \"updated_at\": \"2024-03-31T11:38:02+01:00\"\n                        }\n                    ],\n                    \"external_id\": null,\n                    \"created_at\": \"2024-03-24T14:57:41+00:00\",\n                    \"updated_at\": \"2024-03-24T15:03:14+00:00\"\n                },\n                \"product_unit_id\": 7441,\n                \"product_unit\": {\n                    \"id\": 7441,\n                    \"account_id\": 100,\n                    \"product_id\": 8718,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2023-11-25T21:13:49+00:00\",\n                        \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"SKU-1XX\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"user_id\": 4,\n                    \"created_at\": \"2024-03-24T15:24:06+00:00\",\n                    \"updated_at\": \"2024-03-31T11:38:02+01:00\"\n                },\n                \"print_sequence_number\": null,\n                \"quantity_advised\": 25,\n                \"quantity_received\": 0,\n                \"notes\": null,\n                \"hold_stock_on_receipt_notes\": null,\n                \"hold_stock_on_receipt\": false,\n                \"price\": \"0.00000\",\n                \"total_value\": \"0.00\",\n                \"total_tax_value\": \"0.00\",\n                \"external_id\": \"LINE-EXT-1123\",\n                \"user_id\": 38,\n                \"created_at\": \"2024-03-31T11:47:58+01:00\",\n                \"updated_at\": \"2024-03-31T11:47:58+01:00\"\n            }\n        ]\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"f9ad2919-5983-4aec-8cd6-940c0d622fd0"},{"name":"/grns/:id","id":"d248f99e-8a4c-4d93-bf8b-258bcc889aa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"warehouse_id\": 1,\n    \"account_id\": 100,\n    \"supplier_id\": null,\n    \"grn_status_id\": 2,\n    \"incoterms\": null,\n    \"document_number\": \"GRN-000039\",\n    \"supplier_grn_no\": null,\n    \"reference\": \"EXT-GRN-REF2\",\n    \"currency_id\": 1,\n    \"priority\": 1,\n    \"is_part_received\": true,\n    \"notes\": null,\n    \"courier_id\": null,\n    \"delivery_type_id\": 1,\n    \"delivery_quantity\": 1,\n    \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n    \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n    \"offloaded_at\": null,\n    \"arrived_at\": null,\n    \"is_delivery_confirmed\": false,\n    \"tracking_number\": \"1ZXXX\",\n    \"bill_of_landing\": null,\n    \"container_number\": null,\n    \"seal_number\": null,\n    \"vehicle_type\": null,\n    \"vehicle_reg\": null,\n    \"is_bonded\": false,\n    \"import_customs_ref\": null,\n    \"external_id\": \"EXT-ID-111\",\n    \"grn_lines\": [\n        {\n            \"id\": 89,\n            \"grn_id\": 39,\n            \"product_id\": 8718,\n            \"quantity_advised\": 100\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/grns/39","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["grns","39"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f5ee12b9-acaf-4345-a6cc-ed5ea22704af","name":"/grns/:id","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"warehouse_id\": 1,\n    \"account_id\": 100,\n    \"supplier_id\": null,\n    \"grn_status_id\": 2,\n    \"incoterms\": null,\n    \"document_number\": \"GRN-000039\",\n    \"supplier_grn_no\": null,\n    \"reference\": \"EXT-GRN-REF2\",\n    \"currency_id\": 1,\n    \"priority\": 1,\n    \"is_part_received\": true,\n    \"notes\": null,\n    \"courier_id\": null,\n    \"delivery_type_id\": 1,\n    \"delivery_quantity\": 1,\n    \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n    \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n    \"offloaded_at\": null,\n    \"arrived_at\": null,\n    \"is_delivery_confirmed\": false,\n    \"tracking_number\": \"1ZXXX\",\n    \"bill_of_landing\": null,\n    \"container_number\": null,\n    \"seal_number\": null,\n    \"vehicle_type\": null,\n    \"vehicle_reg\": null,\n    \"is_bonded\": false,\n    \"import_customs_ref\": null,\n    \"external_id\": \"EXT-ID-111\",\n    \"grn_lines\": [\n        {\n            \"id\": 89,\n            \"grn_id\": 39,\n            \"product_id\": 8718,\n            \"quantity_advised\": 100\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/grns/39"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 39,\n        \"warehouse_id\": 1,\n        \"account_id\": 100,\n        \"supplier_id\": null,\n        \"grn_status_id\": 2,\n        \"grn_status\": {\n            \"label\": \"grns.statuses.pending\",\n            \"hint\": \"grns.statuses.pending_hint\",\n            \"value\": 2,\n            \"color\": \"warning\",\n            \"icon\": \"hourglass_bottom\",\n            \"disable\": false\n        },\n        \"incoterms\": null,\n        \"document_number\": \"GRN-000039\",\n        \"supplier_grn_no\": null,\n        \"reference\": \"EXT-GRN-REF2\",\n        \"currency_id\": 1,\n        \"exchange_rate\": \"0.00000\",\n        \"total_net_value\": \"0.00\",\n        \"total_tax_value\": \"0.00\",\n        \"total_gross_value\": \"0.00\",\n        \"priority\": 1,\n        \"priority_details\": {\n            \"label\": \"priorities.normal\",\n            \"hint\": \"\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"remove\",\n            \"disable\": false\n        },\n        \"is_part_received\": true,\n        \"notes\": null,\n        \"courier_id\": null,\n        \"delivery_type_id\": 1,\n        \"delivery_quantity\": 1,\n        \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n        \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n        \"offloaded_at\": null,\n        \"arrived_at\": null,\n        \"is_delivery_confirmed\": false,\n        \"tracking_number\": \"1ZXXX\",\n        \"bill_of_landing\": null,\n        \"container_number\": null,\n        \"seal_number\": null,\n        \"vehicle_type\": null,\n        \"vehicle_reg\": null,\n        \"is_bonded\": false,\n        \"import_customs_ref\": null,\n        \"external_id\": \"EXT-ID-111\",\n        \"user_id\": null,\n        \"created_at\": \"2024-03-31T11:47:58+01:00\",\n        \"updated_at\": \"2024-03-31T11:59:49+01:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"d248f99e-8a4c-4d93-bf8b-258bcc889aa2"},{"name":"/grns/:id","id":"922668a9-f528-4c29-ac52-1efb382dec62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/grns/35","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["grns","35"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9009eddf-c662-45a9-a937-77dc85355431","name":"/grns/:id","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/grns/35"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null\n}"}],"_postman_id":"922668a9-f528-4c29-ac52-1efb382dec62"},{"name":"/grns","id":"f372e0da-273b-4073-99e8-3d19516e1f44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"account_id\": 100,\n  \"warehouse_id\": 1,\n  \"supplier_id\": null,\n  \"delivery_type_id\": 1,\n  \"delivery_quantity\": 1,\n  \"reference\": \"EXT-GRN-222\",\n  \"supplier_grn_no\": null,\n  \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n  \"bill_of_landing\": null,\n  \"container_number\": null,\n  \"seal_number\": null,\n  \"tracking_number\": null,\n  \"external_id\": \"EXT-ID-111\",\n  \"grn_lines\": [\n    {\n      \"product_id\": 8718,\n      \"product_unit_id\": 7441,\n      \"sku\": \"SKU-1XX\",\n      \"quantity_advised\": 25,\n      \"external_id\": \"LINE-EXT-1123\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/grns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["grns"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2930d9d7-a3d1-4fd0-ad8e-460e994e6a2e","name":"/grns","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"account_id\": 100,\n  \"warehouse_id\": 1,\n  \"supplier_id\": null,\n  \"delivery_type_id\": 1,\n  \"delivery_quantity\": 1,\n  \"reference\": \"EXT-GRN-222\",\n  \"supplier_grn_no\": null,\n  \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n  \"bill_of_landing\": null,\n  \"container_number\": null,\n  \"seal_number\": null,\n  \"tracking_number\": null,\n  \"external_id\": \"EXT-ID-111\",\n  \"grn_lines\": [\n    {\n      \"product_id\": 8718,\n      \"product_unit_id\": 7441,\n      \"sku\": \"SKU-1XX\",\n      \"quantity_advised\": 25,\n      \"external_id\": \"LINE-EXT-1123\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/grns"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 39,\n        \"warehouse_id\": 1,\n        \"account_id\": 100,\n        \"supplier_id\": null,\n        \"grn_status_id\": 2,\n        \"grn_status\": {\n            \"label\": \"grns.statuses.pending\",\n            \"hint\": \"grns.statuses.pending_hint\",\n            \"value\": 2,\n            \"color\": \"warning\",\n            \"icon\": \"hourglass_bottom\",\n            \"disable\": false\n        },\n        \"document_number\": \"GRN-000039\",\n        \"supplier_grn_no\": null,\n        \"reference\": \"EXT-GRN-222\",\n        \"currency_id\": 1,\n        \"total_net_value\": 0,\n        \"total_tax_value\": 0,\n        \"total_gross_value\": 0,\n        \"delivery_type_id\": 1,\n        \"delivery_type\": {\n            \"id\": 1,\n            \"name\": \"20' FCL\",\n            \"warehouse_id\": 1,\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        \"delivery_quantity\": 1,\n        \"est_arrived_at\": \"2024-01-20T07:00:00+00:00\",\n        \"est_offloaded_at\": \"2024-01-20T07:30:00+00:00\",\n        \"tracking_number\": null,\n        \"bill_of_landing\": null,\n        \"container_number\": null,\n        \"seal_number\": null,\n        \"external_id\": \"EXT-ID-111\",\n        \"created_at\": \"2024-03-31T11:47:58+01:00\",\n        \"updated_at\": \"2024-03-31T11:47:58+01:00\",\n        \"grn_lines\": [\n            {\n                \"id\": 89,\n                \"grn_id\": 39,\n                \"product_id\": 8718,\n                \"product_unit_id\": 7441,\n                \"print_sequence_number\": null,\n                \"quantity_advised\": 25,\n                \"quantity_received\": 0,\n                \"notes\": null,\n                \"hold_stock_on_receipt_notes\": null,\n                \"hold_stock_on_receipt\": false,\n                \"price\": \"0.00000\",\n                \"total_value\": \"0.00\",\n                \"total_tax_value\": \"0.00\",\n                \"external_id\": \"LINE-EXT-1123\",\n                \"user_id\": 38,\n                \"created_at\": \"2024-03-31T11:47:58+01:00\",\n                \"updated_at\": \"2024-03-31T11:47:58+01:00\"\n            }\n        ]\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"f372e0da-273b-4073-99e8-3d19516e1f44"}],"id":"7e8bb508-c69a-416b-b8be-e9b4f031d322","description":"<p>Goods Received Notes</p>\n","_postman_id":"7e8bb508-c69a-416b-b8be-e9b4f031d322","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Orders","item":[{"name":"/orders","id":"8e2fcf65-aa48-4932-b575-9cf9ddcd8071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/orders","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["orders"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"0fb0b858-65ab-4b94-ae64-eb16590c01b8","name":"/orders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 613,\n            \"account_id\": 100,\n            \"warehouse_id\": 1,\n            \"customer_id\": null,\n            \"customer_plant_id\": null,\n            \"company_name\": \"Unify\",\n            \"title\": null,\n            \"full_name\": null,\n            \"phone\": null,\n            \"email\": null,\n            \"line_1\": \"Unit 1\",\n            \"line_2\": null,\n            \"line_3\": null,\n            \"city\": \"Daventry\",\n            \"post_code\": \"NN11 8NW\",\n            \"county\": null,\n            \"country\": \"GB\",\n            \"order_channel_id\": 1,\n            \"order_channel\": {\n                \"label\": \"orders.channels.manual\",\n                \"hint\": \"orders.channels.manual_hint\",\n                \"value\": 1,\n                \"color\": \"primary\",\n                \"icon\": \"person\",\n                \"disable\": false\n            },\n            \"order_status_id\": 1,\n            \"order_status\": {\n                \"label\": \"orders.statuses.draft\",\n                \"hint\": \"orders.statuses.draft_hint\",\n                \"value\": 1,\n                \"color\": \"primary\",\n                \"icon\": \"edit\",\n                \"disable\": false\n            },\n            \"on_hold_status_id\": 1,\n            \"on_hold_status\": {\n                \"label\": \"orders.on_hold_statuses.not_on_hold\",\n                \"hint\": \"orders.on_hold_statuses.not_on_hold_hint\",\n                \"value\": 1,\n                \"color\": \"black\",\n                \"icon\": \"check\",\n                \"disable\": false\n            },\n            \"bill_shipping_to_account\": null,\n            \"incoterms\": null,\n            \"document_number\": \"ORD-000184\",\n            \"document_number_ref\": null,\n            \"tracking_number\": null,\n            \"packing_notes\": null,\n            \"delivery_notes\": null,\n            \"gift_message\": null,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"pid_number\": null,\n            \"order_date\": \"2024-03-24T15:23:20+00:00\",\n            \"contact_document_number\": null,\n            \"requested_delivery_date\": null,\n            \"promised_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n            \"currency_id\": 1,\n            \"exchange_rate\": \"0.00000\",\n            \"subtotal_discount_value\": \"0.00\",\n            \"total_net_value\": \"250.00\",\n            \"total_tax_value\": \"0.00\",\n            \"total_gross_value\": \"250.00\",\n            \"weight_unit\": \"kg\",\n            \"weight_estimate\": 0,\n            \"weight_gross\": 0,\n            \"courier_service_id\": null,\n            \"tracking_status_id\": null,\n            \"tracking_status\": null,\n            \"shipping_charge\": \"0.00\",\n            \"notes\": \"\",\n            \"is_b2b\": false,\n            \"has_bundle_products\": false,\n            \"external_id\": null,\n            \"part\": 1,\n            \"total_parts\": 1,\n            \"total_lines\": 0,\n            \"total_packages\": 0,\n            \"volumetric_weight\": \"0.00000\",\n            \"despatch_date\": null,\n            \"created_at\": \"2024-03-24T15:25:09+00:00\",\n            \"updated_at\": \"2024-03-24T15:25:09+00:00\"\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/orders\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"8e2fcf65-aa48-4932-b575-9cf9ddcd8071"},{"name":"/orders/:id","id":"ed7518b6-b62e-41be-92b1-837fc3d78c82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/orders/613","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["orders","613"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c52ad515-815c-49ff-b3f1-8718809fa1c7","name":"/orders/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/orders/613"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 613,\n        \"account_id\": 100,\n        \"account\": {\n            \"id\": 100,\n            \"name\": \"Demo Account\",\n            \"master_account_id\": null,\n            \"currency_id\": 1,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"ni_eori_number\": null,\n            \"ioss_number\": null,\n            \"ppi_licence_number\": null,\n            \"brand_name\": null,\n            \"account_code\": \"DA\",\n            \"short_name\": null,\n            \"notes\": \"\",\n            \"incoterms\": null,\n            \"created_at\": \"2024-03-24T13:10:38+00:00\",\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n        },\n        \"warehouse_id\": 1,\n        \"warehouse\": {\n            \"id\": 1,\n            \"name\": \"Fidelity UK (MP1)\",\n            \"code\": \"UK-MP1\",\n            \"description\": \"Default warehouse\",\n            \"priority\": 1,\n            \"notes\": \"\",\n            \"active\": true,\n            \"weight_unit\": \"kg\",\n            \"currency_id\": 1,\n            \"address\": {\n                \"id\": 3,\n                \"address_type\": 3,\n                \"address_type_name\": \"Shipping\",\n                \"company_name\": \"Fidelity Fulfilment\",\n                \"title\": null,\n                \"name\": \"Tony Barritt\",\n                \"phone\": \"01327 220660\",\n                \"email\": \"support@fidelityfulfilment.com\",\n                \"line_1\": \"1 Orion Close\",\n                \"line_2\": \"Mustang Park\",\n                \"city\": \"Daventry\",\n                \"post_code\": \"NN11 8NW\",\n                \"county\": \"Northamptonshire\",\n                \"country\": \"GB\",\n                \"is_default\": false,\n                \"is_billing\": true,\n                \"condensed_address\": \"Fidelity Fulfilment\\n1 Orion Close\\nMustang Park\\nDaventry\\nNorthamptonshire\\nNN11 8NW\\nGB\\n01327 220660\\nsupport@fidelityfulfilment.com\\n\",\n                \"user_id\": 2,\n                \"updated_at\": \"2024-01-08T16:15:21+00:00\",\n                \"created_at\": \"2023-11-27T11:44:05+00:00\"\n            },\n            \"user_id\": null,\n            \"created_at\": \"2023-11-25T21:13:49+00:00\",\n            \"updated_at\": \"2023-12-21T10:36:01+00:00\"\n        },\n        \"customer_id\": null,\n        \"customer\": null,\n        \"customer_plant_id\": null,\n        \"customer_plant\": null,\n        \"company_name\": \"Unify\",\n        \"title\": null,\n        \"full_name\": null,\n        \"phone\": null,\n        \"email\": null,\n        \"line_1\": \"Unit 1\",\n        \"line_2\": null,\n        \"line_3\": null,\n        \"city\": \"Daventry\",\n        \"post_code\": \"NN11 8NW\",\n        \"county\": null,\n        \"country\": \"GB\",\n        \"order_channel_id\": 1,\n        \"order_channel\": {\n            \"label\": \"orders.channels.manual\",\n            \"hint\": \"orders.channels.manual_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"person\",\n            \"disable\": false\n        },\n        \"order_status_id\": 1,\n        \"order_status\": {\n            \"label\": \"orders.statuses.draft\",\n            \"hint\": \"orders.statuses.draft_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"edit\",\n            \"disable\": false\n        },\n        \"on_hold_status_id\": 1,\n        \"on_hold_status\": {\n            \"label\": \"orders.on_hold_statuses.not_on_hold\",\n            \"hint\": \"orders.on_hold_statuses.not_on_hold_hint\",\n            \"value\": 1,\n            \"color\": \"black\",\n            \"icon\": \"check\",\n            \"disable\": false\n        },\n        \"bill_shipping_to_account\": null,\n        \"incoterms\": null,\n        \"document_number\": \"ORD-000184\",\n        \"document_number_ref\": \"EXT-ORD\",\n        \"tracking_number\": \"1ZXXXXXXXXXX\",\n        \"tracking_info\": {\n            \"tracking_number\": \"1ZXXXXXXXXXX\",\n            \"tracking_url\": \"http://www.ups.com/WebTracking/processInputRequest?tracknum=1ZXXXXXXXXXX\",\n            \"courier_code\": \"ups\",\n            \"service_code\": \"ups_ground\"\n        },\n        \"packing_notes\": null,\n        \"delivery_notes\": null,\n        \"gift_message\": null,\n        \"vat_number\": null,\n        \"eori_number\": null,\n        \"pid_number\": null,\n        \"order_date\": \"2024-03-24T15:23:20+00:00\",\n        \"contact_document_number\": null,\n        \"requested_delivery_date\": null,\n        \"promised_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n        \"currency_id\": 1,\n        \"currency\": {\n            \"id\": 1,\n            \"name\": \"British Pounds\",\n            \"symbol\": \"£\",\n            \"iso_code\": \"GBP\",\n            \"exchange_rate\": \"1.00000\",\n            \"created_at\": \"2023-11-25T21:13:49+00:00\",\n            \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n        },\n        \"exchange_rate\": \"0.00000\",\n        \"subtotal_discount_value\": \"0.00\",\n        \"total_net_value\": \"250.00\",\n        \"total_tax_value\": \"0.00\",\n        \"total_gross_value\": \"250.00\",\n        \"weight_unit\": \"kg\",\n        \"weight_estimate\": 0,\n        \"weight_gross\": 0,\n        \"courier_service_id\": 74,\n        \"courier_service\": {\n            \"id\": 74,\n            \"courier_id\": 5,\n            \"courier\": {\n                \"id\": 5,\n                \"name\": \"UPS\",\n                \"courier_code\": \"ups\"\n            },\n            \"name\": \"UPS® Ground\",\n            \"service_code\": \"ups_ground\",\n            \"status_link\": \"http://www.ups.com/WebTracking/processInputRequest?tracknum=tracking_number\"\n        },\n        \"tracking_status_id\": 1,\n        \"tracking_status\": {\n            \"label\": \"orders.tracking_statuses.created\",\n            \"hint\": null,\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"assignment\",\n            \"disable\": false\n        },\n        \"shipping_charge\": \"0.00\",\n        \"notes\": \"\",\n        \"is_b2b\": false,\n        \"has_bundle_products\": false,\n        \"external_id\": null,\n        \"part\": 1,\n        \"total_parts\": 1,\n        \"total_lines\": 1,\n        \"total_packages\": 0,\n        \"volumetric_weight\": \"0.00000\",\n        \"despatch_date\": null,\n        \"created_at\": \"2024-03-24T15:25:09+00:00\",\n        \"updated_at\": \"2024-04-03T09:56:45+01:00\",\n        \"order_lines\": [\n            {\n                \"id\": 372,\n                \"order_id\": 613,\n                \"print_sequence_number\": 1,\n                \"line_type\": 1,\n                \"product_id\": 8718,\n                \"product\": {\n                    \"id\": 8718,\n                    \"account_id\": 100,\n                    \"sku\": \"SKU-1XX\",\n                    \"name\": \"Eample SKU\",\n                    \"description\": \"...\",\n                    \"image_url\": \"https://fidelity.unifywms-staging.com/icons/picture.svg\",\n                    \"customs_description\": null,\n                    \"commodity_code\": null,\n                    \"country_of_origin\": \"CH\",\n                    \"status_id\": 1,\n                    \"status\": {\n                        \"label\": \"products.statuses.active\",\n                        \"hint\": null,\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": null\n                    },\n                    \"type_id\": 1,\n                    \"type\": {\n                        \"label\": \"products.types.stock\",\n                        \"hint\": \"products.types.stock_hint\",\n                        \"value\": 1,\n                        \"color\": \"primary\",\n                        \"icon\": \"qr_code_scanner\",\n                        \"disable\": false\n                    },\n                    \"packing_instructions\": null,\n                    \"width\": \"0.00\",\n                    \"height\": \"0.00\",\n                    \"length\": \"0.00\",\n                    \"weight\": \"0.00000\",\n                    \"weight_gross\": \"0.00000\",\n                    \"weight_unit\": \"kg\",\n                    \"cubic_meter\": \"0.00\",\n                    \"price\": \"25.00000\",\n                    \"purchasing_price\": \"0.00000\",\n                    \"notes\": \"notes\",\n                    \"product_units\": [\n                        {\n                            \"id\": 7441,\n                            \"account_id\": 100,\n                            \"product_id\": 8718,\n                            \"unit_id\": 1,\n                            \"unit\": {\n                                \"id\": 1,\n                                \"name\": \"EACH\",\n                                \"symbol\": \"EA\",\n                                \"description\": \"Base Unit\",\n                                \"user_id\": 1,\n                                \"created_at\": \"2023-11-25T21:13:49+00:00\",\n                                \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n                            },\n                            \"print_sequence_number\": 1,\n                            \"multiple_of_each_unit\": 1,\n                            \"each_unit_value\": \"1.00000\",\n                            \"sku_barcode\": \"SKU-1XX\",\n                            \"ean_barcode\": null,\n                            \"upc_barcode\": null,\n                            \"user_id\": 4,\n                            \"created_at\": \"2024-03-24T15:24:06+00:00\",\n                            \"updated_at\": \"2024-03-31T11:38:02+01:00\"\n                        }\n                    ],\n                    \"external_id\": null,\n                    \"created_at\": \"2024-03-24T14:57:41+00:00\",\n                    \"updated_at\": \"2024-03-24T15:03:14+00:00\"\n                },\n                \"product_unit_id\": 7441,\n                \"product_unit\": {\n                    \"id\": 7441,\n                    \"account_id\": 100,\n                    \"product_id\": 8718,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2023-11-25T21:13:49+00:00\",\n                        \"updated_at\": \"2023-11-25T21:13:49+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"SKU-1XX\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"user_id\": 4,\n                    \"created_at\": \"2024-03-24T15:24:06+00:00\",\n                    \"updated_at\": \"2024-03-31T11:38:02+01:00\"\n                },\n                \"sku\": \"SKU-1XX\",\n                \"customer_pn\": null,\n                \"description\": null,\n                \"unit_selling_price\": \"25.00000\",\n                \"quantity\": 25,\n                \"quantity_allocated\": 0,\n                \"total_value\": \"625.00\",\n                \"total_tax_value\": \"0.00\",\n                \"unit_discount_percent\": \"0.00\",\n                \"total_discount_value\": \"0.00\",\n                \"requested_delivery_date\": null,\n                \"promised_delivery_date\": \"2024-03-25T00:00:00.000000Z\",\n                \"external_id\": null,\n                \"created_at\": \"2024-03-24T15:25:09+00:00\",\n                \"updated_at\": \"2024-04-03T09:56:45+01:00\"\n            }\n        ],\n        \"tags\": []\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"ed7518b6-b62e-41be-92b1-837fc3d78c82"},{"name":"/orders/:id","id":"f14b8fc4-3411-4fa1-a496-4c1e9af2a00f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"id\": 613,\n  \"account_id\": 100,\n  \"warehouse_id\": 1,\n  \"customer_id\": null,\n  \"customer\": null,\n  \"customer_plant_id\": null,\n  \"customer_plant\": null,\n  \"shipping_address_id\": null,\n  \"shipping_address\": null,\n  \"company_name\": \"Unify\",\n  \"title\": null,\n  \"full_name\": null,\n  \"phone\": null,\n  \"email\": null,\n  \"line_1\": \"Unit 1\",\n  \"line_2\": null,\n  \"line_3\": null,\n  \"city\": \"Daventry\",\n  \"post_code\": \"NN11 8NW\",\n  \"county\": null,\n  \"country\": \"GB\",\n  \"order_channel_id\": 1,\n  \"order_status_id\": 1,\n  \"bill_shipping_to_account\": null,\n  \"incoterms\": null,\n  \"document_number\": \"ORD-000184\",\n  \"document_number_ref\": \"EXT-ORD\",\n  \"tracking_number\": null,\n  \"packing_notes\": null,\n  \"delivery_notes\": null,\n  \"gift_message\": null,\n  \"vat_number\": null,\n  \"eori_number\": null,\n  \"pid_number\": null,\n  \"order_date\": \"2024-03-24T15:23:20+00:00\",\n  \"contact_document_number\": null,\n  \"requested_delivery_date\": null,\n  \"promised_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n  \"currency_id\": 1,\n  \"exchange_rate\": \"0.00000\",\n  \"subtotal_discount_value\": \"0.00\",\n  \"total_net_value\": \"250.00\",\n  \"total_tax_value\": \"0.00\",\n  \"total_gross_value\": \"250.00\",\n  \"weight_unit\": \"kg\",\n  \"weight_estimate\": 0,\n  \"weight_gross\": 0,\n  \"courier_service_id\": null,\n  \"courier_service\": null,\n  \"tracking_status_id\": null,\n  \"tracking_status\": null,\n  \"shipping_charge\": \"0.00\",\n  \"notes\": \"\",\n  \"is_b2b\": false,\n  \"has_bundle_products\": false,\n  \"external_id\": null,\n  \"part\": 1,\n  \"total_parts\": 1,\n  \"total_lines\": 0,\n  \"total_packages\": 0,\n  \"volumetric_weight\": \"0.00000\",\n  \"despatch_date\": null,\n  \"created_at\": \"2024-03-24T15:25:09+00:00\",\n  \"updated_at\": \"2024-03-24T15:25:09+00:00\",\n  \"order_lines\": [\n    {\n      \"id\": 372,\n      \"order_id\": 613,\n      \"print_sequence_number\": 1,\n      \"line_type\": 1,\n      \"product_id\": 8718,\n      \"product_unit_id\": 7441,\n      \"sku\": \"SKU-1XX\",\n      \"customer_pn\": null,\n      \"description\": null,\n      \"unit_selling_price\": \"25.00000\",\n      \"quantity\": 25,\n      \"quantity_allocated\": 0,\n      \"total_value\": \"250.00\",\n      \"total_tax_value\": \"0.00\",\n      \"unit_discount_percent\": \"0.00\",\n      \"total_discount_value\": \"0.00\",\n      \"requested_delivery_date\": null,\n      \"promised_delivery_date\": \"2024-03-25T00:00:00.000000Z\",\n      \"external_id\": null,\n      \"created_at\": \"2024-03-24T15:25:09+00:00\",\n      \"updated_at\": \"2024-03-24T15:25:09+00:00\"\n    }\n  ],\n  \"tags\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/orders/613","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["orders","613"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e55c478b-a653-4d65-93c5-32a9da23ac37","name":"/order/:id","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"id\": 613,\n  \"account_id\": 100,\n  \"warehouse_id\": 1,\n  \"customer_id\": null,\n  \"customer\": null,\n  \"customer_plant_id\": null,\n  \"customer_plant\": null,\n  \"shipping_address_id\": null,\n  \"shipping_address\": null,\n  \"company_name\": \"Unify\",\n  \"title\": null,\n  \"full_name\": null,\n  \"phone\": null,\n  \"email\": null,\n  \"line_1\": \"Unit 1\",\n  \"line_2\": null,\n  \"line_3\": null,\n  \"city\": \"Daventry\",\n  \"post_code\": \"NN11 8NW\",\n  \"county\": null,\n  \"country\": \"GB\",\n  \"order_channel_id\": 1,\n  \"order_status_id\": 1,\n  \"bill_shipping_to_account\": null,\n  \"incoterms\": null,\n  \"document_number\": \"ORD-000184\",\n  \"document_number_ref\": \"EXT-ORD\",\n  \"tracking_number\": null,\n  \"packing_notes\": null,\n  \"delivery_notes\": null,\n  \"gift_message\": null,\n  \"vat_number\": null,\n  \"eori_number\": null,\n  \"pid_number\": null,\n  \"order_date\": \"2024-03-24T15:23:20+00:00\",\n  \"contact_document_number\": null,\n  \"requested_delivery_date\": null,\n  \"promised_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n  \"currency_id\": 1,\n  \"exchange_rate\": \"0.00000\",\n  \"subtotal_discount_value\": \"0.00\",\n  \"total_net_value\": \"250.00\",\n  \"total_tax_value\": \"0.00\",\n  \"total_gross_value\": \"250.00\",\n  \"weight_unit\": \"kg\",\n  \"weight_estimate\": 0,\n  \"weight_gross\": 0,\n  \"courier_service_id\": null,\n  \"courier_service\": null,\n  \"tracking_status_id\": null,\n  \"tracking_status\": null,\n  \"shipping_charge\": \"0.00\",\n  \"notes\": \"\",\n  \"is_b2b\": false,\n  \"has_bundle_products\": false,\n  \"external_id\": null,\n  \"part\": 1,\n  \"total_parts\": 1,\n  \"total_lines\": 0,\n  \"total_packages\": 0,\n  \"volumetric_weight\": \"0.00000\",\n  \"despatch_date\": null,\n  \"created_at\": \"2024-03-24T15:25:09+00:00\",\n  \"updated_at\": \"2024-03-24T15:25:09+00:00\",\n  \"order_lines\": [\n    {\n      \"id\": 372,\n      \"order_id\": 613,\n      \"print_sequence_number\": 1,\n      \"line_type\": 1,\n      \"product_id\": 8718,\n      \"product_unit_id\": 7441,\n      \"sku\": \"SKU-1XX\",\n      \"customer_pn\": null,\n      \"description\": null,\n      \"unit_selling_price\": \"25.00000\",\n      \"quantity\": 25,\n      \"quantity_allocated\": 0,\n      \"total_value\": \"250.00\",\n      \"total_tax_value\": \"0.00\",\n      \"unit_discount_percent\": \"0.00\",\n      \"total_discount_value\": \"0.00\",\n      \"requested_delivery_date\": null,\n      \"promised_delivery_date\": \"2024-03-25T00:00:00.000000Z\",\n      \"external_id\": null,\n      \"created_at\": \"2024-03-24T15:25:09+00:00\",\n      \"updated_at\": \"2024-03-24T15:25:09+00:00\"\n    }\n  ],\n  \"tags\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/orders/613"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 613,\n        \"account_id\": 100,\n        \"warehouse_id\": 1,\n        \"customer_id\": null,\n        \"customer\": null,\n        \"customer_plant_id\": null,\n        \"company_name\": \"Unify\",\n        \"title\": null,\n        \"full_name\": null,\n        \"phone\": null,\n        \"email\": null,\n        \"line_1\": \"Unit 1\",\n        \"line_2\": null,\n        \"line_3\": null,\n        \"city\": \"Daventry\",\n        \"post_code\": \"NN11 8NW\",\n        \"county\": null,\n        \"country\": \"GB\",\n        \"order_channel_id\": 1,\n        \"order_channel\": {\n            \"label\": \"orders.channels.manual\",\n            \"hint\": \"orders.channels.manual_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"person\",\n            \"disable\": false\n        },\n        \"order_status_id\": 1,\n        \"order_status\": {\n            \"label\": \"orders.statuses.draft\",\n            \"hint\": \"orders.statuses.draft_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"edit\",\n            \"disable\": false\n        },\n        \"bill_shipping_to_account\": null,\n        \"incoterms\": null,\n        \"document_number\": \"ORD-000184\",\n        \"document_number_ref\": \"EXT-ORD\",\n        \"tracking_number\": null,\n        \"packing_notes\": null,\n        \"delivery_notes\": null,\n        \"gift_message\": null,\n        \"vat_number\": null,\n        \"eori_number\": null,\n        \"pid_number\": null,\n        \"order_date\": \"2024-03-24T15:23:20+00:00\",\n        \"contact_document_number\": null,\n        \"requested_delivery_date\": null,\n        \"promised_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n        \"currency_id\": 1,\n        \"exchange_rate\": \"0.00000\",\n        \"subtotal_discount_value\": \"0.00\",\n        \"total_net_value\": \"250.00\",\n        \"total_tax_value\": \"0.00\",\n        \"total_gross_value\": \"250.00\",\n        \"weight_unit\": \"kg\",\n        \"weight_estimate\": 0,\n        \"weight_gross\": 0,\n        \"courier_service_id\": null,\n        \"tracking_status_id\": null,\n        \"tracking_status\": null,\n        \"shipping_charge\": \"0.00\",\n        \"notes\": \"\",\n        \"is_b2b\": false,\n        \"has_bundle_products\": false,\n        \"external_id\": null,\n        \"part\": 1,\n        \"total_parts\": 1,\n        \"total_lines\": 0,\n        \"total_packages\": 0,\n        \"volumetric_weight\": \"0.00000\",\n        \"despatch_date\": null,\n        \"created_at\": \"2024-03-24T15:25:09+00:00\",\n        \"updated_at\": \"2024-03-24T15:48:16+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"f14b8fc4-3411-4fa1-a496-4c1e9af2a00f"},{"name":"/orders/:id","id":"deeab2c7-cb11-4d89-b05a-b8c19c4b6d4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/orders/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["orders","1"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"deeab2c7-cb11-4d89-b05a-b8c19c4b6d4b"},{"name":"/orders","id":"73ed7f8f-33a8-4bee-b9be-164cbfd29a8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"account_id\": 100,\n    \"warehouse_id\": 1,\n    \"customer_id\": null,\n    \"customer_plant_id\": null,\n    \"company_name\": \"Unify\",\n    \"title\": null,\n    \"full_name\": null,\n    \"phone\": null,\n    \"email\": null,\n    \"line_1\": \"Unit 1\",\n    \"line_2\": null,\n    \"line_3\": null,\n    \"city\": \"Daventry\",\n    \"post_code\": \"NN11 8NW\",\n    \"county\": null,\n    \"country\": \"GB\",\n    \"order_channel_id\": 1,\n    \"on_hold_status_id\": 1,\n    \"bill_shipping_to_account\": null,\n    \"incoterms\": null,\n    \"document_number_ref\": \"EXT-ORD-333\",\n    \"tracking_number\": null,\n    \"packing_notes\": null,\n    \"delivery_notes\": null,\n    \"gift_message\": null,\n    \"vat_number\": null,\n    \"eori_number\": null,\n    \"pid_number\": null,\n    \"contact_document_number\": \"EXT-PO-321\",\n    \"requested_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n    \"subtotal_discount_value\": \"0.00\",\n    \"courier_service_id\": null,\n    \"shipping_method\": null,\n    \"notes\": \"\",\n    \"is_b2b\": false,\n    \"external_id\": \"EXT-ID-333\",\n    \"order_lines\": [\n        {\n            \"sku\": \"SKU-1XX\",\n            \"quantity\": 10,\n            \"external_id\": \"LINE-EXT-333-1\"\n        },\n        {\n            \"line_type\": 1,\n            \"product_id\": 8718,\n            \"product_unit_id\": 7441,\n            \"sku\": \"SKU-1XX\",\n            \"customer_pn\": null,\n            \"description\": null,\n            \"quantity\": 25,\n            \"external_id\": \"LINE-EXT-333-2\"\n        }\n    ],\n    \"tags\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/orders","description":"<p><strong>Order Resource</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account_id</td>\n<td>YES</td>\n<td>Order Account</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>YES</td>\n<td>Order Warehouse, order can be fulfilled only by this warehouse</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>customer_plant_id</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>title</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>email</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>line_1</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>line_2</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>line_3</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>city</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>post_code</td>\n<td>YES</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>county</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>YES</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>vat_number</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>eori_number</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>pid_number</td>\n<td>NO</td>\n<td>Delivery Address</td>\n</tr>\n<tr>\n<td>order_channel_id</td>\n<td>NO</td>\n<td>See Reference (both value or description can be passed), defaults to Manual</td>\n</tr>\n<tr>\n<td>bill_shipping_to_account</td>\n<td>NO</td>\n<td>Carrier Account Number Shipment, Bill shipment to 3rd Party Account</td>\n</tr>\n<tr>\n<td>incoterms</td>\n<td>NO</td>\n<td>See Reference</td>\n</tr>\n<tr>\n<td>document_number</td>\n<td>NO</td>\n<td>Unique Unify Order Refeference</td>\n</tr>\n<tr>\n<td>document_number_ref</td>\n<td>YES</td>\n<td>Order Number, must be unique per Account</td>\n</tr>\n<tr>\n<td>contact_document_number</td>\n<td>NO</td>\n<td>Ext Order Reference, ie PO No</td>\n</tr>\n<tr>\n<td>currency_id</td>\n<td>NO</td>\n<td>Order Currency, defaults to Account Currency. Pass either <code>currency_id</code> or <code>currency</code> in ISO 4217 (ie EUR)</td>\n</tr>\n<tr>\n<td>packing_notes</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>delivery_notes</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>gift_message</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>requested_delivery_date</td>\n<td>YES</td>\n<td>Requested delivery date - ISO 8601</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>NO</td>\n<td>Order notes</td>\n</tr>\n<tr>\n<td>is_b2b</td>\n<td>NO</td>\n<td>Default is false</td>\n</tr>\n<tr>\n<td>external_id</td>\n<td>NO</td>\n<td>External Order ID (uuid, int)</td>\n</tr>\n<tr>\n<td>tracking_number</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>courier_service_id</td>\n<td>NO</td>\n<td></td>\n</tr>\n<tr>\n<td>shipping_method</td>\n<td>NO</td>\n<td>Your shipping method, a map must exist in Unify</td>\n</tr>\n<tr>\n<td>order_lines</td>\n<td>YES</td>\n<td>At least one line is required. See below resource</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Order Line Resource</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>line_type</td>\n<td>NO</td>\n<td>Defaults to Product, see Reference</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>NO</td>\n<td>Product SKU</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>YES</td>\n<td>Required when <code>sku</code> is not passed</td>\n</tr>\n<tr>\n<td>product_unit_id</td>\n<td>YES</td>\n<td>Required when <code>sku</code> is not passed. When SKU is passed will default to first unit (EA)</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>YES</td>\n<td>Quantity</td>\n</tr>\n<tr>\n<td>unit_selling_price</td>\n<td>NO</td>\n<td>Line Price</td>\n</tr>\n<tr>\n<td>customer_pn</td>\n<td>NO</td>\n<td>Customer Part Number, useful when Customer on Order uses a different PN for SKU</td>\n</tr>\n<tr>\n<td>description</td>\n<td>NO</td>\n<td>Line notes</td>\n</tr>\n<tr>\n<td>external_id</td>\n<td>NO</td>\n<td>External Order Line ID (uuid, int)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["orders"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"28b19498-5b01-47d5-a647-52524d3d5016","name":"/orders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"account_id\": 100,\n  \"warehouse_id\": 1,\n  \"customer_id\": null,\n  \"customer_plant_id\": null,\n  \"company_name\": \"Unify\",\n  \"title\": null,\n  \"full_name\": null,\n  \"phone\": null,\n  \"email\": null,\n  \"line_1\": \"Unit 1\",\n  \"line_2\": null,\n  \"line_3\": null,\n  \"city\": \"Daventry\",\n  \"post_code\": \"NN11 8NW\",\n  \"county\": null,\n  \"country\": \"GB\",\n  \"order_channel_id\": 1,\n  \"bill_shipping_to_account\": null,\n  \"incoterms\": null,\n  \"document_number_ref\": \"EXT-ORD-333\",\n  \"tracking_number\": null,\n  \"packing_notes\": null,\n  \"delivery_notes\": null,\n  \"gift_message\": null,\n  \"vat_number\": null,\n  \"eori_number\": null,\n  \"pid_number\": null,\n  \"contact_document_number\": \"EXT-PO-321\",\n  \"requested_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n  \"subtotal_discount_value\": \"0.00\",\n  \"courier_service_id\": null,\n  \"notes\": \"\",\n  \"is_b2b\": false,\n  \"external_id\": \"EXT-ID-333\",\n  \"order_lines\": [\n    {\n      \"sku\": \"SKU-1XX\",\n      \"quantity\": 10,\n      \"external_id\": \"LINE-EXT-333-1\"\n    },\n    {\n      \"line_type\": 1,\n      \"product_id\": 8718,\n      \"product_unit_id\": 7441,\n      \"sku\": \"SKU-1XX\",\n      \"customer_pn\": null,\n      \"description\": null,\n      \"quantity\": 25,\n      \"external_id\": \"LINE-EXT-333-2\"\n    }\n  ],\n  \"tags\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 621,\n        \"account_id\": 100,\n        \"account\": {\n            \"id\": 100,\n            \"name\": \"Demo Account\",\n            \"master_account_id\": null,\n            \"currency_id\": 1,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"ni_eori_number\": null,\n            \"ioss_number\": null,\n            \"ppi_licence_number\": null,\n            \"brand_name\": null,\n            \"account_code\": \"DA\",\n            \"short_name\": null,\n            \"notes\": \"\",\n            \"incoterms\": null,\n            \"created_at\": \"2024-03-24T13:10:38+00:00\",\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n        },\n        \"warehouse_id\": 1,\n        \"customer_id\": null,\n        \"customer\": null,\n        \"customer_plant_id\": null,\n        \"company_name\": \"Unify\",\n        \"title\": null,\n        \"full_name\": null,\n        \"phone\": null,\n        \"email\": null,\n        \"line_1\": \"Unit 1\",\n        \"line_2\": null,\n        \"line_3\": null,\n        \"city\": \"Daventry\",\n        \"post_code\": \"NN11 8NW\",\n        \"county\": null,\n        \"country\": \"GB\",\n        \"order_channel_id\": 1,\n        \"order_channel\": {\n            \"label\": \"orders.channels.manual\",\n            \"hint\": \"orders.channels.manual_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"person\",\n            \"disable\": false\n        },\n        \"order_status_id\": 1,\n        \"order_status\": {\n            \"label\": \"orders.statuses.draft\",\n            \"hint\": \"orders.statuses.draft_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"edit\",\n            \"disable\": false\n        },\n        \"on_hold_status_id\": 1,\n        \"on_hold_status\": {\n            \"label\": \"orders.on_hold_statuses.not_on_hold\",\n            \"hint\": \"orders.on_hold_statuses.not_on_hold_hint\",\n            \"value\": 1,\n            \"color\": \"black\",\n            \"icon\": \"check\",\n            \"disable\": false\n        },\n        \"bill_shipping_to_account\": null,\n        \"incoterms\": null,\n        \"document_number\": \"ORD-000192\",\n        \"document_number_ref\": \"EXT-ORD-333\",\n        \"tracking_number\": null,\n        \"packing_notes\": null,\n        \"delivery_notes\": null,\n        \"gift_message\": null,\n        \"vat_number\": null,\n        \"eori_number\": null,\n        \"pid_number\": null,\n        \"order_date\": \"2024-03-31T11:40:04+01:00\",\n        \"contact_document_number\": \"EXT-PO-321\",\n        \"requested_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n        \"promised_delivery_date\": \"2024-03-31T12:40:04+01:00\",\n        \"currency_id\": 1,\n        \"exchange_rate\": \"0.00000\",\n        \"subtotal_discount_value\": \"0.00\",\n        \"total_net_value\": \"0.00\",\n        \"total_tax_value\": \"0.00\",\n        \"total_gross_value\": \"0.00\",\n        \"weight_unit\": \"kg\",\n        \"weight_estimate\": 0,\n        \"weight_gross\": 0,\n        \"courier_service_id\": null,\n        \"tracking_status_id\": null,\n        \"tracking_status\": null,\n        \"shipping_charge\": \"0.00\",\n        \"notes\": \"\",\n        \"is_b2b\": false,\n        \"has_bundle_products\": false,\n        \"external_id\": \"EXT-ID-333\",\n        \"part\": 1,\n        \"total_parts\": 1,\n        \"total_lines\": 0,\n        \"total_packages\": 0,\n        \"volumetric_weight\": \"0.00000\",\n        \"despatch_date\": null,\n        \"created_at\": \"2024-03-31T12:40:04+01:00\",\n        \"updated_at\": \"2024-03-31T12:40:04+01:00\",\n        \"order_lines\": [\n            {\n                \"id\": 382,\n                \"order_id\": 621,\n                \"print_sequence_number\": 1,\n                \"line_type\": 1,\n                \"product_id\": 8718,\n                \"product_unit_id\": 7441,\n                \"sku\": \"SKU-1XX\",\n                \"customer_pn\": null,\n                \"description\": null,\n                \"unit_selling_price\": \"0.00000\",\n                \"quantity\": 10,\n                \"quantity_allocated\": 0,\n                \"total_value\": \"0.00\",\n                \"total_tax_value\": \"0.00\",\n                \"unit_discount_percent\": \"0.00\",\n                \"total_discount_value\": \"0.00\",\n                \"requested_delivery_date\": \"2024-03-25T00:00:00.000000Z\",\n                \"promised_delivery_date\": null,\n                \"external_id\": \"LINE-EXT-333-1\",\n                \"created_at\": \"2024-03-31T12:40:04+01:00\",\n                \"updated_at\": \"2024-03-31T12:40:04+01:00\"\n            },\n            {\n                \"id\": 383,\n                \"order_id\": 621,\n                \"print_sequence_number\": 2,\n                \"line_type\": 1,\n                \"product_id\": 8718,\n                \"product_unit_id\": 7441,\n                \"sku\": \"SKU-1XX\",\n                \"customer_pn\": null,\n                \"description\": null,\n                \"unit_selling_price\": \"0.00000\",\n                \"quantity\": 25,\n                \"quantity_allocated\": 0,\n                \"total_value\": \"0.00\",\n                \"total_tax_value\": \"0.00\",\n                \"unit_discount_percent\": \"0.00\",\n                \"total_discount_value\": \"0.00\",\n                \"requested_delivery_date\": \"2024-03-25T00:00:00.000000Z\",\n                \"promised_delivery_date\": null,\n                \"external_id\": \"LINE-EXT-333-2\",\n                \"created_at\": \"2024-03-31T12:40:04+01:00\",\n                \"updated_at\": \"2024-03-31T12:40:04+01:00\"\n            }\n        ]\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"73ed7f8f-33a8-4bee-b9be-164cbfd29a8b"}],"id":"962770e8-4e30-4cfe-8c4b-c5406787c382","_postman_id":"962770e8-4e30-4cfe-8c4b-c5406787c382","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Order Returns","item":[{"name":"Order Return Reasons","item":[{"name":"/order-return-reasons","id":"4571a14e-c280-4955-96da-6d5f3999e934","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-return-reasons"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9f3e87f5-ce41-42cd-9ed8-b32048416a6e","name":"/order-return-reasons","originalRequest":{"method":"GET","header":[],"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"account_id\": 4,\n            \"name\": \"Wrong Size\",\n            \"stock_action_id\": 1,\n            \"stock_action\": {\n                \"label\": \"order_return_reasons.stock_actions.available\",\n                \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                \"value\": 1,\n                \"color\": \"positive\",\n                \"icon\": \"check\",\n                \"disable\": false\n            },\n            \"is_active\": true,\n            \"created_at\": \"2025-04-15T11:10:02+01:00\",\n            \"updated_at\": \"2025-04-15T13:00:22+01:00\",\n            \"user_id\": 2\n        },\n        {\n            \"id\": 1,\n            \"account_id\": null,\n            \"name\": \"Faulty\",\n            \"stock_action_id\": 1,\n            \"stock_action\": {\n                \"label\": \"order_return_reasons.stock_actions.available\",\n                \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                \"value\": 1,\n                \"color\": \"positive\",\n                \"icon\": \"check\",\n                \"disable\": false\n            },\n            \"is_active\": true,\n            \"created_at\": \"2025-04-10T15:35:54+01:00\",\n            \"updated_at\": \"2025-04-10T15:35:54+01:00\",\n            \"user_id\": 2\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/order-return-reasons\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"4571a14e-c280-4955-96da-6d5f3999e934"},{"name":"/order-return-reasons/:id","id":"1dbc28e0-bbe1-48ea-9348-69744c670831","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-return-reasons","2"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9695aa46-cfc7-4367-8fc2-90b43c5cf9a7","name":"/order-return-reasons/:id","originalRequest":{"method":"GET","header":[],"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"account_id\": 4,\n        \"account\": {\n            \"id\": 4,\n            \"name\": \"Brand Ha\",\n            \"account_code\": \"Brand Ha\"\n        },\n        \"name\": \"Wrong Size\",\n        \"stock_action_id\": 1,\n        \"stock_action\": {\n            \"label\": \"order_return_reasons.stock_actions.available\",\n            \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n            \"value\": 1,\n            \"color\": \"positive\",\n            \"icon\": \"check\",\n            \"disable\": false\n        },\n        \"is_active\": true,\n        \"created_at\": \"2025-04-15T11:10:02+01:00\",\n        \"updated_at\": \"2025-04-15T13:00:22+01:00\",\n        \"user_id\": 2\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"1dbc28e0-bbe1-48ea-9348-69744c670831"},{"name":"/order-return-reasons/:id","id":"305e75d2-7981-44b9-a779-78102083d4a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 2,\n    \"account_id\": 4,\n    \"name\": \"Wrong Size L\",\n    \"stock_action_id\": 1,\n    \"is_active\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-return-reasons","2"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"34dae3a0-e857-43de-941e-589fad6ad5e4","name":"/order-return-reasons/:id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 2,\n    \"account_id\": 4,\n    \"name\": \"Wrong Size L\",\n    \"stock_action_id\": 1,\n    \"is_active\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"account_id\": 4,\n        \"name\": \"Wrong Size L\",\n        \"stock_action_id\": 1,\n        \"stock_action\": {\n            \"label\": \"order_return_reasons.stock_actions.available\",\n            \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n            \"value\": 1,\n            \"color\": \"positive\",\n            \"icon\": \"check\",\n            \"disable\": false\n        },\n        \"is_active\": true,\n        \"created_at\": \"2025-04-15T11:10:02+01:00\",\n        \"updated_at\": \"2025-04-15T13:25:20+01:00\",\n        \"user_id\": 2\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"305e75d2-7981-44b9-a779-78102083d4a2"},{"name":"/order-return-reasons/:id","id":"856ce10b-637c-4b15-8569-38e7dafeb746","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-return-reasons","2"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"73a71164-3db4-4205-9962-7744888626c1","name":"/order-return-reasons/:id","originalRequest":{"method":"DELETE","header":[],"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null\n}"}],"_postman_id":"856ce10b-637c-4b15-8569-38e7dafeb746"},{"name":"/order-return-reasons","id":"e58cd1dc-e353-4b25-8423-1394ba6d0324","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account_id\": 4,\n    \"name\": \"Wrong Item\",\n    \"stock_action_id\": 1,\n    \"is_active\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons","description":"<p><strong>Order Return Reason Resource</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account_id</td>\n<td>NO</td>\n<td>Reason can only be used by this Account</td>\n</tr>\n<tr>\n<td>name</td>\n<td>YES</td>\n<td>Reason Name</td>\n</tr>\n<tr>\n<td>stock_action_id</td>\n<td>YES</td>\n<td>Stock Status once Return has been Completed:  <br />1 - Available  <br />2 - On Hold  <br />3 - Write Off</td>\n</tr>\n<tr>\n<td>is_active</td>\n<td>YES</td>\n<td>Reason status</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-return-reasons"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9553ee01-6dd9-48f4-ae1e-7f0d685907b7","name":"/order-return-reasons/:id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account_id\": 4,\n    \"name\": \"Wrong Item\",\n    \"stock_action_id\": 1,\n    \"is_active\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-return-reasons/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"account_id\": 4,\n        \"name\": \"Wrong Item\",\n        \"stock_action_id\": 1,\n        \"stock_action\": {\n            \"label\": \"order_return_reasons.stock_actions.available\",\n            \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n            \"value\": 1,\n            \"color\": \"positive\",\n            \"icon\": \"check\",\n            \"disable\": false\n        },\n        \"is_active\": true,\n        \"created_at\": \"2025-04-15T13:26:43+01:00\",\n        \"updated_at\": \"2025-04-15T13:26:43+01:00\",\n        \"user_id\": 2\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"e58cd1dc-e353-4b25-8423-1394ba6d0324"}],"id":"34bb322e-0908-4436-a8ba-8adfbe532933","_postman_id":"34bb322e-0908-4436-a8ba-8adfbe532933","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"/order-returns","id":"8ec0265e-7194-499d-a1f1-aba0d33c58d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/order-returns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-returns"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6e767612-5615-4aac-b523-fa5c3475defe","name":"/order-returns","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/order-returns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"account_id\": 1,\n            \"warehouse_id\": 1,\n            \"order_id\": 15,\n            \"exchange_order_id\": null,\n            \"courier_service_id\": 1,\n            \"tracking_number\": null,\n            \"order_return_reason_id\": 2,\n            \"company_name\": null,\n            \"title\": null,\n            \"full_name\": \"x\",\n            \"phone\": null,\n            \"email\": null,\n            \"line_1\": \"1\",\n            \"line_2\": null,\n            \"line_3\": null,\n            \"city\": \"x\",\n            \"post_code\": \"NN2\",\n            \"county\": \"x\",\n            \"country\": \"GB\",\n            \"document_number_ref\": \"REF2\",\n            \"reference\": null,\n            \"status_id\": 1,\n            \"status\": {\n                \"label\": \"order_returns.statuses.pending\",\n                \"hint\": \"order_returns.statuses.pending_hint\",\n                \"value\": 1,\n                \"color\": \"primary\",\n                \"icon\": \"pending_actions\",\n                \"disable\": false\n            },\n            \"notes\": null,\n            \"external_id\": null,\n            \"refunded_at\": null,\n            \"created_at\": \"2025-04-15T11:11:17+01:00\",\n            \"updated_at\": \"2025-04-15T11:11:17+01:00\",\n            \"user_id\": 2\n        },\n        {\n            \"id\": 1,\n            \"account_id\": 1,\n            \"warehouse_id\": 1,\n            \"order_id\": 14,\n            \"exchange_order_id\": null,\n            \"courier_service_id\": 1,\n            \"tracking_number\": null,\n            \"order_return_reason_id\": 1,\n            \"company_name\": null,\n            \"title\": null,\n            \"full_name\": \"x\",\n            \"phone\": null,\n            \"email\": null,\n            \"line_1\": \"1\",\n            \"line_2\": null,\n            \"line_3\": null,\n            \"city\": \"Daventry\",\n            \"post_code\": \"NN2\",\n            \"county\": null,\n            \"country\": \"GB\",\n            \"document_number_ref\": \"ref\",\n            \"reference\": null,\n            \"status_id\": 2,\n            \"status\": {\n                \"label\": \"order_returns.statuses.completed\",\n                \"hint\": \"order_returns.statuses.completed_hint\",\n                \"value\": 2,\n                \"color\": \"positive\",\n                \"icon\": \"done\",\n                \"disable\": false\n            },\n            \"notes\": null,\n            \"external_id\": null,\n            \"refunded_at\": null,\n            \"created_at\": \"2025-04-15T11:02:18+01:00\",\n            \"updated_at\": \"2025-04-15T11:10:40+01:00\",\n            \"user_id\": 2\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unifywms-staging.com/api/v1/order-returns\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"8ec0265e-7194-499d-a1f1-aba0d33c58d1"},{"name":"/order-returns/:id","id":"0933abc0-22f3-4ec7-b0ff-6b5d7483040c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/order-returns/613","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-returns","613"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6eae5c13-4836-4368-8e84-0c99cdd55f4c","name":"/orders/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/order-returns/613"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"account_id\": 1,\n        \"account\": {\n            \"id\": 1,\n            \"name\": \"Fidelity\"\n        },\n        \"warehouse_id\": 1,\n        \"warehouse\": {\n            \"id\": 1,\n            \"name\": \"Fidelity-WH\"\n        },\n        \"order_id\": 15,\n        \"order\": {\n            \"id\": 15,\n            \"document_number\": \"ORD-000002\",\n            \"document_number_ref\": \"ref2\",\n            \"notes\": \"\"\n        },\n        \"exchange_order_id\": null,\n        \"exchange_order\": null,\n        \"courier_service_id\": 1,\n        \"courier_service\": {\n            \"id\": 1,\n            \"name\": \"Collection Service\"\n        },\n        \"tracking_number\": null,\n        \"order_return_reason_id\": 2,\n        \"order_return_reason\": {\n            \"id\": 2,\n            \"account_id\": null,\n            \"name\": \"Wrong Size\",\n            \"stock_action_id\": 1,\n            \"stock_action\": {\n                \"label\": \"order_return_reasons.stock_actions.available\",\n                \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                \"value\": 1,\n                \"color\": \"positive\",\n                \"icon\": \"check\",\n                \"disable\": false\n            },\n            \"is_active\": true,\n            \"created_at\": \"2025-04-15T11:10:02+01:00\",\n            \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n            \"user_id\": 2\n        },\n        \"company_name\": null,\n        \"title\": null,\n        \"full_name\": \"x\",\n        \"phone\": null,\n        \"email\": null,\n        \"line_1\": \"1\",\n        \"line_2\": null,\n        \"line_3\": null,\n        \"city\": \"x\",\n        \"post_code\": \"NN2\",\n        \"county\": \"x\",\n        \"country\": \"GB\",\n        \"document_number_ref\": \"REF2\",\n        \"reference\": null,\n        \"status_id\": 1,\n        \"status\": {\n            \"label\": \"order_returns.statuses.pending\",\n            \"hint\": \"order_returns.statuses.pending_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"pending_actions\",\n            \"disable\": false\n        },\n        \"notes\": null,\n        \"external_id\": null,\n        \"refunded_at\": null,\n        \"created_at\": \"2025-04-15T11:11:17+01:00\",\n        \"updated_at\": \"2025-04-15T11:11:17+01:00\",\n        \"user_id\": 2,\n        \"user\": {\n            \"id\": 2,\n            \"username\": \"lxs\"\n        },\n        \"order_return_lines\": [\n            {\n                \"id\": 3,\n                \"order_return_id\": 2,\n                \"print_sequence_number\": 1,\n                \"product_id\": 5,\n                \"product\": {\n                    \"id\": 5,\n                    \"sku\": \"TOTE\",\n                    \"name\": \"Tote Box\"\n                },\n                \"product_unit_id\": 1,\n                \"product_unit\": {\n                    \"id\": 1,\n                    \"account_id\": 1,\n                    \"product_id\": 5,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2025-03-28T16:44:27+00:00\",\n                        \"updated_at\": \"2025-03-28T16:44:27+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"TOTE\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"is_active\": true,\n                    \"user_id\": 2,\n                    \"created_at\": \"2025-04-01T12:20:24+01:00\",\n                    \"updated_at\": \"2025-04-01T12:20:24+01:00\"\n                },\n                \"quantity_expected\": 5,\n                \"quantity_received\": 5,\n                \"order_return_reason_id\": 2,\n                \"order_return_reason\": {\n                    \"id\": 2,\n                    \"account_id\": null,\n                    \"name\": \"Wrong Size\",\n                    \"stock_action_id\": 1,\n                    \"stock_action\": {\n                        \"label\": \"order_return_reasons.stock_actions.available\",\n                        \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": \"check\",\n                        \"disable\": false\n                    },\n                    \"is_active\": true,\n                    \"created_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"user_id\": 2\n                },\n                \"customer_action_id\": 1,\n                \"customer_action\": {\n                    \"label\": \"order_returns.customer_actions.none\",\n                    \"hint\": \"order_returns.customer_actions.none_hint\",\n                    \"value\": 1,\n                    \"color\": \"primary\",\n                    \"icon\": null,\n                    \"disable\": false\n                },\n                \"traceable_products\": [\n                    {\n                        \"lot_no\": null,\n                        \"serial\": null,\n                        \"batch_id\": null,\n                        \"quantity\": 5,\n                        \"fifo_date\": \"2025-04-01T13:22:11+01:00\",\n                        \"currency_id\": null,\n                        \"expiry_date\": null,\n                        \"grn_line_id\": 1,\n                        \"supplier_id\": null,\n                        \"duty_net_each\": 0,\n                        \"purchasing_price\": 0,\n                        \"country_of_origin\": null,\n                        \"export_customs_ref\": null,\n                        \"import_customs_ref\": null\n                    }\n                ],\n                \"notes\": null,\n                \"external_id\": null,\n                \"created_at\": \"2025-04-15T11:11:17+01:00\",\n                \"updated_at\": \"2025-04-15T11:11:17+01:00\"\n            },\n            {\n                \"id\": 4,\n                \"order_return_id\": 2,\n                \"print_sequence_number\": 2,\n                \"product_id\": 5,\n                \"product\": {\n                    \"id\": 5,\n                    \"sku\": \"TOTE\",\n                    \"name\": \"Tote Box\"\n                },\n                \"product_unit_id\": 1,\n                \"product_unit\": {\n                    \"id\": 1,\n                    \"account_id\": 1,\n                    \"product_id\": 5,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2025-03-28T16:44:27+00:00\",\n                        \"updated_at\": \"2025-03-28T16:44:27+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"TOTE\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"is_active\": true,\n                    \"user_id\": 2,\n                    \"created_at\": \"2025-04-01T12:20:24+01:00\",\n                    \"updated_at\": \"2025-04-01T12:20:24+01:00\"\n                },\n                \"quantity_expected\": 8,\n                \"quantity_received\": 8,\n                \"order_return_reason_id\": 1,\n                \"order_return_reason\": {\n                    \"id\": 1,\n                    \"account_id\": null,\n                    \"name\": \"Faulty\",\n                    \"stock_action_id\": 1,\n                    \"stock_action\": {\n                        \"label\": \"order_return_reasons.stock_actions.available\",\n                        \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": \"check\",\n                        \"disable\": false\n                    },\n                    \"is_active\": true,\n                    \"created_at\": \"2025-04-10T15:35:54+01:00\",\n                    \"updated_at\": \"2025-04-10T15:35:54+01:00\",\n                    \"user_id\": 2\n                },\n                \"customer_action_id\": 3,\n                \"customer_action\": {\n                    \"label\": \"order_returns.customer_actions.resend\",\n                    \"hint\": \"order_returns.customer_actions.resend_hint\",\n                    \"value\": 3,\n                    \"color\": \"success\",\n                    \"icon\": null,\n                    \"disable\": false\n                },\n                \"traceable_products\": [\n                    {\n                        \"lot_no\": null,\n                        \"serial\": null,\n                        \"batch_id\": null,\n                        \"quantity\": 8,\n                        \"fifo_date\": \"2025-04-01T13:22:11+01:00\",\n                        \"currency_id\": null,\n                        \"expiry_date\": null,\n                        \"grn_line_id\": 1,\n                        \"supplier_id\": null,\n                        \"duty_net_each\": 0,\n                        \"purchasing_price\": 0,\n                        \"country_of_origin\": null,\n                        \"export_customs_ref\": null,\n                        \"import_customs_ref\": null\n                    }\n                ],\n                \"notes\": null,\n                \"external_id\": null,\n                \"created_at\": \"2025-04-15T11:11:17+01:00\",\n                \"updated_at\": \"2025-04-15T11:11:17+01:00\"\n            }\n        ],\n        \"tags\": []\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"0933abc0-22f3-4ec7-b0ff-6b5d7483040c"},{"name":"/order-returns/:id","id":"c739cbe1-4328-486c-8676-61c96f7df1c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"id\": 2,\n    \"account_id\": 1,\n    \"warehouse_id\": 1,\n    \"order_id\": 15,\n    \"exchange_order_id\": null,\n    \"exchange_order\": null,\n    \"courier_service_id\": 1,\n    \"tracking_number\": null,\n    \"order_return_reason_id\": 2,\n    \"company_name\": null,\n    \"title\": null,\n    \"full_name\": \"x\",\n    \"phone\": null,\n    \"email\": null,\n    \"line_1\": \"1\",\n    \"line_2\": null,\n    \"line_3\": null,\n    \"city\": \"x\",\n    \"post_code\": \"NN2\",\n    \"county\": \"x\",\n    \"country\": \"GB\",\n    \"document_number_ref\": \"REF2\",\n    \"reference\": \"RTN-156666\",\n    \"status_id\": 1,\n    \"notes\": null,\n    \"external_id\": null,\n    \"refunded_at\": null,\n    \"created_at\": \"2025-04-15T11:11:17+01:00\",\n    \"updated_at\": \"2025-04-15T11:11:17+01:00\",\n    \"user_id\": 2,\n    \"order_return_lines\": [\n        {\n            \"id\": 3,\n            \"order_return_id\": 2,\n            \"print_sequence_number\": 1,\n            \"product_id\": 5,\n            \"product_unit_id\": 1,\n            \"quantity_expected\": 5,\n            \"quantity_received\": 5,\n            \"order_return_reason_id\": 2,\n            \"customer_action_id\": 1,\n            \"traceable_products\": [],\n            \"notes\": null,\n            \"external_id\": null,\n            \"created_at\": \"2025-04-15T11:11:17+01:00\",\n            \"updated_at\": \"2025-04-15T11:11:17+01:00\"\n        },\n        {\n            \"id\": 4,\n            \"order_return_id\": 2,\n            \"print_sequence_number\": 2,\n            \"product_id\": 5,\n            \"product_unit_id\": 1,\n            \"quantity_expected\": 8,\n            \"quantity_received\": 8,\n            \"order_return_reason_id\": 1,\n            \"customer_action_id\": 3,\n            \"traceable_products\": [],\n            \"notes\": null,\n            \"external_id\": null,\n            \"created_at\": \"2025-04-15T11:11:17+01:00\",\n            \"updated_at\": \"2025-04-15T11:11:17+01:00\"\n        }\n    ],\n    \"tags\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-returns/613","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-returns","613"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"92b714b5-8978-48d7-9623-cb6b038c7df2","name":"/order-returns/:id","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n  \"id\": 613,\n  \"account_id\": 100,\n  \"warehouse_id\": 1,\n  \"customer_id\": null,\n  \"customer\": null,\n  \"customer_plant_id\": null,\n  \"customer_plant\": null,\n  \"shipping_address_id\": null,\n  \"shipping_address\": null,\n  \"company_name\": \"Unify\",\n  \"title\": null,\n  \"full_name\": null,\n  \"phone\": null,\n  \"email\": null,\n  \"line_1\": \"Unit 1\",\n  \"line_2\": null,\n  \"line_3\": null,\n  \"city\": \"Daventry\",\n  \"post_code\": \"NN11 8NW\",\n  \"county\": null,\n  \"country\": \"GB\",\n  \"order_channel_id\": 1,\n  \"order_status_id\": 1,\n  \"bill_shipping_to_account\": null,\n  \"incoterms\": null,\n  \"document_number\": \"ORD-000184\",\n  \"document_number_ref\": \"EXT-ORD\",\n  \"tracking_number\": null,\n  \"packing_notes\": null,\n  \"delivery_notes\": null,\n  \"gift_message\": null,\n  \"vat_number\": null,\n  \"eori_number\": null,\n  \"pid_number\": null,\n  \"order_date\": \"2024-03-24T15:23:20+00:00\",\n  \"contact_document_number\": null,\n  \"requested_delivery_date\": null,\n  \"promised_delivery_date\": \"2024-03-25T15:23:20+00:00\",\n  \"currency_id\": 1,\n  \"exchange_rate\": \"0.00000\",\n  \"subtotal_discount_value\": \"0.00\",\n  \"total_net_value\": \"250.00\",\n  \"total_tax_value\": \"0.00\",\n  \"total_gross_value\": \"250.00\",\n  \"weight_unit\": \"kg\",\n  \"weight_estimate\": 0,\n  \"weight_gross\": 0,\n  \"courier_service_id\": null,\n  \"courier_service\": null,\n  \"tracking_status_id\": null,\n  \"tracking_status\": null,\n  \"shipping_charge\": \"0.00\",\n  \"notes\": \"\",\n  \"is_b2b\": false,\n  \"has_bundle_products\": false,\n  \"external_id\": null,\n  \"part\": 1,\n  \"total_parts\": 1,\n  \"total_lines\": 0,\n  \"total_packages\": 0,\n  \"volumetric_weight\": \"0.00000\",\n  \"despatch_date\": null,\n  \"created_at\": \"2024-03-24T15:25:09+00:00\",\n  \"updated_at\": \"2024-03-24T15:25:09+00:00\",\n  \"order_lines\": [\n    {\n      \"id\": 372,\n      \"order_id\": 613,\n      \"print_sequence_number\": 1,\n      \"line_type\": 1,\n      \"product_id\": 8718,\n      \"product_unit_id\": 7441,\n      \"sku\": \"SKU-1XX\",\n      \"customer_pn\": null,\n      \"description\": null,\n      \"unit_selling_price\": \"25.00000\",\n      \"quantity\": 25,\n      \"quantity_allocated\": 0,\n      \"total_value\": \"250.00\",\n      \"total_tax_value\": \"0.00\",\n      \"unit_discount_percent\": \"0.00\",\n      \"total_discount_value\": \"0.00\",\n      \"requested_delivery_date\": null,\n      \"promised_delivery_date\": \"2024-03-25T00:00:00.000000Z\",\n      \"external_id\": null,\n      \"created_at\": \"2024-03-24T15:25:09+00:00\",\n      \"updated_at\": \"2024-03-24T15:25:09+00:00\"\n    }\n  ],\n  \"tags\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-returns/613"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"account_id\": 1,\n        \"account\": {\n            \"id\": 1,\n            \"name\": \"Fidelity\"\n        },\n        \"warehouse_id\": 1,\n        \"warehouse\": {\n            \"id\": 1,\n            \"name\": \"Fidelity-WH\"\n        },\n        \"order_id\": 15,\n        \"order\": {\n            \"id\": 15,\n            \"document_number\": \"ORD-000002\",\n            \"document_number_ref\": \"ref2\",\n            \"notes\": \"\"\n        },\n        \"exchange_order_id\": null,\n        \"exchange_order\": null,\n        \"courier_service_id\": 1,\n        \"courier_service\": {\n            \"id\": 1,\n            \"name\": \"Collection Service\"\n        },\n        \"tracking_number\": null,\n        \"order_return_reason_id\": 2,\n        \"order_return_reason\": {\n            \"id\": 2,\n            \"account_id\": null,\n            \"name\": \"Wrong Size\",\n            \"stock_action_id\": 1,\n            \"stock_action\": {\n                \"label\": \"order_return_reasons.stock_actions.available\",\n                \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                \"value\": 1,\n                \"color\": \"positive\",\n                \"icon\": \"check\",\n                \"disable\": false\n            },\n            \"is_active\": true,\n            \"created_at\": \"2025-04-15T11:10:02+01:00\",\n            \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n            \"user_id\": 2\n        },\n        \"company_name\": null,\n        \"title\": null,\n        \"full_name\": \"x\",\n        \"phone\": null,\n        \"email\": null,\n        \"line_1\": \"1\",\n        \"line_2\": null,\n        \"line_3\": null,\n        \"city\": \"x\",\n        \"post_code\": \"NN2\",\n        \"county\": \"x\",\n        \"country\": \"GB\",\n        \"document_number_ref\": \"REF2\",\n        \"reference\": \"RTN-156666\",\n        \"status_id\": 1,\n        \"status\": {\n            \"label\": \"order_returns.statuses.pending\",\n            \"hint\": \"order_returns.statuses.pending_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"pending_actions\",\n            \"disable\": false\n        },\n        \"notes\": null,\n        \"external_id\": null,\n        \"refunded_at\": null,\n        \"created_at\": \"2025-04-15T11:11:17+01:00\",\n        \"updated_at\": \"2025-04-15T11:50:41+01:00\",\n        \"user_id\": 2,\n        \"user\": {\n            \"id\": 2,\n            \"username\": \"lxs\"\n        },\n        \"order_return_lines\": [\n            {\n                \"id\": 3,\n                \"order_return_id\": 2,\n                \"print_sequence_number\": 1,\n                \"product_id\": 5,\n                \"product\": {\n                    \"id\": 5,\n                    \"sku\": \"TOTE\",\n                    \"name\": \"Tote Box\"\n                },\n                \"product_unit_id\": 1,\n                \"product_unit\": {\n                    \"id\": 1,\n                    \"account_id\": 1,\n                    \"product_id\": 5,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2025-03-28T16:44:27+00:00\",\n                        \"updated_at\": \"2025-03-28T16:44:27+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"TOTE\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"is_active\": true,\n                    \"user_id\": 2,\n                    \"created_at\": \"2025-04-01T12:20:24+01:00\",\n                    \"updated_at\": \"2025-04-01T12:20:24+01:00\"\n                },\n                \"quantity_expected\": 5,\n                \"quantity_received\": 5,\n                \"order_return_reason_id\": 2,\n                \"order_return_reason\": {\n                    \"id\": 2,\n                    \"account_id\": null,\n                    \"name\": \"Wrong Size\",\n                    \"stock_action_id\": 1,\n                    \"stock_action\": {\n                        \"label\": \"order_return_reasons.stock_actions.available\",\n                        \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": \"check\",\n                        \"disable\": false\n                    },\n                    \"is_active\": true,\n                    \"created_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"user_id\": 2\n                },\n                \"customer_action_id\": 1,\n                \"customer_action\": {\n                    \"label\": \"order_returns.customer_actions.none\",\n                    \"hint\": \"order_returns.customer_actions.none_hint\",\n                    \"value\": 1,\n                    \"color\": \"primary\",\n                    \"icon\": null,\n                    \"disable\": false\n                },\n                \"traceable_products\": [],\n                \"notes\": null,\n                \"external_id\": null,\n                \"created_at\": \"2025-04-15T11:11:17+01:00\",\n                \"updated_at\": \"2025-04-15T11:50:41+01:00\"\n            },\n            {\n                \"id\": 4,\n                \"order_return_id\": 2,\n                \"print_sequence_number\": 2,\n                \"product_id\": 5,\n                \"product\": {\n                    \"id\": 5,\n                    \"sku\": \"TOTE\",\n                    \"name\": \"Tote Box\"\n                },\n                \"product_unit_id\": 1,\n                \"product_unit\": {\n                    \"id\": 1,\n                    \"account_id\": 1,\n                    \"product_id\": 5,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2025-03-28T16:44:27+00:00\",\n                        \"updated_at\": \"2025-03-28T16:44:27+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"TOTE\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"is_active\": true,\n                    \"user_id\": 2,\n                    \"created_at\": \"2025-04-01T12:20:24+01:00\",\n                    \"updated_at\": \"2025-04-01T12:20:24+01:00\"\n                },\n                \"quantity_expected\": 8,\n                \"quantity_received\": 8,\n                \"order_return_reason_id\": 1,\n                \"order_return_reason\": {\n                    \"id\": 1,\n                    \"account_id\": null,\n                    \"name\": \"Faulty\",\n                    \"stock_action_id\": 1,\n                    \"stock_action\": {\n                        \"label\": \"order_return_reasons.stock_actions.available\",\n                        \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": \"check\",\n                        \"disable\": false\n                    },\n                    \"is_active\": true,\n                    \"created_at\": \"2025-04-10T15:35:54+01:00\",\n                    \"updated_at\": \"2025-04-10T15:35:54+01:00\",\n                    \"user_id\": 2\n                },\n                \"customer_action_id\": 3,\n                \"customer_action\": {\n                    \"label\": \"order_returns.customer_actions.resend\",\n                    \"hint\": \"order_returns.customer_actions.resend_hint\",\n                    \"value\": 3,\n                    \"color\": \"success\",\n                    \"icon\": null,\n                    \"disable\": false\n                },\n                \"traceable_products\": [],\n                \"notes\": null,\n                \"external_id\": null,\n                \"created_at\": \"2025-04-15T11:11:17+01:00\",\n                \"updated_at\": \"2025-04-15T11:50:41+01:00\"\n            }\n        ],\n        \"tags\": []\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"c739cbe1-4328-486c-8676-61c96f7df1c1"},{"name":"/order-returns/:id","id":"9ff34b09-ad9a-4400-8268-01406b86a631","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/order-returns/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-returns","1"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"888e90c6-a3d4-473b-82e9-7d53ce407351","name":"/order-returns/:id","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/order-returns/1"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null\n}"}],"_postman_id":"9ff34b09-ad9a-4400-8268-01406b86a631"},{"name":"/order-returns","id":"ec1aaa6f-89a1-4bb9-baad-e39ef3b87a21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"account_id\": 1,\n    \"warehouse_id\": 1,\n    \"order_id\": null,\n    \"exchange_order_id\": null,\n    \"courier_service_id\": null,\n    \"tracking_number\": null,\n    \"order_return_reason_id\": 2,\n    \"company_name\": null,\n    \"title\": null,\n    \"full_name\": \"x\",\n    \"phone\": null,\n    \"email\": null,\n    \"line_1\": \"1\",\n    \"line_2\": null,\n    \"line_3\": null,\n    \"city\": \"x\",\n    \"post_code\": \"NN2\",\n    \"county\": \"x\",\n    \"country\": \"GB\",\n    \"document_number_ref\": \"REF7\",\n    \"reference\": \"RTN-156666\",\n    \"notes\": null,\n    \"external_id\": null,\n    \"refunded_at\": null,\n    \"order_return_lines\": [\n        {\n            \"sku\": \"tote\",\n            \"quantity_expected\": 5\n        },\n        {\n            \"product_id\": 5,\n            \"product_unit_id\": 1,\n            \"quantity_expected\": 8,\n            \"order_return_reason_id\": 1,\n            \"customer_action_id\": 3,\n            \"traceable_products\": [],\n            \"notes\": null,\n            \"external_id\": null\n        }\n    ],\n    \"tags\": [\"tag1\",\"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-returns","description":"<p><strong>Order Return Resource</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account_id</td>\n<td>YES</td>\n<td>Return To Account</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>YES</td>\n<td>Return To Warehouse</td>\n</tr>\n<tr>\n<td>order_id</td>\n<td>NO</td>\n<td>Original Order Id</td>\n</tr>\n<tr>\n<td>exchange_order_id</td>\n<td>NO</td>\n<td>Exchange Order Id</td>\n</tr>\n<tr>\n<td>courier_service_id</td>\n<td>NO</td>\n<td>Return Courier Service</td>\n</tr>\n<tr>\n<td>tracking_number</td>\n<td>NO</td>\n<td>Return Tracking Number</td>\n</tr>\n<tr>\n<td>order_return_reason_id</td>\n<td>YES</td>\n<td>Return Reason</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>title</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>full_name</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>email</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>line_1</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>line_2</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>line_3</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>city</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>post_code</td>\n<td>YES</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>county</td>\n<td>NO</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>YES</td>\n<td>Return From Address</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>NO</td>\n<td>Customer Refeference</td>\n</tr>\n<tr>\n<td>document_number_ref</td>\n<td>YES</td>\n<td>Return Number, must be unique per Account</td>\n</tr>\n<tr>\n<td>external_id</td>\n<td>NO</td>\n<td>External Return Id</td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>NO</td>\n<td>Defaults to 1 Pending</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>NO</td>\n<td>Return Notes</td>\n</tr>\n<tr>\n<td>refunded_at</td>\n<td>NO</td>\n<td>Refunded At - ISO 8601</td>\n</tr>\n<tr>\n<td>order_return_lines</td>\n<td>YES</td>\n<td>At least one line is required. See below resource</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Order Return Line Resource</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_return_reason_id</td>\n<td>NO</td>\n<td>Defaults to Return Reason above, can be different for each line</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>NO</td>\n<td>Product SKU</td>\n</tr>\n<tr>\n<td>product_id</td>\n<td>YES</td>\n<td>Required when <code>sku</code> is not passed</td>\n</tr>\n<tr>\n<td>product_unit_id</td>\n<td>YES</td>\n<td>Required when <code>sku</code> is not passed. When SKU is passed will default to first unit (EA)</td>\n</tr>\n<tr>\n<td>quantity_expected</td>\n<td>YES</td>\n<td>Quantity</td>\n</tr>\n<tr>\n<td>quantity_received</td>\n<td>NO</td>\n<td>Exact Quantity Received would be confirmed when Return is Marked as Completed</td>\n</tr>\n<tr>\n<td>customer_action_id</td>\n<td>NO</td>\n<td>Customer Action:  <br />1 - None, no action required  <br />2 - Refund the Customer  <br />3 - Resend the Order</td>\n</tr>\n<tr>\n<td>traceable_products</td>\n<td>NO</td>\n<td>Array of Traceable Info Expected (lot, serial etc.)</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>NO</td>\n<td>Return Line notes</td>\n</tr>\n<tr>\n<td>external_id</td>\n<td>NO</td>\n<td>External Order Return Line ID (uuid, int)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["order-returns"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1e7d097f-6e5d-4646-aa3b-667b3d69808f","name":"/order-returns","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"account_id\": 1,\n    \"warehouse_id\": 1,\n    \"order_id\": null,\n    \"exchange_order_id\": null,\n    \"courier_service_id\": null,\n    \"tracking_number\": null,\n    \"order_return_reason_id\": 2,\n    \"company_name\": null,\n    \"title\": null,\n    \"full_name\": \"x\",\n    \"phone\": null,\n    \"email\": null,\n    \"line_1\": \"1\",\n    \"line_2\": null,\n    \"line_3\": null,\n    \"city\": \"x\",\n    \"post_code\": \"NN2\",\n    \"county\": \"x\",\n    \"country\": \"GB\",\n    \"document_number_ref\": \"REF7\",\n    \"reference\": \"RTN-156666\",\n    \"notes\": null,\n    \"external_id\": null,\n    \"refunded_at\": null,\n    \"order_return_lines\": [\n        {\n            \"sku\": \"tote\",\n            \"quantity_expected\": 5\n        },\n        {\n            \"product_id\": 5,\n            \"product_unit_id\": 1,\n            \"quantity_expected\": 8,\n            \"order_return_reason_id\": 1,\n            \"customer_action_id\": 3,\n            \"traceable_products\": [],\n            \"notes\": null,\n            \"external_id\": null\n        }\n    ],\n    \"tags\": [\"tag1\",\"tag2\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/order-returns"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"account_id\": 1,\n        \"account\": {\n            \"id\": 1,\n            \"name\": \"Fidelity\"\n        },\n        \"warehouse_id\": 1,\n        \"warehouse\": {\n            \"id\": 1,\n            \"name\": \"Fidelity-WH\"\n        },\n        \"order_id\": null,\n        \"order\": null,\n        \"exchange_order_id\": null,\n        \"exchange_order\": null,\n        \"courier_service_id\": 1,\n        \"courier_service\": {\n            \"id\": 1,\n            \"name\": \"Collection Service\"\n        },\n        \"tracking_number\": null,\n        \"order_return_reason_id\": 2,\n        \"order_return_reason\": {\n            \"id\": 2,\n            \"account_id\": null,\n            \"name\": \"Wrong Size\",\n            \"stock_action_id\": 1,\n            \"stock_action\": {\n                \"label\": \"order_return_reasons.stock_actions.available\",\n                \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                \"value\": 1,\n                \"color\": \"positive\",\n                \"icon\": \"check\",\n                \"disable\": false\n            },\n            \"is_active\": true,\n            \"created_at\": \"2025-04-15T11:10:02+01:00\",\n            \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n            \"user_id\": 2\n        },\n        \"company_name\": null,\n        \"title\": null,\n        \"full_name\": \"x\",\n        \"phone\": null,\n        \"email\": null,\n        \"line_1\": \"1\",\n        \"line_2\": null,\n        \"line_3\": null,\n        \"city\": \"x\",\n        \"post_code\": \"NN2\",\n        \"county\": \"x\",\n        \"country\": \"GB\",\n        \"document_number_ref\": \"REF3\",\n        \"reference\": \"Customer reference\",\n        \"status_id\": 1,\n        \"status\": {\n            \"label\": \"order_returns.statuses.pending\",\n            \"hint\": \"order_returns.statuses.pending_hint\",\n            \"value\": 1,\n            \"color\": \"primary\",\n            \"icon\": \"pending_actions\",\n            \"disable\": false\n        },\n        \"notes\": null,\n        \"external_id\": null,\n        \"refunded_at\": null,\n        \"created_at\": \"2025-04-15T12:03:57+01:00\",\n        \"updated_at\": \"2025-04-15T12:03:57+01:00\",\n        \"user_id\": 2,\n        \"user\": {\n            \"id\": 2,\n            \"username\": \"lxs\"\n        },\n        \"order_return_lines\": [\n            {\n                \"id\": 5,\n                \"order_return_id\": 3,\n                \"print_sequence_number\": 1,\n                \"product_id\": 5,\n                \"product\": {\n                    \"id\": 5,\n                    \"sku\": \"TOTE\",\n                    \"name\": \"Tote Box\"\n                },\n                \"product_unit_id\": 1,\n                \"product_unit\": {\n                    \"id\": 1,\n                    \"account_id\": 1,\n                    \"product_id\": 5,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2025-03-28T16:44:27+00:00\",\n                        \"updated_at\": \"2025-03-28T16:44:27+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"TOTE\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"is_active\": true,\n                    \"user_id\": 2,\n                    \"created_at\": \"2025-04-01T12:20:24+01:00\",\n                    \"updated_at\": \"2025-04-01T12:20:24+01:00\"\n                },\n                \"quantity_expected\": 5,\n                \"quantity_received\": 0,\n                \"order_return_reason_id\": 2,\n                \"order_return_reason\": {\n                    \"id\": 2,\n                    \"account_id\": null,\n                    \"name\": \"Wrong Size\",\n                    \"stock_action_id\": 1,\n                    \"stock_action\": {\n                        \"label\": \"order_return_reasons.stock_actions.available\",\n                        \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": \"check\",\n                        \"disable\": false\n                    },\n                    \"is_active\": true,\n                    \"created_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"user_id\": 2\n                },\n                \"customer_action_id\": 1,\n                \"customer_action\": {\n                    \"label\": \"order_returns.customer_actions.none\",\n                    \"hint\": \"order_returns.customer_actions.none_hint\",\n                    \"value\": 1,\n                    \"color\": \"primary\",\n                    \"icon\": null,\n                    \"disable\": false\n                },\n                \"traceable_products\": null,\n                \"notes\": null,\n                \"external_id\": null,\n                \"created_at\": \"2025-04-15T12:03:57+01:00\",\n                \"updated_at\": \"2025-04-15T12:03:57+01:00\"\n            },\n            {\n                \"id\": 6,\n                \"order_return_id\": 3,\n                \"print_sequence_number\": 2,\n                \"product_id\": 5,\n                \"product\": {\n                    \"id\": 5,\n                    \"sku\": \"TOTE\",\n                    \"name\": \"Tote Box\"\n                },\n                \"product_unit_id\": 1,\n                \"product_unit\": {\n                    \"id\": 1,\n                    \"account_id\": 1,\n                    \"product_id\": 5,\n                    \"unit_id\": 1,\n                    \"unit\": {\n                        \"id\": 1,\n                        \"name\": \"EACH\",\n                        \"symbol\": \"EA\",\n                        \"description\": \"Base Unit\",\n                        \"user_id\": 1,\n                        \"created_at\": \"2025-03-28T16:44:27+00:00\",\n                        \"updated_at\": \"2025-03-28T16:44:27+00:00\"\n                    },\n                    \"print_sequence_number\": 1,\n                    \"multiple_of_each_unit\": 1,\n                    \"each_unit_value\": \"1.00000\",\n                    \"sku_barcode\": \"TOTE\",\n                    \"ean_barcode\": null,\n                    \"upc_barcode\": null,\n                    \"is_active\": true,\n                    \"user_id\": 2,\n                    \"created_at\": \"2025-04-01T12:20:24+01:00\",\n                    \"updated_at\": \"2025-04-01T12:20:24+01:00\"\n                },\n                \"quantity_expected\": 2,\n                \"quantity_received\": 0,\n                \"order_return_reason_id\": 2,\n                \"order_return_reason\": {\n                    \"id\": 2,\n                    \"account_id\": null,\n                    \"name\": \"Wrong Size\",\n                    \"stock_action_id\": 1,\n                    \"stock_action\": {\n                        \"label\": \"order_return_reasons.stock_actions.available\",\n                        \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n                        \"value\": 1,\n                        \"color\": \"positive\",\n                        \"icon\": \"check\",\n                        \"disable\": false\n                    },\n                    \"is_active\": true,\n                    \"created_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"updated_at\": \"2025-04-15T11:10:02+01:00\",\n                    \"user_id\": 2\n                },\n                \"customer_action_id\": 1,\n                \"customer_action\": {\n                    \"label\": \"order_returns.customer_actions.none\",\n                    \"hint\": \"order_returns.customer_actions.none_hint\",\n                    \"value\": 1,\n                    \"color\": \"primary\",\n                    \"icon\": null,\n                    \"disable\": false\n                },\n                \"traceable_products\": null,\n                \"notes\": null,\n                \"external_id\": null,\n                \"created_at\": \"2025-04-15T12:03:57+01:00\",\n                \"updated_at\": \"2025-04-15T12:03:57+01:00\"\n            }\n        ],\n        \"tags\": []\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"ec1aaa6f-89a1-4bb9-baad-e39ef3b87a21"}],"id":"1e6d254d-5f63-4d7b-b79d-9f4fd43f4e75","_postman_id":"1e6d254d-5f63-4d7b-b79d-9f4fd43f4e75","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Webhooks","item":[{"name":"/webhooks","id":"b642b3b4-e33c-48dc-9f46-14daffccb497","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/webhooks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["webhooks"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ae3bc963-2e47-41df-9c34-fbf6a810bfe5","name":"response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://fidelity.unifywms-staging.com/api/v1/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"warehouse_id\": 1,\n            \"account_id\": 100,\n            \"name\": \"3243242\",\n            \"topic\": \"orders.despatched\",\n            \"url\": \"https://your-url.com\",\n            \"has_secret\": true,\n            \"user_id\": 3,\n            \"created_at\": \"2024-03-23T01:02:05+00:00\",\n            \"updated_at\": \"2024-03-23T01:07:37+00:00\"\n        }\n    ],\n    \"links\": {\n        \"first\": null,\n        \"last\": null,\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"path\": \"https://fidelity.unify-wms.test/api/v1/webhooks\",\n        \"per_page\": 30,\n        \"next_cursor\": null,\n        \"prev_cursor\": null\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"b642b3b4-e33c-48dc-9f46-14daffccb497"},{"name":"/webhooks/:id","id":"c5b11e89-2f20-4fa4-87e1-c01e73f5ea37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/webhooks/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["webhooks","2"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ffbee2a1-a017-4ae3-bfa4-57a1399e41f7","name":"/webhooks","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/webhooks/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null\n}"}],"_postman_id":"c5b11e89-2f20-4fa4-87e1-c01e73f5ea37"},{"name":"/webhooks/:id","id":"6cf9f0cd-0ff8-4caa-9648-497a09a621d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/webhooks/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["webhooks","2"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"229788af-0ab2-419d-aa8c-0a31b766120e","name":"/webhooks/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"url":"https://{tenant}.unifywms.com/api/v1/webhooks/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"warehouse_id\": 1,\n        \"warehouse\": {\n            \"id\": 1,\n            \"name\": \"Fidelity UK (MP1)\",\n            \"code\": \"UK-MP1\",\n            \"description\": \"Default warehouse\",\n            \"priority\": 1,\n            \"notes\": \"\",\n            \"active\": true,\n            \"weight_unit\": \"kg\",\n            \"currency_id\": 1,\n            \"user_id\": null,\n            \"created_at\": \"2023-11-25T21:13:49+00:00\",\n            \"updated_at\": \"2023-12-21T10:36:01+00:00\"\n        },\n        \"account_id\": 100,\n        \"account\": {\n            \"id\": 100,\n            \"name\": \"Demo Account\",\n            \"master_account_id\": null,\n            \"currency_id\": 1,\n            \"vat_number\": null,\n            \"eori_number\": null,\n            \"ni_eori_number\": null,\n            \"ioss_number\": null,\n            \"ppi_licence_number\": null,\n            \"brand_name\": null,\n            \"account_code\": \"DA\",\n            \"short_name\": null,\n            \"notes\": \"\",\n            \"incoterms\": null,\n            \"created_at\": \"2024-03-24T13:10:38+00:00\",\n            \"updated_at\": \"2024-03-24T13:10:38+00:00\"\n        },\n        \"name\": \"Order Created\",\n        \"topic\": \"orders.created\",\n        \"url\": \"https://unifywms.com\",\n        \"has_secret\": true,\n        \"user_id\": 38,\n        \"created_at\": \"2024-03-24T16:03:45+00:00\",\n        \"updated_at\": \"2024-03-24T16:07:59+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"6cf9f0cd-0ff8-4caa-9648-497a09a621d8"},{"name":"/webhooks/:id","id":"20b9dabc-17aa-46b7-9d73-a241510427f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n        \"id\": 4,\n        \"warehouse_id\": 1,\n        \"account_id\": 100,\n        \"name\": \"Order Created\",\n        \"topic\": \"orders.created\",\n        \"url\": \"https://your-url.com/webhooks\",\n        \"secret\": \"your-secret\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/webhooks/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["webhooks","6"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5b1cf72d-ad89-4f90-adfc-e4a5748615fe","name":"/webhooks/:id","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n        \"id\": 4,\n        \"warehouse_id\": 1,\n        \"account_id\": 100,\n        \"name\": \"Order Created\",\n        \"topic\": \"orders.created\",\n        \"url\": \"https://unifywms.com/webhooks\",\n        \"secret\": \"your-secret\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{tenant}.unifywms.com/api/v1/webhooks/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 6,\n        \"warehouse_id\": 1,\n        \"account_id\": 100,\n        \"status\": \"active\",\n        \"name\": \"Order Created\",\n        \"topic\": \"orders.created\",\n        \"url\": \"https://unifywms.com/webhooks\",\n        \"has_secret\": true,\n        \"user_id\": 38,\n        \"created_at\": \"2024-03-24T16:27:25+00:00\",\n        \"updated_at\": \"2024-03-24T16:28:58+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"20b9dabc-17aa-46b7-9d73-a241510427f4"},{"name":"/webhooks","id":"720bcfa6-16d7-46a6-81e5-e65f7e01de3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"  {\n    \"warehouse_id\": 1,\n    \"account_id\": 100,\n    \"name\": \"Order Created\",\n    \"topic\": \"orders.created\",\n    \"url\": \"https://your-url.com/webhooks\",\n    \"secret\": \"your-secret\"\n  }"},"url":"https://{tenant}.unifywms.com/api/v1/webhooks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}},"urlObject":{"path":["webhooks"],"host":["https://{tenant}.unifywms.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"cd12142e-c344-4b2e-8da9-057757ad466f","name":"/webhooks","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"},{"key":"Accept","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"  {\n    \"warehouse_id\": 3,\n    \"account_id\": 92,\n    \"name\": \"Order Created\",\n    \"topic\": \"orders.created\",\n    \"url\": \"https://unifywms.com\",\n    \"secret\": \"your-secret\"\n  }"},"url":"https://{tenant}.unifywms.com/api/v1/webhooks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"warehouse_id\": 1,\n        \"account_id\": 100,\n        \"name\": \"Order Created\",\n        \"topic\": \"orders.created\",\n        \"url\": \"https://your-url.com/webhooks\",\n        \"has_secret\": true,\n        \"user_id\": 38,\n        \"created_at\": \"2024-03-24T16:04:16+00:00\",\n        \"updated_at\": \"2024-03-24T16:04:16+00:00\"\n    },\n    \"success\": true,\n    \"message\": null\n}"}],"_postman_id":"720bcfa6-16d7-46a6-81e5-e65f7e01de3e"}],"id":"c5572755-d277-4e10-9286-202ec87ad266","description":"<p>The webhooks API allows you to create, view, update, and delete individual webhooks</p>\n<p>Each webhook has:</p>\n<ul>\n<li><p><code>account_id</code>: triggered only for this account.</p>\n</li>\n<li><p><code>warehouse_id</code>: (optional) triggered for this warehouse</p>\n</li>\n<li><p><code>status</code>: active (delivers payload), inactive (delivery paused by admin), suspended (delivery paused by failure).</p>\n</li>\n<li><p><code>topic</code>: determines which resource events the webhook is triggered for.</p>\n</li>\n<li><p><code>url</code>: URL where the payload is delivered, must be HTTP or HTTPS.</p>\n</li>\n<li><p><code>secret</code>: secret key that is used to generate a HMAC-SHA256 hash of the request body so the receiver can verify authenticity of the webhook.</p>\n</li>\n</ul>\n<p><strong>Topics</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Topic</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orders.created</td>\n<td>Triggered when order is created</td>\n</tr>\n<tr>\n<td>orders.despatched</td>\n<td>Triggered when Order has been marked as Despatched in Unify, Order resource will have tracking details at this point</td>\n</tr>\n<tr>\n<td>grns.received</td>\n<td>Triggered when GRN has been marked as Completed in Unify</td>\n</tr>\n<tr>\n<td>order_returns.completed</td>\n<td>Triggered when Order Return has been marked as Completed in Unify</td>\n</tr>\n<tr>\n<td>products.stock_changed</td>\n<td>Triggered when for below Product Transactions in Unify:  <br />- Received  <br />- GrnAdjustment  <br />- Despatched  <br />- PositiveAdjustment  <br />- NegativeAdjustement  <br />- StockTakeAdjustment  <br />- OpeningBalance  <br />- Hold  <br />- HoldRelease  <br />- WriteOff</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Payload orders.despatched / orders.created</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 8,\n  \"account_id\": 299,\n  \"account\": { \"id\": 299, \"name\": \"Acme Corporation\", \"account_code\": \"acme\" },\n  \"warehouse_id\": 223,\n  \"warehouse\": { \"id\": 223, \"name\": \"UK Warehouse\", \"code\": \"WH-UK\" },\n  \"customer_id\": null,\n  \"customer_plant_id\": null,\n  \"company_name\": null,\n  \"title\": null,\n  \"full_name\": null,\n  \"phone\": null,\n  \"email\": null,\n  \"line_1\": \"Unit 1\",\n  \"line_2\": null,\n  \"line_3\": null,\n  \"city\": \"Daventry\",\n  \"post_code\": \"NN11 8NW\",\n  \"county\": null,\n  \"country\": \"GB\",\n  \"order_channel_id\": 1,\n  \"order_channel\": {\n    \"label\": \"orders.channels.manual\",\n    \"hint\": \"orders.channels.manual_hint\",\n    \"value\": 1,\n    \"color\": \"primary\",\n    \"icon\": \"person\",\n    \"disable\": false\n  },\n  \"order_status_id\": 10,\n  \"order_status\": {\n    \"label\": \"orders.statuses.despatched\",\n    \"hint\": \"orders.statuses.despatched_hint\",\n    \"value\": 10,\n    \"color\": \"secondary\",\n    \"icon\": \"local_shipping\",\n    \"disable\": false\n  },\n  \"bill_shipping_to_account\": null,\n  \"incoterms\": null,\n  \"document_number\": \"ORD-000184\",\n  \"document_number_ref\": \"EXT-ORD\",\n  \"tracking_number\": \"1ZXXXXXXXXXX\",\n  \"tracking_info\": {\n    \"tracking_number\": \"1ZXXXXXXXXXX\",\n    \"tracking_url\": \"http://www.ups.com/WebTracking/processInputRequest?tracknum=1ZXXXXXXXXXX\",\n    \"courier_code\": \"ups\",\n    \"service_code\": \"ups_ground\"\n  },\n  \"packing_notes\": null,\n  \"delivery_notes\": null,\n  \"gift_message\": null,\n  \"vat_number\": null,\n  \"eori_number\": null,\n  \"pid_number\": null,\n  \"order_date\": \"2025-04-11T12:49:22+00:00\",\n  \"contact_document_number\": null,\n  \"requested_delivery_date\": \"2025-04-11T12:49:22+00:00\",\n  \"promised_delivery_date\": \"2025-04-11T12:49:22+00:00\",\n  \"currency_id\": 248,\n  \"currency\": { \"id\": 259, \"name\": \"Pound\", \"iso_code\": \"GBP\" },\n  \"exchange_rate\": \"0.00000\",\n  \"subtotal_discount_value\": \"0.00\",\n  \"total_net_value\": \"0.00\",\n  \"total_tax_value\": \"0.00\",\n  \"total_gross_value\": \"0.00\",\n  \"weight_unit\": \"kg\",\n  \"weight_estimate\": 0,\n  \"weight_gross\": 0,\n  \"courier_service_id\": 8,\n  \"courier_service\": {\n    \"id\": 8,\n    \"courier_id\": 18,\n    \"courier\": {\n      \"id\": 18,\n      \"name\": \"UPS\",\n      \"courier_code\": \"ups\"\n    },\n    \"name\": \"UPS® Ground\",\n    \"service_code\": \"ups_ground\",\n    \"status_link\": \"http://www.ups.com/WebTracking/processInputRequest?tracknum=tracking_number\"\n  },\n  \"tracking_status_id\": 1,\n  \"tracking_status\": {\n    \"label\": \"orders.tracking_statuses.created\",\n    \"hint\": null,\n    \"value\": 1,\n    \"color\": \"primary\",\n    \"icon\": \"assignment\",\n    \"disable\": false\n  },\n  \"shipping_charge\": \"0.00\",\n  \"notes\": \"\",\n  \"is_b2b\": false,\n  \"has_bundle_products\": false,\n  \"external_id\": null,\n  \"part\": 1,\n  \"total_parts\": 1,\n  \"total_lines\": 1,\n  \"total_packages\": 0,\n  \"volumetric_weight\": \"0.00000\",\n  \"despatch_date\": null,\n  \"created_at\": \"2025-04-11T12:49:22+00:00\",\n  \"updated_at\": \"2025-04-11T12:49:22+00:00\",\n  \"order_lines\": [\n    {\n      \"id\": 8,\n      \"order_id\": 8,\n      \"print_sequence_number\": 1,\n      \"line_type\": 1,\n      \"product_id\": 146,\n      \"product\": { \"id\": 146, \"sku\": \"SKU-1XX\", \"name\": \"Example SKU\" },\n      \"product_unit_id\": 76,\n      \"product_unit\": {\n        \"id\": 76,\n        \"account_id\": 360,\n        \"product_id\": 147,\n        \"unit_id\": 82,\n        \"unit\": {\n          \"id\": 82,\n          \"name\": \"Each\",\n          \"symbol\": \"EA\",\n          \"description\": null,\n          \"user_id\": 1,\n          \"created_at\": \"2025-04-11T12:49:22+00:00\",\n          \"updated_at\": \"2025-04-11T12:49:22+00:00\"\n        },\n        \"print_sequence_number\": 1,\n        \"multiple_of_each_unit\": 1,\n        \"each_unit_value\": \"1.00000\",\n        \"sku_barcode\": \"SKU-1XX\",\n        \"ean_barcode\": \"5094788139125\",\n        \"upc_barcode\": \"7114621320027\",\n        \"is_active\": true,\n        \"user_id\": 1,\n        \"created_at\": \"2025-04-11T12:49:22+00:00\",\n        \"updated_at\": \"2025-04-11T12:49:22+00:00\"\n      },\n      \"sku\": null,\n      \"customer_pn\": null,\n      \"description\": null,\n      \"unit_selling_price\": \"0.00000\",\n      \"unit_selling_price_overridden\": \"0.00000\",\n      \"quantity\": 85,\n      \"quantity_allocated\": 85,\n      \"quantity_not_allocated\": 0,\n      \"total_value\": \"0.00\",\n      \"total_tax_value\": \"0.00\",\n      \"unit_discount_percent\": \"0.00\",\n      \"total_discount_value\": \"0.00\",\n      \"requested_delivery_date\": null,\n      \"promised_delivery_date\": null,\n      \"external_id\": null,\n      \"created_at\": \"2025-04-11T12:49:22+00:00\",\n      \"updated_at\": \"2025-04-11T12:49:22+00:00\",\n      \"allocation_balances\": [\n        {\n          \"id\": 8,\n          \"order_line_id\": 8,\n          \"traceable_bin_product_id\": 9,\n          \"traceable_bin_product\": {\n            \"id\": 9,\n            \"traceable_product_id\": 9,\n            \"traceable_product\": {\n              \"id\": 9,\n              \"serial\": \"SERIAL-vjwxrcap\",\n              \"lot_no\": \"LOT-spabtsmy\",\n              \"batch_id\": \"BATCH-huycnkeu\",\n              \"expiry_date\": null,\n              \"fifo_date\": \"2025-07-09T22:23:29+00:00\",\n              \"country_of_origin\": null\n            }\n          },\n          \"quantity_allocated\": 85\n        }\n      ],\n      \"warehouse_product_id\": null\n    }\n  ],\n  \"vehicle_reg\": null,\n  \"booking_reference\": null,\n  \"booking_date\": null,\n  \"trailer_id\": null,\n  \"priority\": null,\n  \"has_bonded_stock\": false,\n  \"source_document_id\": null\n}\n\n</code></pre>\n<p><strong>Payload grns.received</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 9,\n  \"account_id\": 299,\n  \"account\": { \"id\": 299, \"name\": \"Acme Corporation\", \"account_code\": \"acme\" },\n  \"warehouse_id\": 223,\n  \"warehouse\": { \"id\": 223, \"name\": \"UK Warehouse\", \"code\": \"WH-UK\" },\n  \"supplier_id\": null,\n  \"grn_status_id\": 6,\n  \"grn_status\": {\n    \"label\": \"grns.statuses.completed\",\n    \"hint\": \"grns.statuses.completed_hint\",\n    \"value\": 6,\n    \"color\": \"positive\",\n    \"icon\": \"done\",\n    \"disable\": true\n  },\n  \"incoterms\": null,\n  \"document_number\": \"GRN-000689\",\n  \"supplier_grn_no\": \"PO-997788\",\n  \"reference\": \"Cust Ref-23\",\n  \"currency_id\": 184,\n  \"exchange_rate\": \"0.00000\",\n  \"total_net_value\": \"0.00\",\n  \"total_tax_value\": \"0.00\",\n  \"total_gross_value\": \"0.00\",\n  \"priority\": 1,\n  \"priority_details\": {\n    \"label\": \"priorities.normal\",\n    \"hint\": \"\",\n    \"value\": 1,\n    \"color\": \"primary\",\n    \"icon\": \"remove\",\n    \"disable\": false\n  },\n  \"is_part_received\": false,\n  \"notes\": null,\n  \"courier_id\": 14,\n  \"courier\": { \"id\": 14, \"name\": \"Fedex\", \"courier_code\": \"fedex\" },\n  \"delivery_type_id\": 339,\n  \"delivery_type\": { \"id\": 339, \"name\": \"Pallet\" },\n  \"delivery_quantity\": 1,\n  \"est_arrived_at\": \"2025-04-12T12:22:53+00:00\",\n  \"est_offloaded_at\": \"2025-04-13T12:22:53+00:00\",\n  \"offloaded_at\": \"2025-04-11T12:22:53+00:00\",\n  \"arrived_at\": \"2025-04-11T12:22:53+00:00\",\n  \"is_delivery_confirmed\": false,\n  \"tracking_number\": \"1Z999AA10123456784\",\n  \"tracking_url\": \"\",\n  \"bill_of_landing\": null,\n  \"container_number\": null,\n  \"seal_number\": null,\n  \"vehicle_type\": null,\n  \"vehicle_reg\": null,\n  \"is_bonded\": false,\n  \"import_customs_ref\": null,\n  \"duty_net\": \"0.00\",\n  \"external_id\": null,\n  \"user_id\": null,\n  \"created_at\": \"2025-04-11T12:22:53+00:00\",\n  \"updated_at\": \"2025-04-11T12:22:53+00:00\",\n  \"grn_lines\": [\n    {\n      \"id\": 9,\n      \"grn_id\": 9,\n      \"product_id\": 136,\n      \"product\": { \"id\": 136, \"sku\": \"SKU-123\", \"name\": \"Item 123\" },\n      \"product_unit_id\": 71,\n      \"product_unit\": {\n        \"id\": 71,\n        \"account_id\": 339,\n        \"product_id\": 137,\n        \"unit_id\": 77,\n        \"unit\": {\n          \"id\": 77,\n          \"name\": \"Each\",\n          \"symbol\": \"EA\",\n          \"description\": null,\n          \"user_id\": 1,\n          \"created_at\": \"2025-04-11T12:22:53+00:00\",\n          \"updated_at\": \"2025-04-11T12:22:53+00:00\"\n        },\n        \"print_sequence_number\": 1,\n        \"multiple_of_each_unit\": 1,\n        \"each_unit_value\": \"1.00000\",\n        \"sku_barcode\": \"SKU-123\",\n        \"ean_barcode\": \"1743268193792\",\n        \"upc_barcode\": \"6739698511720\",\n        \"is_active\": true,\n        \"user_id\": 1,\n        \"created_at\": \"2025-04-11T12:22:53+00:00\",\n        \"updated_at\": \"2025-04-11T12:22:53+00:00\"\n      },\n      \"print_sequence_number\": null,\n      \"quantity_advised\": 5,\n      \"quantity_advised_each\": 0,\n      \"quantity_received\": 0,\n      \"notes\": null,\n      \"hold_stock_on_receipt_notes\": null,\n      \"hold_stock_on_receipt\": false,\n      \"price\": \"0.00000\",\n      \"total_value\": \"0.00\",\n      \"total_tax_value\": \"0.00\",\n      \"duty_rate\": \"0.00\",\n      \"duty_net\": \"0.00\",\n      \"external_id\": null,\n      \"user_id\": 1,\n      \"created_at\": \"2025-04-11T12:22:53+00:00\",\n      \"updated_at\": \"2025-04-11T12:22:53+00:00\"\n    }\n  ]\n}\n\n</code></pre>\n<p><strong>Payload order_returns.completed</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 40,\n  \"account_id\": 299,\n  \"account\": { \"id\": 299, \"name\": \"Acme Corporation\", \"account_code\": \"acme\" },\n  \"warehouse_id\": 223,\n  \"warehouse\": { \"id\": 223, \"name\": \"UK Warehouse\", \"code\": \"WH-UK\" },\n  \"order_id\": null,\n  \"order\": null,\n  \"exchange_order_id\": null,\n  \"exchange_order\": null,\n  \"courier_service_id\": null,\n  \"courier_service\": null,\n  \"tracking_number\": null,\n  \"order_return_reason_id\": 80,\n  \"order_return_reason\": {\n    \"id\": 80,\n    \"account_id\": null,\n    \"name\": \"Wrong Size\",\n    \"stock_action_id\": 1,\n    \"stock_action\": {\n      \"label\": \"order_return_reasons.stock_actions.available\",\n      \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n      \"value\": 1,\n      \"color\": \"positive\",\n      \"icon\": \"check\",\n      \"disable\": false\n    },\n    \"is_active\": true,\n    \"created_at\": \"2025-03-25T12:40:15+00:00\",\n    \"updated_at\": \"2025-03-25T12:40:15+00:00\",\n    \"user_id\": null\n  },\n  \"company_name\": null,\n  \"title\": null,\n  \"full_name\": null,\n  \"phone\": null,\n  \"email\": null,\n  \"line_1\": null,\n  \"line_2\": null,\n  \"line_3\": null,\n  \"city\": null,\n  \"post_code\": null,\n  \"county\": null,\n  \"country\": null,\n  \"document_number_ref\": 5570253,\n  \"reference\": null,\n  \"status_id\": 2,\n  \"status\": {\n    \"label\": \"order_returns.statuses.completed\",\n    \"hint\": \"order_returns.statuses.completed_hint\",\n    \"value\": 2,\n    \"color\": \"positive\",\n    \"icon\": \"done\",\n    \"disable\": false\n  },\n  \"notes\": null,\n  \"external_id\": null,\n  \"refunded_at\": null,\n  \"created_at\": \"2025-03-25T12:40:15+00:00\",\n  \"updated_at\": \"2025-03-25T12:40:15+00:00\",\n  \"user_id\": null,\n  \"order_return_lines\": [\n    {\n      \"id\": 39,\n      \"order_return_id\": 40,\n      \"print_sequence_number\": 1,\n      \"product_id\": 120,\n      \"product\": { \"id\": 120, \"sku\": \"SKU-23\", \"name\": \"SKU-23-Name\" },\n      \"product_unit_id\": 56,\n      \"product_unit\": {\n        \"id\": 56,\n        \"account_id\": 299,\n        \"product_id\": 120,\n        \"unit_id\": 62,\n        \"unit\": {\n          \"id\": 62,\n          \"name\": \"Each\",\n          \"symbol\": \"EA\",\n          \"description\": null,\n          \"user_id\": 1,\n          \"created_at\": \"2025-03-25T12:40:15+00:00\",\n          \"updated_at\": \"2025-03-25T12:40:15+00:00\"\n        },\n        \"print_sequence_number\": 1,\n        \"multiple_of_each_unit\": 1,\n        \"each_unit_value\": \"1.00000\",\n        \"sku_barcode\": \"SKU-23\",\n        \"ean_barcode\": \"6869054932644\",\n        \"upc_barcode\": \"8180764318015\",\n        \"is_active\": true,\n        \"user_id\": 1,\n        \"created_at\": \"2025-03-25T12:40:15+00:00\",\n        \"updated_at\": \"2025-03-25T12:40:15+00:00\"\n      },\n      \"quantity_expected\": 6,\n      \"quantity_received\": 7,\n      \"order_return_reason_id\": 80,\n      \"order_return_reason\": {\n        \"id\": 80,\n        \"account_id\": null,\n        \"name\": \"Wrong Size\",\n        \"stock_action_id\": 1,\n        \"stock_action\": {\n          \"label\": \"order_return_reasons.stock_actions.available\",\n          \"hint\": \"order_return_reasons.stock_actions.available_hint\",\n          \"value\": 1,\n          \"color\": \"positive\",\n          \"icon\": \"check\",\n          \"disable\": false\n        },\n        \"is_active\": true,\n        \"created_at\": \"2025-03-25T12:40:15+00:00\",\n        \"updated_at\": \"2025-03-25T12:40:15+00:00\",\n        \"user_id\": null\n      },\n      \"customer_action_id\": 1,\n      \"customer_action\": {\n        \"label\": \"order_returns.customer_actions.none\",\n        \"hint\": \"order_returns.customer_actions.none_hint\",\n        \"value\": 1,\n        \"color\": \"primary\",\n        \"icon\": null,\n        \"disable\": false\n      },\n      \"traceable_products\": [],\n      \"notes\": null,\n      \"external_id\": null,\n      \"created_at\": \"2025-03-25T12:40:15+00:00\",\n      \"updated_at\": \"2025-03-25T12:40:15+00:00\"\n    }\n  ],\n  \"tags\": []\n}\n\n</code></pre>\n<p><strong>Payload products.stock_changed</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"warehouse_id\": 1,\n  \"sku\": \"SKU-01\",\n  \"external_id\": \"EXT-01\",\n  \"transaction_type\": \"HoldRelease\",\n  \"quantity_adjusted\": 55,\n  \"quantity_total\": 100,\n  \"quantity_allocated\": 0,\n  \"quantity_on_hold\": 0,\n  \"quantity_free\": 100\n}\n\n</code></pre>\n<p><strong>Retries</strong></p>\n<p>Your application should respond with a 2XX status code within 10 seconds. The retry mechanism is as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attempt</th>\n<th>Retry after</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>1 minute</td>\n</tr>\n<tr>\n<td>2</td>\n<td>2 minutes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>30 minutes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>1 hour</td>\n</tr>\n<tr>\n<td>5</td>\n<td>2 hours</td>\n</tr>\n</tbody>\n</table>\n</div><p>After 5 failed retries, webhook will be permanently suspended.</p>\n<p><strong>Request Signing</strong></p>\n<p>A few custom headers are added to the request to help the receiver process the webhook:</p>\n<p><code>X-UnifyWMS-Signature:</code>HMAC-SHA256 hash of the entire payload</p>\n<p><code>X-UnifyWMS-Topic:</code>e.g orders.created</p>\n<p>We calculate the hash using HMAC SHA256 with the entire JSON payload as data, and your secret as key, hash_hmac('sha256', $jsonEncodedPayload, ''your-secret')</p>\n","_postman_id":"c5572755-d277-4e10-9286-202ec87ad266","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}},{"name":"Reference","item":[{"name":"Order Line Type","item":[],"id":"d347a16c-a039-4150-af32-3c03a32c7210","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n<th>Has Stock Allocations</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Product - Default -product_id is required</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Free Text Item - product is not required</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Comment Line</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d347a16c-a039-4150-af32-3c03a32c7210","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}},{"name":"Order Channels","item":[],"id":"7d01d98a-e65c-4828-84d9-2b54a2a7183e","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>other</td>\n</tr>\n<tr>\n<td>1</td>\n<td>manual</td>\n</tr>\n<tr>\n<td>2</td>\n<td>api</td>\n</tr>\n<tr>\n<td>3</td>\n<td>edi</td>\n</tr>\n<tr>\n<td>4</td>\n<td>shopify</td>\n</tr>\n<tr>\n<td>5</td>\n<td>business_central</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ship_station</td>\n</tr>\n<tr>\n<td>7</td>\n<td>woocommerce</td>\n</tr>\n<tr>\n<td>8</td>\n<td>sftp</td>\n</tr>\n<tr>\n<td>9</td>\n<td>market_time</td>\n</tr>\n<tr>\n<td>10</td>\n<td>bright_pearl</td>\n</tr>\n<tr>\n<td>11</td>\n<td>net_suite</td>\n</tr>\n<tr>\n<td>12</td>\n<td>amazon</td>\n</tr>\n<tr>\n<td>13</td>\n<td>amazon_vendor</td>\n</tr>\n<tr>\n<td>14</td>\n<td>ebay</td>\n</tr>\n<tr>\n<td>15</td>\n<td>magento</td>\n</tr>\n<tr>\n<td>16</td>\n<td>wix</td>\n</tr>\n<tr>\n<td>17</td>\n<td>unleashed</td>\n</tr>\n<tr>\n<td>18</td>\n<td>target</td>\n</tr>\n<tr>\n<td>19</td>\n<td>walmart</td>\n</tr>\n<tr>\n<td>20</td>\n<td>presta_shop</td>\n</tr>\n<tr>\n<td>21</td>\n<td>big_commerce</td>\n</tr>\n<tr>\n<td>22</td>\n<td>opencart</td>\n</tr>\n<tr>\n<td>23</td>\n<td>squarespace</td>\n</tr>\n<tr>\n<td>24</td>\n<td>etsy</td>\n</tr>\n<tr>\n<td>25</td>\n<td>bol</td>\n</tr>\n<tr>\n<td>26</td>\n<td>veeqo</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7d01d98a-e65c-4828-84d9-2b54a2a7183e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}},{"name":"Order On Hold Statuses","item":[],"id":"219bb8f7-c1ef-488e-b991-e519cfdb1ff5","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Not On Hold</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Awaiting Confirmation</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Awaiting Cancellation</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Awaiting Payment</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Fraud Risk</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Courier Label Issue</td>\n</tr>\n<tr>\n<td>7</td>\n<td>System Label Issue</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Product Issue</td>\n</tr>\n<tr>\n<td>9</td>\n<td>Other</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"219bb8f7-c1ef-488e-b991-e519cfdb1ff5","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}},{"name":"Grn Vehicle Type","item":[],"id":"a25cc777-43b7-4d67-9a5b-deec08b830c4","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>van</td>\n<td>Small vehicle</td>\n</tr>\n<tr>\n<td>hgv</td>\n<td>Heavy goods vehicle</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a25cc777-43b7-4d67-9a5b-deec08b830c4","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}},{"name":"Product Type","item":[],"id":"a0dfc9fa-0120-4029-a087-9a7950790714","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Stock - items that you want to count and track</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Service - non-physical items that you buy and sell, number in stock isn't recorded</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Bundle - a collection of products that are sold together</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a0dfc9fa-0120-4029-a087-9a7950790714","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}},{"name":"Weight Unit","item":[],"id":"15110244-cb47-4869-9a1b-ec2ce53bea9b","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>g</td>\n<td>Gram</td>\n</tr>\n<tr>\n<td>kg</td>\n<td>Kilogram</td>\n</tr>\n<tr>\n<td>oz</td>\n<td>Ounce</td>\n</tr>\n<tr>\n<td>lb</td>\n<td>Pound</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"15110244-cb47-4869-9a1b-ec2ce53bea9b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}},{"name":"Incoterms","item":[],"id":"7619ad11-9180-45b2-a429-39fa0162c8a8","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exw</td>\n<td></td>\n</tr>\n<tr>\n<td>fca</td>\n<td></td>\n</tr>\n<tr>\n<td>cpt</td>\n<td></td>\n</tr>\n<tr>\n<td>cip</td>\n<td></td>\n</tr>\n<tr>\n<td>dap</td>\n<td></td>\n</tr>\n<tr>\n<td>dpu</td>\n<td></td>\n</tr>\n<tr>\n<td>fas</td>\n<td></td>\n</tr>\n<tr>\n<td>fob</td>\n<td></td>\n</tr>\n<tr>\n<td>cfr</td>\n<td></td>\n</tr>\n<tr>\n<td>cif</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7619ad11-9180-45b2-a429-39fa0162c8a8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","name":"Reference","type":"folder"}}}],"id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"1fc276b9-a6d5-4496-9ff0-50e4ff3b1292","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"8a422c1f-6edb-4205-a0b9-d911a707277c","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"ef17a282-3afc-4d8a-8520-f972f8bb3aa9","description":""}],"id":"1fcda251-19c2-4f58-93c5-8ab978965efe","_postman_id":"1fcda251-19c2-4f58-93c5-8ab978965efe","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","id":"e829be61-0a3c-4807-8706-5cd79cb9cafe","name":"UnifyWMS","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"0ae0b232-d7aa-4869-b104-d3ba2994d69d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fda8c87c-e683-4930-a7fd-2b98c06e7c85","type":"text/javascript","exec":[""]}}],"variable":[{"key":"apiEndpoint","value":"https://{tenant}.unifywms.com/api/v1"},{"key":"username","value":""},{"key":"password","value":""}]}