{"info":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","description":"<html><head></head><body><h1 id=\"base-urls\"><strong>Base URLs</strong></h1>\n<p><strong>Production:</strong></p>\n<p><code>https://prod-back.goworkwize.com/api/public</code></p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All API requests must be authenticated using a <strong>Bearer token</strong>.</p>\n<h2 id=\"getting-started\"><strong>Getting Started</strong></h2>\n<p><strong>1. Generate an API Token</strong></p>\n<p>To generate your token:</p>\n<ol>\n<li><p>Log in with an <strong>employer</strong> or <strong>employer admin</strong> account.</p>\n</li>\n<li><p>Click your <strong>username</strong> in the bottom-left corner to open the dropdown menu.</p>\n</li>\n<li><p>Select <strong>Settings</strong>.</p>\n</li>\n<li><p>Open the <strong>Account</strong> tab.</p>\n</li>\n<li><p>Scroll down to the <strong>API Token</strong> section.</p>\n</li>\n<li><p>Enter a name for your token.</p>\n</li>\n<li><p>Click <strong>Generate</strong>.</p>\n</li>\n<li><p>Once generated, click <strong>COPY</strong> to copy the token.</p>\n</li>\n</ol>\n<p>⚠️ <strong>Important:</strong> Once the <strong>COPY</strong> button disappears, the token can never be retrieved again.</p>\n<p>If lost, you must create a new token. Copy it immediately and store it securely.</p>\n<img src=\"https://content.pstmn.io/4845e1ce-861e-4a4a-bf82-b023c389466a/aW1hZ2UucG5n\" width=\"616\" height=\"375\">\n\n<p><strong>2. Use the Token</strong></p>\n<p>Include the token in the <strong>Authorization header</strong> of your API requests:</p>\n<p><code>Authorization: Bearer</code></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Base URLs","slug":"base-urls"},{"content":"Authentication","slug":"authentication"}],"owner":"42616441","collectionId":"ca47a478-6f97-4468-86ff-0183f6cd6c19","publishedId":"2sB2x5HYeS","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"227AF7"},"publishDate":"2025-06-11T14:37:42.000Z"},"item":[{"name":"Orders","item":[{"name":"Get All Orders","id":"a5d14670-82ae-41c0-bf79-6904d1b1c691","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/orders","description":"<p>Get all orders related to the employer.</p>\n<p><strong>Order Statuses</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Value</th>\n<th>Description</th>\n<th>Use Case</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Processed</code></td>\n<td>Order has been processed</td>\n<td>New orders that have been received and processed</td>\n</tr>\n<tr>\n<td><code>In Progress</code></td>\n<td>Order is currently being worked on</td>\n<td>Active orders being fulfilled</td>\n</tr>\n<tr>\n<td><code>Canceled</code></td>\n<td>Order has been cancelled</td>\n<td>Cancelled orders</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Order has been completed</td>\n<td>Finished orders</td>\n</tr>\n<tr>\n<td><code>In transit</code></td>\n<td>Order is in transit/shipping</td>\n<td>Orders being shipped to destination</td>\n</tr>\n<tr>\n<td><code>Delivered</code></td>\n<td>Order has been delivered</td>\n<td><strong>Orders successfully delivered to recipient</strong></td>\n</tr>\n<tr>\n<td><code>Returned</code></td>\n<td>Order has been returned</td>\n<td>Orders sent back to sender</td>\n</tr>\n<tr>\n<td><code>Quote Request</code></td>\n<td>Request for a quote</td>\n<td>Initial quote requests</td>\n</tr>\n<tr>\n<td><code>Quote Awaiting Approval</code></td>\n<td>Quote waiting for approval</td>\n<td>Quotes pending approval</td>\n</tr>\n<tr>\n<td><code>Invalidated</code></td>\n<td>Order has been invalidated</td>\n<td>Orders that are no longer valid</td>\n</tr>\n<tr>\n<td><code>Preparing Shipment</code></td>\n<td>Shipment is being prepared</td>\n<td>Orders being packed/prepared for shipping</td>\n</tr>\n<tr>\n<td><code>Order Being Processed</code></td>\n<td>Order is being processed</td>\n<td>Orders in processing stage</td>\n</tr>\n<tr>\n<td><code>Being stocked at warehouse</code></td>\n<td>Items being stocked at warehouse</td>\n<td>Orders being stocked at warehouse location</td>\n</tr>\n<tr>\n<td><code>Auto Restock Order Awaiting Approval</code></td>\n<td>Auto restock order waiting for approval</td>\n<td>Automated restock orders pending approval</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Most Common Filtering Scenarios</strong></p>\n<ul>\n<li><p><strong><code>filter[status]=Delivered</code></strong> - Get only delivered orders</p>\n</li>\n<li><p><strong><code>filter[status]=In Progress</code></strong> - Get active orders</p>\n</li>\n<li><p><strong><code>filter[status]=In transit</code></strong> - Get orders currently shipping</p>\n</li>\n<li><p><strong><code>filter[status]=Processed</code></strong> - Get newly processed orders</p>\n</li>\n</ul>\n<p><strong>Example API Call</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/public/orders?filter[status]=Delivered&amp;per_page=20\n\n</code></pre><p>This will return only orders with \"Delivered\" status, limited to 20 per page.</p>\n<p>Also included in the response are the shipments and their statuses.</p>\n<p><strong>Shipment Statuses</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>status</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Delivery appointment scheduled</td>\n<td>A delivery appointment is scheduled</td>\n</tr>\n<tr>\n<td>In Transit</td>\n<td>Shipment on the way</td>\n</tr>\n<tr>\n<td>Delivered</td>\n<td>Shipment delivered successfully</td>\n</tr>\n<tr>\n<td>Returning to sender</td>\n<td>The package is on its way back to the sender</td>\n</tr>\n<tr>\n<td>Failed Attempt</td>\n<td>The delivery of the package failed due to some reason. Courier usually leaves a notice and will try to deliver again</td>\n</tr>\n<tr>\n<td>Available for pickup</td>\n<td>The package arrived at a pickup point near you and is available for pickup</td>\n</tr>\n<tr>\n<td>Picked up by customer</td>\n<td>Package picked up by the customer</td>\n</tr>\n<tr>\n<td>Expired</td>\n<td>No tracking information of the shipment, from the last 30 days</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>No information available on the carrier website or the tracking number is yet to be tracked</td>\n</tr>\n<tr>\n<td>Preparing Shipment</td>\n<td>Package is being prepared to leave warehouse/supplier</td>\n</tr>\n<tr>\n<td>Order Received</td>\n<td>Order is received by the Workwize</td>\n</tr>\n<tr>\n<td>Order Being Processed</td>\n<td>Order is being processed by Workwize. This includes Workwize communicating with courier/s, warehouse/s or supplier/s</td>\n</tr>\n<tr>\n<td>Being stocked at warehouse</td>\n<td>Package is delivered by courier to the warehouse and warehouse is currently processing the package. This process may include identifying the package like model year and serial number. Condition assessment also take place in this stage.</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Order/offboard is cancelled</td>\n</tr>\n<tr>\n<td>Out for Delivery</td>\n<td>The package is out for delivery</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["orders"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>Filter orders by employee’s foreign ID</p>\n","type":"text/plain"},"key":"filter[employee_foreign_id]","value":"5678-EFGH"},{"disabled":true,"description":{"content":"<p>Filter orders by order number</p>\n","type":"text/plain"},"key":"filter[number]","value":"9UGLS4KNSQ"},{"disabled":true,"key":"filter[categories]","value":"86,12"},{"disabled":true,"key":"filter[after]","value":"2024-01-01 12:00"},{"disabled":true,"description":{"content":"<p>Filter orders by status</p>\n","type":"text/plain"},"key":"filter[status]","value":"Delivered"},{"disabled":true,"description":{"content":"<p>Filters orders, order items, assets, or shipments updated after a specified timestamp.</p>\n","type":"text/plain"},"key":"filter[updated_after]","value":"2025-10-23 05:45:00"},{"disabled":true,"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"40f15487-23e2-4415-bfc8-1b4311020af2","name":"Filter by HRIS Employee ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"/orders?filter[employee_foreign_id]=5678-EFGH","path":["orders"],"query":[{"key":"filter[employee_foreign_id]","value":"5678-EFGH","description":"Filter orders by employee’s foreign ID"},{"key":"filter[number]","value":"AOCHWLGJY2","description":"Filter orders by order number","disabled":true},{"key":"per_page","value":"15","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 05 Feb 2025 13:42:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 106288,\n            \"number\": \"AOCHWLGJY2\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 2,\n                \"icon\": \"€\",\n                \"name\": \"EUR\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Wayne Witting\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 136632,\n                \"city\": \"Thaddeusland\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Jacobson Drive\",\n                \"address_line_2\": \"142\",\n                \"region\": \"South Carolina\",\n                \"postcode\": \"70342\",\n                \"postal_code\": \"70342\",\n                \"additional_address_line\": \"Drives\",\n                \"name\": \"Wayne\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Witting\",\n                \"email\": \"wayne.witting@workwizedemocsm.com\",\n                \"phone_number\": \"1-941-312-1031\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 295706,\n                    \"order_id\": 106288,\n                    \"name\": \"Dell, P2724DEB, 27\\\", 2560 x 1440, LED monitor - QHD, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Dell, Monitors, 27\\\", Available in: ZA\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul>    <li>Brand: Dell</li><li>Product Line: Dell 27 Video Conferencing Monitor</li><li>Model: P2724DEB</li><li>Series: P Model</li><li>Manufacturer: Smart Selection Video</li></ul><p><strong>Connectivity</strong></p><ul>    <li>Interfaces: 2 x USB 3.2 Gen 1, Audio line-out (mini-jack), DisplayPort 1.4 (HDCP 1.4), DisplayPort output (MST), HDMI (HDCP 1.4), LAN, USB 3.2 Gen 1 (BC 1.2), USB-B 3.2 Gen 1 upstream, USB-C 3.2 Gen 1 downstream (data only), USB-C 3.2 Gen 1/DisplayPort 1.4 Alt Mode (power up to 90W)</li></ul><p><strong>Bundled Services</strong></p><ul>    <li>3 years Limited Hardware Warranty with Advanced Exchange Service and Premium Panel Exchange</li></ul><p><strong>Display &amp; Graphics</strong></p><ul>    <li>Bezel Type: Flat front</li><li>Display Image Brightness: 350 candela per square metre</li><li>Color Support: 16.7 million colors</li><li>Display Contrast Ratio: 1000:1</li><li>Display Position Adjustments: Height, Pivot (rotation), Swivel, Tilt</li><li>Display Screen Coating: 3H Hard Coating, Anti-glare</li><li>Display Screen Technology: TFT active matrix</li><li>Display Type: LED-backlit LCD monitor</li><li>Screen Size: 27 inch (68.6 centimetre)</li><li>Native Resolution: 2560 x 1440</li><li>Pixel Density (ppi): 109</li><li>Response Time: 5 millisecond</li><li>Typical Response Time: 5 ms (gray-to-gray fast), 8 ms (gray-to-gray normal)</li><li>Monitor Aspect Ratio: 16:9</li></ul><p><strong>Audio</strong></p><ul>    <li>Output Type: Speaker(s)</li><li>Speaker Output Power: 5 watt</li><li>Speakers Configuration: Stereo</li></ul><p><strong>Power</strong></p><ul>    <li>Energy Class: Class F</li><li>Power Consumption (Off Mode): 0.3 watt</li><li>Power Consumption (On mode): 26 watt</li><li>Power Consumption (Typical): 20.6 watt</li><li>Required Voltage: AC 100-240 volt</li></ul><p><strong>Software</strong></p><ul>    <li>Software Type: Dell Display Manager, Dell Peripheral Manager</li></ul><p><strong>Technical Information</strong></p><ul>    <li>Built-in Devices: 2 microphones, IR camera, IR sensor, Proximity sensor, RGB camera, USB 3.2 Gen 1/USB-C hub</li><li>Max Operating Temperature: 104 degree Fahrenheit</li><li>Min Operating Temperature: 32 degree Fahrenheit</li><li>Operating Humidity: 10 - 80% (non-condensing)</li><li>Operating System Required: Apple MacOS 12.3.1 or later, Windows 10, Windows 11 (version 21H2)</li></ul><p><strong>Product Information</strong></p><ul>    <li>Built-in Camera: Yes</li><li>Built-in USB Hub: Yes</li><li>Features: 78° field of view, Anti-theft stand lock slot, Autofocus, Dell Power Button Sync, Privacy shutter, Security lock slot (cable lock sold separately), VESA interface support, Windows Hello compatible</li><li>Flat Panel Mount Interface: 100 x 100 mm</li></ul><p><strong>Included Items</strong></p><ul>    <li>Cables: 1 x DisplayPort cable - DisplayPort to DisplayPort - 6 ft, 1 x USB 3.2 Gen 1 upstream cable - USB Type A to B - 6 ft, 1 x USB-C 3.2 Gen 2 cable - USB-C - 3.3 ft</li></ul><p><strong>Dimensions &amp; Weight</strong></p><ul>    <li>Height: 17.4 inch</li><li>Weight: 18.23 lbs</li><li>Width: 24.1 inch</li><li>Depth: 9.1 inch</li></ul><p><strong>Physical Characteristics</strong></p><ul>    <li>Color Category: Black</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"P2724DEB\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 576.62,\n                    \"invoice_currency\": \"EUR\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"supplier\": null,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 295707,\n                    \"order_id\": 106288,\n                    \"name\": \"Targus, Intellect, 15.6\\\", Laptop Bags, Cases & Sleeves\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Targus, Laptop Bags, Cases & Sleeves, Available in: AU\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul>    <li>Product: Targus Intellect 39.6cm/15.6\\\" Backpack</li><li>Product type: Backpack</li><li>Application: Notebook</li><li>Display size: 39.6 cm (15.6\\\")</li><li>Material: Polyester</li><li>Colour: Grey, Black</li><li>Special features: Water-repellent material</li><li>Volume: 16 litres</li><li>Weight: 0.470 kg</li><li>For notebooks up to: 39.6 cm (15.6\\\")</li></ul><p><strong>Backpack Specifications</strong></p><ul>    <li>Compartments: Front pocket, Notebook compartment</li><li>Wearing comfort: Shoulder strap, Carrying handle</li><li>Notebook</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"TBB565GL\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 52.8,\n                    \"invoice_currency\": \"EUR\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"supplier\": null,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 295708,\n                    \"order_id\": 106288,\n                    \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p><span style=\\\"font-size: 18px;\\\"><strong>Specifications:</strong></span></p><ul><li>Apple&nbsp;M3 chip with 8‑core CPU, 10‑core GPU, 16‑core Neural Engine</li><li>16GB unified memory</li><li>512GB SSD storage</li><li>13.6-inch Liquid Retina display with True&nbsp;Tone²</li><li>1080p FaceTime HD camera</li><li>MagSafe 3 charging port</li><li>Two Thunderbolt / USB 4 ports</li><li>35W Dual USB-C Port Compact Power&nbsp;Adapter</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID - US English<br></li><li>Warranty: 1 year limited</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MC8G4N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 1180.29,\n                    \"invoice_currency\": \"EUR\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"supplier\": null,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 0.03,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 220928,\n                    \"order_number\": \"AOCHWLGJY2\",\n                    \"tracking_number\": \"81995541\",\n                    \"track_and_trace_url\": \"https://ferry.com/\",\n                    \"custom_tnt_url\": null,\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"destination_address\": {\n                        \"id\": 136632,\n                        \"city\": \"Thaddeusland\",\n                        \"country\": {\n                            \"id\": 32,\n                            \"name\": \"Netherlands\",\n                            \"code\": \"NL\",\n                            \"requires_tin\": false\n                        },\n                        \"company_name\": null,\n                        \"country_id\": 32,\n                        \"address_line_1\": \"Jacobson Drive\",\n                        \"address_line_2\": \"142\",\n                        \"region\": \"South Carolina\",\n                        \"postcode\": \"70342\",\n                        \"postal_code\": \"70342\",\n                        \"additional_address_line\": \"Drives\",\n                        \"name\": \"Wayne\",\n                        \"first_name\": \"Wayne\",\n                        \"last_name\": \"Witting\",\n                        \"email\": \"wayne.witting@workwizedemocsm.com\",\n                        \"phone_number\": \"1-941-312-1031\"\n                    },\n                    \"description\": \"Order shipment\",\n                    \"products\": [\n                        {\n                            \"name\": \"Dell, P2724DEB, 27\\\", 2560 x 1440, LED monitor - QHD, Monitors\",\n                            \"quantity\": 1\n                        },\n                        {\n                            \"name\": \"Targus, Intellect, 15.6\\\", Laptop Bags, Cases & Sleeves\",\n                            \"quantity\": 1\n                        },\n                        {\n                            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n                            \"quantity\": 1\n                        }\n                    ],\n                    \"history\": [],\n                    \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"orderItems\": [\n                        {\n                            \"id\": 295706,\n                            \"product_quantity\": 1,\n                            \"price\": 0.01,\n                            \"price_formatted\": \"€0.01\",\n                            \"subtotal\": 0.01,\n                            \"subtotal_formatted\": \"€ 0,01\",\n                            \"invoice_subtotal\": \"€ 576,62\",\n                            \"supplier\": null,\n                            \"variant\": null,\n                            \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                            \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                            \"returned_at\": null,\n                            \"canceled_at\": null,\n                            \"article_code\": \"P2724DEB\",\n                            \"confirmed_at\": null,\n                            \"sent_to_supplier_at\": null,\n                            \"type\": \"Buy\",\n                            \"name\": \"Dell, P2724DEB, 27\\\", 2560 x 1440, LED monitor - QHD, Monitors\",\n                            \"images\": null,\n                            \"discount\": \"€ 0,00\",\n                            \"assets\": [\n                                {\n                                    \"id\": 66504182,\n                                    \"name\": \"Dell, P2724DEB, 27\\\", 2560 x 1440, LED monitor - QHD, Monitors\",\n                                    \"ean\": null,\n                                    \"serial_code\": \"YGBTLQA8F6\",\n                                    \"external_reference\": null,\n                                    \"depreciation_months\": 28,\n                                    \"depreciation_months_formatted\": \"{24} out of 28\",\n                                    \"budget_deduction\": 1,\n                                    \"budget_deduction_formatted\": \"N/A\",\n                                    \"invoice_price\": 1,\n                                    \"invoice_price_formatted\": \"N/A\",\n                                    \"current_value\": 0,\n                                    \"current_value_formatted\": \"N/A\",\n                                    \"date_ordered\": \"2023-02-16 17:34:17\",\n                                    \"date_ordered_formatted\": \"Feb 16, 2023\",\n                                    \"type\": \"Rent\",\n                                    \"condition\": \"used\",\n                                    \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1732624941-KvW8d3FsIJnj9ePLy10z503c909f-a371-49c7-918d-dc787731c619.jpg\",\n                                    \"is_product\": false,\n                                    \"min_delivery_days\": 0,\n                                    \"max_delivery_days\": 0,\n                                    \"delivery_time\": null,\n                                    \"currency\": \"EUR\",\n                                    \"variant\": null,\n                                    \"can_be_offboarded\": true,\n                                    \"rent_end_date\": null,\n                                    \"pending_offboards_count\": null,\n                                    \"confirmed_offboards_count\": null,\n                                    \"owner\": {\n                                        \"id\": 489,\n                                        \"company_name\": \"Workwize Demo CSM\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 784,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                        \"updated_at\": \"2025-01-30T09:44:03.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 12,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"owner_id\": 489,\n                                    \"category\": {\n                                        \"id\": 99,\n                                        \"name\": \"Monitors\",\n                                        \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                                        \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n                                    },\n                                    \"category_id\": 99,\n                                    \"product\": null,\n                                    \"product_id\": null,\n                                    \"location_type\": \"warehouse\",\n                                    \"note\": null,\n                                    \"tags\": [],\n                                    \"offboard_asset_condition\": null,\n                                    \"offboard_asset_notes\": null,\n                                    \"warehouse_status\": \"available\",\n                                    \"warehouse_held_code\": null,\n                                    \"quarantined_reason\": null,\n                                    \"stock\": null,\n                                    \"warehouse\": {\n                                        \"id\": 10,\n                                        \"warehouse_provider\": \"logistic_plus\",\n                                        \"name\": \"Logistics Plus\",\n                                        \"warehouse_code\": \"LPP\",\n                                        \"address\": \"PH\",\n                                        \"business_name\": \"Logistics Plus Philippines\",\n                                        \"business_address\": \"Inglewood St Block 11, Lot 19; Canyon Ranch, Phase 2, Barangay Lantic, Carmona Cavite, Philippines 4116\",\n                                        \"contact_person\": \"Mario L. Victoria\",\n                                        \"phone_number\": \"+63 999 407 5200\",\n                                        \"created_at\": \"2024-09-23T07:50:02.000000Z\",\n                                        \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                                    }\n                                }\n                            ],\n                            \"status\": \"order_placed\"\n                        }\n                    ],\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 02, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 01, 2025\"\n                },\n                {\n                    \"id\": 220929,\n                    \"order_number\": \"AOCHWLGJY2\",\n                    \"tracking_number\": \"41610816\",\n                    \"track_and_trace_url\": \"https://brekke.com/pariatur-quis-accusamus-perferendis-ea-non-tenetur.html\",\n                    \"custom_tnt_url\": null,\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"destination_address\": {\n                        \"id\": 136632,\n                        \"city\": \"Thaddeusland\",\n                        \"country\": {\n                            \"id\": 32,\n                            \"name\": \"Netherlands\",\n                            \"code\": \"NL\",\n                            \"requires_tin\": false\n                        },\n                        \"company_name\": null,\n                        \"country_id\": 32,\n                        \"address_line_1\": \"Jacobson Drive\",\n                        \"address_line_2\": \"142\",\n                        \"region\": \"South Carolina\",\n                        \"postcode\": \"70342\",\n                        \"postal_code\": \"70342\",\n                        \"additional_address_line\": \"Drives\",\n                        \"name\": \"Wayne\",\n                        \"first_name\": \"Wayne\",\n                        \"last_name\": \"Witting\",\n                        \"email\": \"wayne.witting@workwizedemocsm.com\",\n                        \"phone_number\": \"1-941-312-1031\"\n                    },\n                    \"description\": \"Order shipment\",\n                    \"products\": [\n                        {\n                            \"name\": \"Dell, P2724DEB, 27\\\", 2560 x 1440, LED monitor - QHD, Monitors\",\n                            \"quantity\": 1\n                        },\n                        {\n                            \"name\": \"Targus, Intellect, 15.6\\\", Laptop Bags, Cases & Sleeves\",\n                            \"quantity\": 1\n                        },\n                        {\n                            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n                            \"quantity\": 1\n                        }\n                    ],\n                    \"history\": [],\n                    \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"orderItems\": [\n                        {\n                            \"id\": 295707,\n                            \"product_quantity\": 1,\n                            \"price\": 0.01,\n                            \"price_formatted\": \"€0.01\",\n                            \"subtotal\": 0.01,\n                            \"subtotal_formatted\": \"€ 0,01\",\n                            \"invoice_subtotal\": \"€ 52,80\",\n                            \"supplier\": null,\n                            \"variant\": null,\n                            \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                            \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                            \"returned_at\": null,\n                            \"canceled_at\": null,\n                            \"article_code\": \"TBB565GL\",\n                            \"confirmed_at\": null,\n                            \"sent_to_supplier_at\": null,\n                            \"type\": \"Buy\",\n                            \"name\": \"Targus, Intellect, 15.6\\\", Laptop Bags, Cases & Sleeves\",\n                            \"images\": null,\n                            \"discount\": \"€ 0,00\",\n                            \"assets\": [\n                                {\n                                    \"id\": 66504183,\n                                    \"name\": \"Targus, Intellect, 15.6\\\", Laptop Bags, Cases & Sleeves\",\n                                    \"ean\": null,\n                                    \"serial_code\": \"FWJGO5XOHT\",\n                                    \"external_reference\": null,\n                                    \"depreciation_months\": 32,\n                                    \"depreciation_months_formatted\": \"{24} out of 32\",\n                                    \"budget_deduction\": 1,\n                                    \"budget_deduction_formatted\": \"€ 1,00\",\n                                    \"invoice_price\": 1,\n                                    \"invoice_price_formatted\": \"€ 1,00\",\n                                    \"current_value\": 0.25,\n                                    \"current_value_formatted\": \"€ 0,25\",\n                                    \"date_ordered\": \"2023-02-22 11:12:44\",\n                                    \"date_ordered_formatted\": \"Feb 22, 2023\",\n                                    \"type\": \"Buy\",\n                                    \"condition\": \"used\",\n                                    \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1734021100-BzgYuzwGBEIyA80iGJOz36988567-e695-44c1-ba5f-15a483b1d94e.jpg\",\n                                    \"is_product\": false,\n                                    \"min_delivery_days\": 0,\n                                    \"max_delivery_days\": 0,\n                                    \"delivery_time\": null,\n                                    \"currency\": \"EUR\",\n                                    \"variant\": null,\n                                    \"can_be_offboarded\": false,\n                                    \"rent_end_date\": null,\n                                    \"pending_offboards_count\": null,\n                                    \"confirmed_offboards_count\": null,\n                                    \"owner\": {\n                                        \"id\": 489,\n                                        \"company_name\": \"Workwize Demo CSM\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 784,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                        \"updated_at\": \"2025-01-30T09:44:03.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 12,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"owner_id\": 489,\n                                    \"category\": {\n                                        \"id\": 278,\n                                        \"name\": \"Laptop Bags, Cases & Sleeves\",\n                                        \"created_at\": \"2023-08-16T04:40:59.000000Z\",\n                                        \"updated_at\": \"2023-08-16T04:40:59.000000Z\"\n                                    },\n                                    \"category_id\": 278,\n                                    \"product\": null,\n                                    \"product_id\": null,\n                                    \"location_type\": \"employee\",\n                                    \"note\": null,\n                                    \"tags\": [],\n                                    \"offboard_asset_condition\": null,\n                                    \"offboard_asset_notes\": null,\n                                    \"warehouse_status\": \"available\",\n                                    \"warehouse_held_code\": null,\n                                    \"quarantined_reason\": null,\n                                    \"stock\": null,\n                                    \"employee\": {\n                                        \"id\": 136899,\n                                        \"available_rent_budget\": 10000,\n                                        \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                        \"total_rent_budget\": 10000,\n                                        \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                        \"negative_available_rent_budget\": 10000,\n                                        \"available_purchase_budget\": 9999,\n                                        \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                        \"total_purchase_budget\": 10000,\n                                        \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                        \"negative_available_purchase_budget\": 9999,\n                                        \"department_id\": 19443,\n                                        \"manual_sync\": false,\n                                        \"department\": {\n                                            \"id\": 19443,\n                                            \"employer_id\": 489,\n                                            \"name\": \"Sales\",\n                                            \"rent_budget\": 10000,\n                                            \"purchase_budget\": 10000,\n                                            \"custom\": 0,\n                                            \"created_at\": \"2025-02-03T08:17:51.000000Z\",\n                                            \"updated_at\": \"2025-02-03T08:17:51.000000Z\",\n                                            \"employees_count\": 2,\n                                            \"budget_type\": \"fixed\",\n                                            \"budgets\": [\n                                                {\n                                                    \"id\": 8905,\n                                                    \"name\": null,\n                                                    \"icon\": null,\n                                                    \"amount\": 10000,\n                                                    \"formatted_amount\": \"€ 10000.00\",\n                                                    \"currency\": \"EUR\",\n                                                    \"type\": \"purchase\"\n                                                },\n                                                {\n                                                    \"id\": 8906,\n                                                    \"name\": null,\n                                                    \"icon\": null,\n                                                    \"amount\": 10000,\n                                                    \"formatted_amount\": \"€ 10000.00\",\n                                                    \"currency\": \"EUR\",\n                                                    \"type\": \"rental\"\n                                                }\n                                            ],\n                                            \"auto_approve_orders\": true,\n                                            \"auto_offboarding\": false,\n                                            \"user_id\": null\n                                        },\n                                        \"employer\": {\n                                            \"id\": 489,\n                                            \"company_name\": \"Workwize Demo CSM\",\n                                            \"city\": null,\n                                            \"total_employees\": 11,\n                                            \"address_line_1\": null,\n                                            \"warehouse_storage_code\": null,\n                                            \"postcode\": null,\n                                            \"catalog_id\": 784,\n                                            \"currency_id\": 2,\n                                            \"message\": null,\n                                            \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                            \"updated_at\": \"2025-01-30T09:44:03.000000Z\",\n                                            \"synced_asset\": 1,\n                                            \"org_id\": null,\n                                            \"announcement\": 0,\n                                            \"total_orders\": 12,\n                                            \"account_type\": \"sales_demo\",\n                                            \"total_pending_requests\": 2\n                                        },\n                                        \"currency\": {\n                                            \"id\": 2,\n                                            \"icon\": \"€\",\n                                            \"name\": \"EUR\",\n                                            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                        },\n                                        \"created_at\": \"2025-02-03T08:17:54.000000Z\",\n                                        \"updated_at\": \"2025-02-03T08:17:54.000000Z\",\n                                        \"entity\": null,\n                                        \"invitation_accepted\": true,\n                                        \"status\": \"added\",\n                                        \"balances\": [\n                                            {\n                                                \"id\": 248978,\n                                                \"budget_id\": 8905,\n                                                \"bugdet_balance_type\": \"purchase\",\n                                                \"available_balance\": 10000,\n                                                \"formatted_available_balance\": \"€ 10000.00\"\n                                            },\n                                            {\n                                                \"id\": 248979,\n                                                \"budget_id\": 8906,\n                                                \"bugdet_balance_type\": \"rental\",\n                                                \"available_balance\": 10000,\n                                                \"formatted_available_balance\": \"€ 10000.00\"\n                                            }\n                                        ],\n                                        \"address\": {\n                                            \"id\": 136632,\n                                            \"city\": \"Thaddeusland\",\n                                            \"country\": {\n                                                \"id\": 32,\n                                                \"name\": \"Netherlands\",\n                                                \"code\": \"NL\",\n                                                \"requires_tin\": false\n                                            },\n                                            \"company_name\": null,\n                                            \"country_id\": 32,\n                                            \"address_line_1\": \"Jacobson Drive\",\n                                            \"address_line_2\": \"142\",\n                                            \"region\": \"South Carolina\",\n                                            \"postcode\": \"70342\",\n                                            \"postal_code\": \"70342\",\n                                            \"additional_address_line\": \"Drives\",\n                                            \"name\": \"Wayne\",\n                                            \"first_name\": \"Wayne\",\n                                            \"last_name\": \"Witting\",\n                                            \"email\": \"wayne.witting@workwizedemocsm.com\",\n                                            \"phone_number\": \"1-941-312-1031\"\n                                        },\n                                        \"employment_start_date\": null,\n                                        \"employment_end_date\": null,\n                                        \"tax_identification_number\": null\n                                    }\n                                }\n                            ],\n                            \"status\": \"order_placed\"\n                        }\n                    ],\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Jan 31, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 02, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 220930,\n                    \"order_number\": \"AOCHWLGJY2\",\n                    \"tracking_number\": \"42529149\",\n                    \"track_and_trace_url\": \"https://ratke.info/possimus-minima-a-ea-ea-aut\",\n                    \"custom_tnt_url\": null,\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"destination_address\": {\n                        \"id\": 136632,\n                        \"city\": \"Thaddeusland\",\n                        \"country\": {\n                            \"id\": 32,\n                            \"name\": \"Netherlands\",\n                            \"code\": \"NL\",\n                            \"requires_tin\": false\n                        },\n                        \"company_name\": null,\n                        \"country_id\": 32,\n                        \"address_line_1\": \"Jacobson Drive\",\n                        \"address_line_2\": \"142\",\n                        \"region\": \"South Carolina\",\n                        \"postcode\": \"70342\",\n                        \"postal_code\": \"70342\",\n                        \"additional_address_line\": \"Drives\",\n                        \"name\": \"Wayne\",\n                        \"first_name\": \"Wayne\",\n                        \"last_name\": \"Witting\",\n                        \"email\": \"wayne.witting@workwizedemocsm.com\",\n                        \"phone_number\": \"1-941-312-1031\"\n                    },\n                    \"description\": \"Order shipment\",\n                    \"products\": [\n                        {\n                            \"name\": \"Dell, P2724DEB, 27\\\", 2560 x 1440, LED monitor - QHD, Monitors\",\n                            \"quantity\": 1\n                        },\n                        {\n                            \"name\": \"Targus, Intellect, 15.6\\\", Laptop Bags, Cases & Sleeves\",\n                            \"quantity\": 1\n                        },\n                        {\n                            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n                            \"quantity\": 1\n                        }\n                    ],\n                    \"history\": [],\n                    \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                    \"orderItems\": [\n                        {\n                            \"id\": 295708,\n                            \"product_quantity\": 1,\n                            \"price\": 0.01,\n                            \"price_formatted\": \"€0.01\",\n                            \"subtotal\": 0.01,\n                            \"subtotal_formatted\": \"€ 0,01\",\n                            \"invoice_subtotal\": \"€ 1.180,29\",\n                            \"supplier\": null,\n                            \"variant\": null,\n                            \"created_at\": \"2025-02-03T08:17:56.000000Z\",\n                            \"updated_at\": \"2025-02-03T08:17:56.000000Z\",\n                            \"returned_at\": null,\n                            \"canceled_at\": null,\n                            \"article_code\": \"MC8G4N/A-CTO\",\n                            \"confirmed_at\": null,\n                            \"sent_to_supplier_at\": null,\n                            \"type\": \"Buy\",\n                            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n                            \"images\": null,\n                            \"discount\": \"€ 0,00\",\n                            \"assets\": [\n                                {\n                                    \"id\": 66504184,\n                                    \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n                                    \"ean\": null,\n                                    \"serial_code\": \"KJTYIBPU88\",\n                                    \"external_reference\": null,\n                                    \"depreciation_months\": 35,\n                                    \"depreciation_months_formatted\": \"{24} out of 35\",\n                                    \"budget_deduction\": 1,\n                                    \"budget_deduction_formatted\": \"N/A\",\n                                    \"invoice_price\": 1,\n                                    \"invoice_price_formatted\": \"N/A\",\n                                    \"current_value\": 0,\n                                    \"current_value_formatted\": \"N/A\",\n                                    \"date_ordered\": \"2023-02-21 13:20:37\",\n                                    \"date_ordered_formatted\": \"Feb 21, 2023\",\n                                    \"type\": \"Rent\",\n                                    \"condition\": \"new\",\n                                    \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-BeOeUW3252U8xHLB0vXcimage1-sq.jpg\",\n                                    \"is_product\": false,\n                                    \"min_delivery_days\": 0,\n                                    \"max_delivery_days\": 0,\n                                    \"delivery_time\": null,\n                                    \"currency\": \"EUR\",\n                                    \"variant\": null,\n                                    \"can_be_offboarded\": true,\n                                    \"rent_end_date\": null,\n                                    \"pending_offboards_count\": null,\n                                    \"confirmed_offboards_count\": null,\n                                    \"owner\": {\n                                        \"id\": 489,\n                                        \"company_name\": \"Workwize Demo CSM\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 784,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                        \"updated_at\": \"2025-01-30T09:44:03.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 12,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"owner_id\": 489,\n                                    \"category\": {\n                                        \"id\": 86,\n                                        \"name\": \"Laptops\",\n                                        \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                                        \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n                                    },\n                                    \"category_id\": 86,\n                                    \"product\": null,\n                                    \"product_id\": null,\n                                    \"location_type\": \"warehouse\",\n                                    \"note\": null,\n                                    \"tags\": [],\n                                    \"offboard_asset_condition\": null,\n                                    \"offboard_asset_notes\": null,\n                                    \"warehouse_status\": \"available\",\n                                    \"warehouse_held_code\": null,\n                                    \"quarantined_reason\": null,\n                                    \"stock\": null,\n                                    \"warehouse\": {\n                                        \"id\": 7,\n                                        \"warehouse_provider\": \"logistic_plus\",\n                                        \"name\": \"Logistics Plus\",\n                                        \"warehouse_code\": \"LBZ\",\n                                        \"address\": \"BR\",\n                                        \"business_name\": \"Logistics Plus Brazil\",\n                                        \"business_address\": \"Rua José Pereira Possidônio, 200, Galpão E - Polo Industrial Jandira 2 - Condomínio G10 - Jardim Alvorada, Jandira - SP, 06612-290\",\n                                        \"contact_person\": \"Angelica Riserio\",\n                                        \"phone_number\": \"+55 11-4780-7571  R: 1012\",\n                                        \"created_at\": \"2024-02-12T09:15:27.000000Z\",\n                                        \"updated_at\": \"2025-01-10T09:27:48.000000Z\"\n                                    }\n                                }\n                            ],\n                            \"status\": \"order_placed\"\n                        }\n                    ],\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 08, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-04 08:17:56\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Jan 30, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-09-06T08:17:56.000000Z\",\n            \"updated_at\": \"2025-02-03T08:17:56.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n        \"last\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://prod-back.goworkwize.com/api/public/orders\",\n        \"per_page\": 15,\n        \"to\": 1,\n        \"total\": 1\n    }\n}"},{"id":"3c6aa3f1-0999-4230-8a76-88aeaa1dfde0","name":"All Orders Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/orders","path":["orders"],"query":[{"key":"filter[employee_foreign_id]","value":"5678-EFGH","description":"Filter orders by employee’s foreign ID","disabled":true},{"key":"filter[number]","value":"AOCHWLGJY2","description":"Filter orders by order number","disabled":true},{"key":"per_page","value":"15","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Feb 2025 14:03:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"server","value":"istio-envoy"},{"key":"cache-control","value":"no-cache, private"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-security-policy","value":"default-src 'self' https://*.goworkwize.com;             script-src 'self' 'unsafe-inline' https://vaultjs.apideck.com *.zendesk.com https://cdn.merge.dev *.posthog.com https://*.goworkwize.com https://cdn.segment.com https://static.userguiding.com https://static.zdassets.com https://browser.sentry-cdn.com https://js.sentry-cdn.com;             style-src 'self' 'unsafe-inline' https://vaultjs.apideck.com *.zendesk.com  https://*.goworkwize.com https://cdnjs.cloudflare.com https://fonts.googleapis.com;             img-src 'self' data: *.zendesk.com https://*.userguiding.com https://dapulse-res.cloudinary.com https://platform.slack-edge.com https://merge-api-production.s3.amazonaws.com https://res.cloudinary.com https://*.goworkwize.com https://workwize-bucket.s3.eu-west-3.amazonaws.com;             font-src 'self' https://*.goworkwize.com https://fonts.gstatic.com https://cdnjs.cloudflare.com;             connect-src 'self' https://vaultjs.apideck.com https://api.merge.dev *.posthog.com https://*.goworkwize.com https://cdn.segment.com https://goworkwize.eu.auth0.com https://goworkwize-dev.eu.auth0.com https://*.userguiding.com https://api.segment.io https://ekr.zdassets.com https://user.userguiding.com wss://*.zendesk.com *.zendesk.com https://api-js.mixpanel.com *.sentry.io https://unify.apideck.com;             media-src 'self' https://*.goworkwize.com https://workwize-bucket.s3.eu-west-3.amazonaws.com;             frame-ancestors 'none';             form-action 'self' https://*.goworkwize.com;            frame-src *.auth0.com https://cdn.merge.dev https://vaultjs.apideck.com https://managementworkwizefaq.zendesk.com;"},{"key":"x-envoy-upstream-service-time","value":"1730"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 113662,\n            \"number\": \"9UGLS4KNSQ\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": {\n                \"id\": 71202,\n                \"given_name\": \"Nick\",\n                \"family_name\": \"Niemiec\",\n                \"full_name\": \"Nick Niemiec\",\n                \"email\": \"Nick+25@goworkwize.com\",\n                \"phone_number\": \"0628790868\",\n                \"personal_email\": null,\n                \"personal_phone_number\": null,\n                \"created_at\": \"2024-12-03T08:54:32.000000Z\",\n                \"updated_at\": \"2024-12-10T22:17:51.000000Z\",\n                \"address\": null\n            },\n            \"receiver\": \"\",\n            \"receiver_type\": \"employer\",\n            \"express_delivery\": false,\n            \"shipping_info\": {\n                \"id\": 18763,\n                \"city\": \"Erie\",\n                \"country\": {\n                    \"id\": 46,\n                    \"name\": \"United States\",\n                    \"code\": \"US\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": \"Logistics Plus, Inc.\",\n                \"country_id\": 46,\n                \"address_line_1\": \"12th St., 205, W\",\n                \"address_line_2\": \"\",\n                \"region\": \"Pennsylvania\",\n                \"postcode\": \"16534\",\n                \"postal_code\": \"16534\",\n                \"additional_address_line\": null,\n                \"name\": null,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"email\": null,\n                \"phone_number\": null\n            },\n            \"status\": \"Processed\",\n            \"products\": [\n                {\n                    \"id\": 317682,\n                    \"order_id\": 113662,\n                    \"name\": \"Logitech, MX Anywhere 3S for Business, Wireless, Laser, Mice\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Logitech, Wireless, Mice, Available in: EU\",\n                    \"description\": \"<p>DIMENSIONS</p><p><br></p><p><br></p><p>MX Anywhere 3 for Business Mouse</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 3.96 in (100.5 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 2.56 in (65 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 1.35 in (34.4 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 3.49 oz (99 g)</p><p><br></p><p><br></p><p>Logi Bolt USB Receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 0.72 in (18.4 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 0.57 in (14.4 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 0.26 in (6.6 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 0.07 oz (2 g)</p><p><br></p><p><br></p><p>SYSTEM REQUIREMENTS</p><p><br></p><p><br></p><p>Logi Bolt USB Receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Required: Available USB Port, Windows 10, 11 or later, macOS 10.14 or later, Linux, Chrome OS</p><p><br></p><p><br></p><p>Bluetooth Low Energy Wireless Technology</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Required: Bluetooth Low Energy, Windows 10, 11 or later, macOS 10.15 or later</p><p><br></p><p>Linux, Chrome OS, iPadOS 13.4 or later ., Android 8 or later</p><p><br></p><p><br></p><p>TECHNICAL SPECIFICATIONS</p><p><br></p><p><br></p><p>Sensor technology</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Darkfield high precision</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Nominal value: 1000 dpi</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;DPI (Minimal and maximal value): 200-4000 dpi (can be set in increments of 50 dpi)</p><p><br></p><p><br></p><p>Buttons</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;6 buttons: Left/Right-click, Back/Forward, Wheel mode-shift, Middle click</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Scroll Wheel: Yes, with auto-shift</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Thumbwheel: Yes, by holding side button while turning wheel</p><p><br></p><p><br></p><p>Wireless technology</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logi Bolt USB Receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Bluetooth Low Energy Wireless Technology</p><p><br></p><p><br></p><p>Wireless operating distance</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Up to 10 meters (33 feet)</p><p><br></p><p><br></p><p>Battery</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C rechargeable Li-Po (500 mAh) battery</p><p><br></p><p><br></p><p>Optional software</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logitech Options with Flow Functionality for Windows or macOS</p><p><br></p><p><br></p><p>PACKAGE CONTENTS</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;MX Anywhere 3 for Business mouse</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logi Bolt USB receiver (USB-A)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cable for recharging (USB-C to USB-A)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;User documentation</p><p><br></p><p><br></p><p>WARRANTY INFORMATION</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;2-Year Limited Hardware Warranty</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5825067\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 115.5,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317683,\n                    \"order_id\": 113662,\n                    \"name\": \"Apple, USB-C Digital-AV Multiport Adapter, 10cm, Adapters & Cables\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"USB-C, Adapters & Cables, Available in: UK\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;Maximum resolution: 3840 x 2160 pixels</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product colour: White</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDMI</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-A</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4382958\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 113.24,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317684,\n                    \"order_id\": 113662,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2273.78,\n            \"rent_subtotal\": 0,\n            \"shipments\": [],\n            \"created_at\": \"2025-01-08T13:17:11.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:11.000000Z\"\n        },\n        {\n            \"id\": 113663,\n            \"number\": \"F0USLVHIFX\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": {\n                \"id\": 71202,\n                \"given_name\": \"Nick\",\n                \"family_name\": \"Niemiec\",\n                \"full_name\": \"Nick Niemiec\",\n                \"email\": \"Nick+25@goworkwize.com\",\n                \"phone_number\": \"0628790868\",\n                \"personal_email\": null,\n                \"personal_phone_number\": null,\n                \"created_at\": \"2024-12-03T08:54:32.000000Z\",\n                \"updated_at\": \"2024-12-10T22:17:51.000000Z\",\n                \"address\": null\n            },\n            \"receiver\": \"\",\n            \"receiver_type\": \"employer\",\n            \"express_delivery\": false,\n            \"shipping_info\": {\n                \"id\": 18764,\n                \"city\": \"Basildon\",\n                \"country\": {\n                    \"id\": 15,\n                    \"name\": \"United Kingdom\",\n                    \"code\": \"GB\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": \"Logistics Plus - UK\",\n                \"country_id\": 15,\n                \"address_line_1\": \"Carnival Cl, Basildon SS14 3WN\",\n                \"address_line_2\": \"\",\n                \"region\": null,\n                \"postcode\": \"\",\n                \"postal_code\": \"\",\n                \"additional_address_line\": null,\n                \"name\": null,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"email\": null,\n                \"phone_number\": null\n            },\n            \"status\": \"Processed\",\n            \"products\": [\n                {\n                    \"id\": 317685,\n                    \"order_id\": 113663,\n                    \"name\": \"Logitech, BRIO, 4K UHD, Webcams\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Webcams, Available in: EU\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;(Max.) resolution: 3,840 x 2,160</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Digital zoom: Yes</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Autofocus: Yes</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connections: USB</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Integrated microphone: Yes</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"2591212\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 144.55,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317686,\n                    \"order_id\": 113663,\n                    \"name\": \"Apple, AirPods 3, Wireless, In-ear, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Headphones, Available in: UK\",\n                    \"description\": \"<p>General</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product Type: Truly Wireless Headphones - Bluetooth</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Generation: 3rd</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Compatibility: iPhone,iPad,iPod,Mac</p><p><br></p><p>Dimensions &amp; weight details:</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Charging station: 5.44 cm x 2.138 cm x 4.64 cm / 37.91 g</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 1.826 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 1.921 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 3.079 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 4.28 g</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Recommended usage: Portable electronics</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;IPX4 Protection</p><p><br></p><p><br></p><p>Audio Output</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Model of headphones: Earpiece</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connectivity: Wireless</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Wireless Technology: Bluetooth</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Bleutooth Version: Bluetooth 5.0</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Sound Output Mode: Stereo</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Sound Effects: Adaptive EQ</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Apple H1 chip</p><p><br></p><p><br></p><p>Microphone</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Form factor: Built-in</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Microphone Control Mode: Bundling</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Microphones Included: 2</p><p><br></p><p><br></p><p>Remote Control</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Controls: Volume, Answer/End, Next/Previous Number</p><p><br></p><p><br></p><p>Tracking</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Sensors: Accelerometer motion detection,accelerometer sound detection,force sensor,skin detection sensors</p><p><br></p><p><br></p><p>Internet of Things (IoT)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Internet of Things (IoT) enabled: Yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Intelligent assistant: Siri</p><p><br></p><p><br></p><p>Miscellaneous</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Bundled accessories: Wireless charging box,Lightning to USB-C cable</p><p><br></p><p><br></p><p>Power</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Auto on/off: Yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Battery: Rechargeable headphones</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Standards for wireless charging: Qi</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Run time (max): 6 hours/hours</p><p><br></p><p>Details of run time:</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous playback: up to 6 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Talking continuously: up to 4 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous playback (with included charging bag): up to 30 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous talk (with charging bag included): up to 20 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous playback (spatial audio on): up to 5 hours</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4591261\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 182.74,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317687,\n                    \"order_id\": 113663,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - US, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p>Specifications:</p><ul><li><u>​</u>Apple&nbsp;M4 chip with 12‑core CPU, 16‑core GPU, 16‑core Neural Engine</li><li>24GB unified memory</li><li>512GB SSD storage</li><li>14-inch Liquid&nbsp;Retina&nbsp;XDR display²</li><li>70W USB-C Power Adapter</li><li>Three Thunderbolt 4 ports, HDMI port, SDXC card slot, headphone jack, MagSafe&nbsp;3 port</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID — US English</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MX2E3N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2226.37,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2553.66,\n            \"rent_subtotal\": 0,\n            \"shipments\": [],\n            \"created_at\": \"2025-01-29T13:17:12.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:12.000000Z\"\n        },\n        {\n            \"id\": 113664,\n            \"number\": \"NLFIMM5U1J\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Amari Hessel\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144709,\n                \"city\": \"Betteberg\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Izaiah Courts\",\n                \"address_line_2\": \"240\",\n                \"region\": \"California\",\n                \"postcode\": \"13232\",\n                \"postal_code\": \"13232\",\n                \"additional_address_line\": \"Mountains\",\n                \"name\": \"Amari\",\n                \"first_name\": \"Amari\",\n                \"last_name\": \"Hessel\",\n                \"email\": \"amari.hessel@workwizedemo.com\",\n                \"phone_number\": \"+1 (267) 495-8796\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317688,\n                    \"order_id\": 113664,\n                    \"name\": \"Apple, Magic Keyboard w/ Numeric Keypad, Wireless, Bluetooth, QWERTY - UK, Keyboards\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Wireless, Keyboards, Available in: UK\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;Keyboard form factor: Standard</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Keyboard style: Straight</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connectivity technology: Wireless</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Device interface: Bluetooth</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Keyboard layout: QWERTY UK English</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Recommended usage: Universal</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product colour: White</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4170340-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 136.41,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317689,\n                    \"order_id\": 113664,\n                    \"name\": \"Sony, WH-1000XM5, Wired, Binaural, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Headphones, Available in: US, PR\",\n                    \"description\": \"<h2>All specifications</h2><table><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Achievement</strong></div></th></tr></thead><tbody><tr><th><div>Type of product</div></th><td><div>Headphones</div></td></tr><tr><th><div>Wearing method</div></th><td><div>Headband</div></td></tr><tr><th><div>Suggested Use</div></th><td><div>Calls/music</div></td></tr><tr><th><div>Headset type</div></th><td><div>Binaural</div></td></tr><tr><th><div>Colour of the product</div></th><td><div>Black</div></td></tr><tr><th><div>Volume</div></th><td><div>Touch</div></td></tr><tr><th><div>Type of control unit</div></th><td><div>On-ear control unit</div></td></tr><tr><th><div>Type of operation</div></th><td><div>Touch</div></td></tr><tr><th><div>Cord length</div></th><td><div>1.2 m</div></td></tr><tr><th><div>LED indicators</div></th><td><div>Charging,Status</div></td></tr><tr><th><div>Position sensor</div></th><td><div>Yes</div></td></tr><tr><th><div>HD voice</div></th><td><div>Yes</div></td></tr><tr><th><div>Works with the Google Assistant</div></th><td><div>Yes</div></td></tr><tr><th><div>Works with Apple Siri</div></th><td><div>Yes</div></td></tr><tr><th><div>Works with Amazon Alexa</div></th><td><div>Yes</div></td></tr><tr><th><div>Country of origin</div></th><td><div>Malaysia</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Ports &amp; interfaces</strong></div></th></tr></thead><tbody><tr><th><div>Connectivity technology</div></th><td><div>Wired and wireless</div></td></tr><tr><th><div>USB connection</div></th><td><div>Yes</div></td></tr><tr><th><div>Bluetooth</div></th><td><div>Yes</div></td></tr><tr><th><div>Bluetooth profiles</div></th><td><div>A2DP,AAC,AVRCP,HFP,HSP,LDAC,SBC</div></td></tr><tr><th><div>Bluetooth version</div></th><td><div>5.2</div></td></tr><tr><th><div>Connection range</div></th><td><div>10 m</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Headphones</strong></div></th></tr></thead><tbody><tr><th><div>Headphone speaker position</div></th><td><div>Supraaural</div></td></tr><tr><th><div>Acoustic system</div></th><td><div>Closed</div></td></tr><tr><th><div>Headphone frequency range</div></th><td><div>4 - 40000 Hz</div></td></tr><tr><th><div>Impedance</div></th><td><div>48 Ohms</div></td></tr><tr><th><div>Headphone sensitivity</div></th><td><div>102 dB</div></td></tr><tr><th><div>Type of magnet</div></th><td><div>Neodymium</div></td></tr><tr><th><div>Speaker diameter</div></th><td><div>30 mm</div></td></tr><tr><th><div>Driver type</div></th><td><div>Dynamic</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Microphone</strong></div></th></tr></thead><tbody><tr><th><div>Microphone type</div></th><td><div>Built-in</div></td></tr><tr><th><div>Noise reduction effect</div></th><td><div>Yes</div></td></tr><tr><th><div>Microphone direction type</div></th><td><div>Omnidirectional</div></td></tr><tr><th><div>MEMS (Micro-Electro-Mechanical System) microphone</div></th><td><div>Yes</div></td></tr><tr><th><div>Noise cancellation microphone</div></th><td><div>Yes</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Battery</strong></div></th></tr></thead><tbody><tr><th><div>Battery controlled</div></th><td><div>Yes</div></td></tr><tr><th><div>Battery type</div></th><td><div>Built-in battery</div></td></tr><tr><th><div>Battery technology</div></th><td><div>Lithium-Ion (Li-Ion)</div></td></tr><tr><th><div>Battery life</div></th><td><div>40 hours</div></td></tr><tr><th><div>Battery capacity</div></th><td><div>1200 mAh</div></td></tr><tr><th><div>Input voltage (earbuds)</div></th><td><div>3.8 V</div></td></tr><tr><th><div>Continuous audio playback time</div></th><td><div>40 hours</div></td></tr><tr><th><div>Continuous audio playback time (with ANC)</div></th><td><div>30 hours</div></td></tr><tr><th><div>Continuous audio playback time (without ANC)</div></th><td><div>40 hours</div></td></tr><tr><th><div>Battery charging indication</div></th><td><div>Yes</div></td></tr><tr><th><div>Battery charging time</div></th><td><div>3.5 hours</div></td></tr><tr><th><div>Fast charging</div></th><td><div>Yes</div></td></tr><tr><th><div>Charging source</div></th><td><div>USB</div></td></tr><tr><th><div>Talk time (ANC on)</div></th><td><div>24 hours</div></td></tr><tr><th><div>Talk time (ANC off)</div></th><td><div>32 hours</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Weight and size</strong></div></th></tr></thead><tbody><tr><th><div>Weight</div></th><td><div>250 g</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Packaging</strong></div></th></tr></thead><tbody><tr><th><div>Packaging width</div></th><td><div>75.9 mm</div></td></tr><tr><th><div>Depth of packaging</div></th><td><div>216.7 mm</div></td></tr><tr><th><div>Package height</div></th><td><div>276.2 mm</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"margin: 0px; padding: 8px 10px; box-sizing: border-box; -webkit-user-drag: none; overflow: visible; color: inherit; font-family: inherit; font-size: inherit; position: relative; background-color: rgb(243, 243, 243); background-clip: padding-box; border: 1px solid rgb(225, 225, 225); text-align: left; vertical-align: bottom; font-weight: 400;\\\"><div><strong>Package Contents</strong></div></th></tr></thead><tbody><tr><th><div>Warranty card</div></th><td><div>Yes</div></td></tr><tr><th><div>Pouch</div></th><td><div>Yes</div></td></tr><tr><th><div>Included cables</div></th><td><div>USB</div></td></tr></tbody></table><p><br><!--EndFragment--><br><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"7215767\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 542.07,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317690,\n                    \"order_id\": 113664,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - US, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p>Specifications:</p><ul><li><u>​</u>Apple&nbsp;M4 chip with 12‑core CPU, 16‑core GPU, 16‑core Neural Engine</li><li>24GB unified memory</li><li>512GB SSD storage</li><li>14-inch Liquid&nbsp;Retina&nbsp;XDR display²</li><li>70W USB-C Power Adapter</li><li>Three Thunderbolt 4 ports, HDMI port, SDXC card slot, headphone jack, MagSafe&nbsp;3 port</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID — US English</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MX2E3N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2226.37,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2903.62,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239404,\n                    \"tracking_number\": \"18082534\",\n                    \"track_and_trace_url\": \"https://torphy.info/ut-beatae-veniam-sed-modi-et.html\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:12\",\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239405,\n                    \"tracking_number\": \"39868378\",\n                    \"track_and_trace_url\": \"https://www.frami.net/omnis-error-aperiam-perspiciatis-quam-magni-excepturi-quia.html\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:12\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 239406,\n                    \"tracking_number\": \"13847795\",\n                    \"track_and_trace_url\": \"https://beatty.com/maxime-rerum-eum-maxime-autem-distinctio\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:13\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-08-16T13:17:12.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:12.000000Z\"\n        },\n        {\n            \"id\": 113665,\n            \"number\": \"LP7FWUFPJS\",\n            \"total_products\": 2,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Lilliana Cremin\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144710,\n                \"city\": \"Friesenhaven\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Werner Hollow\",\n                \"address_line_2\": \"857\",\n                \"region\": \"Colorado\",\n                \"postcode\": \"64978-6343\",\n                \"postal_code\": \"64978-6343\",\n                \"additional_address_line\": \"Stravenue\",\n                \"name\": \"Lilliana\",\n                \"first_name\": \"Lilliana\",\n                \"last_name\": \"Cremin\",\n                \"email\": \"lilliana.cremin@workwizedemo.com\",\n                \"phone_number\": \"725-567-1317\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317691,\n                    \"order_id\": 113665,\n                    \"name\": \"Philips, V-line 243V7QJAB, 24\\\", Full HD, LCD, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Philips, Monitors, 24\\\", Available in: CA\",\n                    \"description\": \"<div>Quick tech specs</div><ul><li>line 243V7QJAB</li><li>24\\\" (23.8\\\" viewable)</li><li>IPS</li><li>1000:1</li><li>HDMI</li><li>DisplayPort</li><li>textured black</li><li>LED monitor</li></ul><ul><li>1920 x 1080 Full HD (1080p) @ 60 Hz</li><li>250 cd/m²</li><li>5 ms</li><li>VGA</li><li>speakers</li></ul><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5760375\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 143.22,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317692,\n                    \"order_id\": 113665,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2188.26,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239407,\n                    \"tracking_number\": \"47197314\",\n                    \"track_and_trace_url\": \"https://leannon.com/eum-dolor-magnam-perferendis-assumenda-autem-saepe-id-soluta.html\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 01, 2025\"\n                },\n                {\n                    \"id\": 239408,\n                    \"tracking_number\": \"43775608\",\n                    \"track_and_trace_url\": \"https://mann.com/\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:13\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 01, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-09-21T13:17:13.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:13.000000Z\"\n        },\n        {\n            \"id\": 113666,\n            \"number\": \"GZ7WTEL1WC\",\n            \"total_products\": 2,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Lilliana Cremin\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144710,\n                \"city\": \"Friesenhaven\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Werner Hollow\",\n                \"address_line_2\": \"857\",\n                \"region\": \"Colorado\",\n                \"postcode\": \"64978-6343\",\n                \"postal_code\": \"64978-6343\",\n                \"additional_address_line\": \"Stravenue\",\n                \"name\": \"Lilliana\",\n                \"first_name\": \"Lilliana\",\n                \"last_name\": \"Cremin\",\n                \"email\": \"lilliana.cremin@workwizedemo.com\",\n                \"phone_number\": \"725-567-1317\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317693,\n                    \"order_id\": 113666,\n                    \"name\": \"Apple, Air Pods Pro 2, Wireless, Binaural, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Headphones, Available in: EU\",\n                    \"description\": \"<p><strong>Specifications</strong></p><ul><li>Product: Apple AirPods Pro (2nd generation)</li><li>Category: Headphones</li><li>Brand: Apple</li><li>Color: White</li><li>EAN: 0195949052637</li></ul><p><strong>Features</strong></p><ul><li>Headphone Type: In-Ear</li><li>Connection Type: Wireless (Bluetooth)</li><li>Noise-Cancelling: Active</li><li>Compatibility: Apple compatible</li><li>Includes: Charging case, Microphone, Voice-assistant</li><li>IP Rating: IP54 dust and splash resistant</li><li>Battery Life: 8 hours (without noise cancelling), 6 hours (with noise cancelling)</li><li>Case Battery Capacity: 523mAh</li><li>Charging Connection: Wireless, USB type-C</li><li>Weight: 10.6g</li><li>Accessories: Power cable</li></ul><p><br><!--EndFragment--><br><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6155421\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 251.9,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317694,\n                    \"order_id\": 113666,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2296.94,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239409,\n                    \"tracking_number\": \"18516214\",\n                    \"track_and_trace_url\": \"https://ritchie.com/totam-error-distinctio-ad-vero-est\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 10, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:13\",\n                    \"expected_delivery_time_range\": \"1 - 4 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 239410,\n                    \"tracking_number\": \"81186835\",\n                    \"track_and_trace_url\": \"https://www.rolfson.org/iusto-est-ut-suscipit\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:13.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:13\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-12-17T13:17:13.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:13.000000Z\"\n        },\n        {\n            \"id\": 113667,\n            \"number\": \"TGIMZF0F0B\",\n            \"total_products\": 2,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Joelle Leffler\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144711,\n                \"city\": \"East Beatrice\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Bartell Route\",\n                \"address_line_2\": \"72490\",\n                \"region\": \"Ohio\",\n                \"postcode\": \"85760\",\n                \"postal_code\": \"85760\",\n                \"additional_address_line\": \"Forks\",\n                \"name\": \"Joelle\",\n                \"first_name\": \"Joelle\",\n                \"last_name\": \"Leffler\",\n                \"email\": \"joelle.leffler@workwizedemo.com\",\n                \"phone_number\": \"760-493-8481\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317695,\n                    \"order_id\": 113667,\n                    \"name\": \"Philips, B Line 276B1, 27\\\", QHD, LCD, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Philips, Monitors, 27\\\", Available in: US, PR\",\n                    \"description\": \"<p><!--StartFragment--></p><table><tbody><tr><td><div>The Philips USB-C monitor replaces cable clutter. View QHD image, recharge a laptop, all at the same time with a single USB-C cable. It offers daisy chain for multi-display setup and TUV Eye Comfort certification to reduce eye fatigue.</div><div><br></div><div><strong>Specifications</strong><br>     •\\tLED monitor<br>     •\\t2560 x 1440 QHD @ 75 Hz<br>     •\\t350 cd/m²<br>     •\\t4 ms<br>     •\\tDisplayPort<br>     •\\tspeakers<br>     •\\tfor exone go Business 1570 II; go Expert 1775; go Workstation 1575; go+   Business 1680<br>     •\\t27\\\"<br>     •\\tIPS<br>     •\\t1000:1<br>     •\\t2xHDMI<br>     •\\tUSB-C<br>     •\\tblack texture</div></td><!--EndFragment--></tr></tbody></table>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6664961\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 491.56,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317696,\n                    \"order_id\": 113667,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - US, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p>Specifications:</p><ul><li><u>​</u>Apple&nbsp;M4 chip with 12‑core CPU, 16‑core GPU, 16‑core Neural Engine</li><li>24GB unified memory</li><li>512GB SSD storage</li><li>14-inch Liquid&nbsp;Retina&nbsp;XDR display²</li><li>70W USB-C Power Adapter</li><li>Three Thunderbolt 4 ports, HDMI port, SDXC card slot, headphone jack, MagSafe&nbsp;3 port</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID — US English</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MX2E3N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2226.37,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2717.93,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239411,\n                    \"tracking_number\": \"36449000\",\n                    \"track_and_trace_url\": \"https://www.koss.info/vitae-fugit-ullam-voluptas-fuga-quia.html\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239412,\n                    \"tracking_number\": \"22689939\",\n                    \"track_and_trace_url\": \"https://www.trantow.com/nihil-commodi-tempora-qui-at-nihil\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:14\",\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 29, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-12-23T13:17:14.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:14.000000Z\"\n        },\n        {\n            \"id\": 113668,\n            \"number\": \"DBJT2FTZQX\",\n            \"total_products\": 5,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Joelle Leffler\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144711,\n                \"city\": \"East Beatrice\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Bartell Route\",\n                \"address_line_2\": \"72490\",\n                \"region\": \"Ohio\",\n                \"postcode\": \"85760\",\n                \"postal_code\": \"85760\",\n                \"additional_address_line\": \"Forks\",\n                \"name\": \"Joelle\",\n                \"first_name\": \"Joelle\",\n                \"last_name\": \"Leffler\",\n                \"email\": \"joelle.leffler@workwizedemo.com\",\n                \"phone_number\": \"760-493-8481\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317697,\n                    \"order_id\": 113668,\n                    \"name\": \"Logitech, C922, HD Pro, Webcams\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Webcams, Available in: EU\",\n                    \"description\": \"<p>STREAM IN FULL HIGH-DEF 1080P Now you can stream and record vibrant, true-to-life video.<span>&nbsp;</span>The glass lens and Full HD 1080p capture the finest details, bright and natural colors in smooth video at 30 fps, while the 78-degree field of view is suitable for two people.<span>&nbsp;</span>Use the app to zoom and pan with the camera.</p><p>STREAMING IN HD 720P AT 60FPS Serious streamers need the super-fast 60fps frame rate at 720p for exceptionally smooth video, and the C922 delivers just that.<span>&nbsp;</span>You can broadcast live without delay or distortion.</p><p>BRIGHTER IMAGES Automatic HD light correction fine-tunes the C922 to match lighting conditions for pin-sharp high definition images, even when you're in dimly lit environments.</p><p>FULLY STEREOPHONIC The C922 Pro Webcam has two microphones, one on each side of the camera, allowing the webcam to capture sound more realistically from any angle, so your voice sounds natural and clear.</p><p>INCLUDING 3 MONTHS FREE XSPLIT PREMIUM LICENSE The C922X provides you with the complete feature set of both XSplit Broadcaster and XSplit Gamecaster, providing the all-in-one live streaming solution with everything you need to broadcast like a pro.</p><p>ALL-IN-ONE CONTENT CREATION WITH CAPTURE Logitech Capture lets you capture high-quality video content as soon as you plug in your new webcam.<span>&nbsp;</span>You can adjust your shots, change your camera settings and even shoot vertical videos in one intuitive interface.</p><p><br></p><table><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Performance</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Maximum video resolution</div></th><td><div>1920x1080 pixels</div></td></tr><tr><td><div><br></div></td><th><div>Full HD</div></th><td><div>Yes</div></td></tr><tr><td><div><br></div></td><th><div>Maximum frame rate</div></th><td><div>60fps</div></td></tr><tr><td><div><br></div></td><th><div>Resolution at recording speed</div></th><td><div>1920x1080@30fps, 1280x720@60fps</div></td></tr><tr><td><div><br></div></td><th><div>Supported video modes</div></th><td><div>720p, 1080p</div></td></tr><tr><td><div><br></div></td><th><div>Supported video formats</div></th><td><div>H.264</div></td></tr><tr><td><div><br></div></td><th><div>Photo function</div></th><td><div>Yes</div></td></tr><tr><td><div><br></div></td><th><div>Automatic light correction</div></th><td><div>Yes</div></td></tr><tr><td><div><br></div></td><th><div>Diagonal field of view</div></th><td><div>87°</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Design</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Built-in microphone</div></th><td><div>Yes</div></td></tr><tr><td><div><br></div></td><th><div>Number of microphones</div></th><td><div>2</div></td></tr><tr><td><div><br></div></td><th><div>Microphone direction type</div></th><td><div>Omnidirectional</div></td></tr><tr><td><div><br></div></td><th><div>Interface</div></th><td><div>USB</div></td></tr><tr><td><div><br></div></td><th><div>Color of the product</div></th><td><div>Black</div></td></tr><tr><td><div><br></div></td><th><div>Mounting method</div></th><td><div>Clip/stand</div></td></tr><tr><td><div><br></div></td><th><div>Lens material</div></th><td><div>Glass</div></td></tr><tr><td><div><br></div></td><th><div>Built-in flash</div></th><td><div>no</div></td></tr><tr><td><div><br></div></td><th><div>Cord length</div></th><td><div>1.8m</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Software</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Supports Windows</div></th><td><div>Windows 10 Education, Windows 10 Education x64, Windows 10 Enterprise, Windows 10 Enterprise x64, Windows 10 Home, Windows 10 Home x64, Windows 10 Pro, Windows 10 Pro x64, Windows 8 x64, Windows 7 Home Premium, Windows 7 Home Premium x64 , Windows 7 Professional, Windows 7 Professional x64, Windows 7 Starter, Windows 7 Starter x64, Windows 7 Ultimate, Windows 7 Ultimate x64, Windows 10, Windows 8, Windows 7 Enterprise, Windows 7 Enterprise x64, Windows 8 Enterprise, Windows 8 Enterprise x64, Windows 8 Pro, Windows 8 Pro x64, Windows 7 Home Basic, Windows 7 Home Basic x64</div></td></tr><tr><td><div><br></div></td><th><div>Supports Mac operating system</div></th><td><div>Mac OS X 10.9 Mavericks, Mac OS X 10.10 Yosemite, Mac OS X 10.11 El Capitan, Mac OS X 10.12 Sierra</div></td></tr><tr><td><div><br></div></td><th><div>Supported mobile operating systems</div></th><td><div>Android 5.0, Android 5.1</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Weight and size</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Width</div></th><td><div>95mm</div></td></tr><tr><td><div><br></div></td><th><div>Depth</div></th><td><div>71mm</div></td></tr><tr><td><div><br></div></td><th><div>Height</div></th><td><div>44mm</div></td></tr><tr><td><div><br></div></td><th><div>Weight</div></th><td><div>162g</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Packaging</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Type of packaging</div></th><td><div>Box</div></td></tr><tr><td><div><br></div></td><th><div>Package width</div></th><td><div>52.2mm</div></td></tr><tr><td><div><br></div></td><th><div>Depth packaging</div></th><td><div>115.5mm</div></td></tr><tr><td><div><br></div></td><th><div>Pack height</div></th><td><div>86mm</div></td></tr><tr><td><div><br></div></td><th><div>Packing weight</div></th><td><div>301.3g</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Contents of the package</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Instructions</div></th><td><div>Yes</div></td></tr><tr><td><div><br></div></td><th><div>Tripod included</div></th><td><div>Yes</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 8px 10px; font-weight: 400;\\\"><div><strong>Logistic data</strong></div></th></tr></thead><tbody><tr><td><div><br></div></td><th><div>Harmonized System Code (HS)</div></th><td><div>85258900</div></td></tr><tr><td><div><br></div></td><th><div>(Outer) main packing width</div></th><td><div>223mm</div></td></tr><tr><td><div><br></div></td><th><div>(Outer) master package length</div></th><td><div>245mm</div></td></tr><tr><td><div><br></div></td><th><div>(Outer) main packing height</div></th><td><div>99mm</div></td></tr><tr><td><div><br></div></td><th><div>(Outer) master packaging gross weight</div></th><td><div>2579g</div></td></tr><tr><td><div><br></div></td><th><div>GTIN (EAN/UPC) number (outer) main packaging</div></th><td><div>50992060669714</div></td></tr></tbody></table><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"948240\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 90.86,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317698,\n                    \"order_id\": 113668,\n                    \"name\": \"Logitech, MK270, QWERTY - US, Keyboard & Mouse Combos\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Logitech, Keyboard & Mouse Combos, QWERTY, Available in: CA\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Product: Logitech MK270 Wireless Keyboard &amp; Mouse Combo</li><li>Category: Keyboards &amp; Mice Combo</li><li>Brand: Logitech</li><li>EAN: 097855089816</li></ul><p><strong>Keyboard Specifications</strong></p><ul><li>Connection Type: Wireless (2.4 GHz Radio/RF)</li><li>Dedicated Multimedia Keys: Yes</li><li>Backlighting: No</li><li>Wrist Rest: No</li><li>Battery Requirements: 2x AAA Alkaline</li><li>Maximum Battery Life: 3 Years</li><li>Dimensions: 17.4 x 5.9 x 0.7\\\" / 441 x 149 x 18 mm</li></ul><p><strong>Mouse Specifications</strong></p><ul><li>Sensor Type: Optical</li><li>Scroll Type: Scroll Wheel</li><li>Number of Buttons: 3</li><li>Mouse Hand Orientation: Ambidextrous</li><li>Battery Requirements: 1x AA Alkaline</li><li>Maximum Battery Life: 1 Year</li><li>Dimensions: 3.9 x 2.4 x 1.5\\\" / 99 x 60 x 39 mm</li></ul><p><strong>Connectivity</strong></p><ul><li>Connection Type: Wireless (2.4 GHz RF)</li><li>Host Connection: USB-A</li><li>Wireless Range: 32.8' / 10 m</li><li>Full-Functionality OS Support: Chrome OS, Windows</li></ul><p><strong>Accessory</strong></p><ul><li>Dimensions: 0.7 x 0.6 x 0.3\\\" / 18.7 x 14.4 x 6.6 mm (Receiver)</li><li>Weight: 0.1 oz / 2 g (Receiver)</li></ul><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"3027327\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 41.18,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317699,\n                    \"order_id\": 113668,\n                    \"name\": \"Logitech, MX Keys, Wireless, Bluetooth, QWERTY - UK, Keyboards\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Logitech, Wireless, Keyboards, QWERTY UK, Available in: EU\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;Product description: Logitech MX Keys - Keyboard - QWERTY - US International - Graphite</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Type of Device: Keyboard</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Backlit: Yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Interface: Bluetooth,2.4 GHz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logitech Unifying wireless receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Localisation and Format: QWERTY US International</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Numeric Keypad: Yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Colour: Graphite</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Dimensions (WxDxH): 43.02 cm x 13.163 cm x 2.05 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 810g</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4954723\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 124.05,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317700,\n                    \"order_id\": 113668,\n                    \"name\": \"Kensington, UH1400p, Docking Stations & USB Hubs\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Kensington, Docking Stations & USB Hubs, Available in: US, PR\",\n                    \"description\": \"<p>General</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product Type: Driverless USB-C 8-in-1 Mobile Dock</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection: USB-C 3.2 Gen 1</p><p><br></p><p>Ports</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDMI 2.0 (4K @ 60Hz)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;3 x USB-A 3.2 Gen 1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;1 x USB-C 3.2 Gen 1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;SD and Micro SD 3.0 UHS-I-Cardholder</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6740041\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 108.4,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317701,\n                    \"order_id\": 113668,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - US, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p>Specifications:</p><ul><li><u>​</u>Apple&nbsp;M4 chip with 12‑core CPU, 16‑core GPU, 16‑core Neural Engine</li><li>24GB unified memory</li><li>512GB SSD storage</li><li>14-inch Liquid&nbsp;Retina&nbsp;XDR display²</li><li>70W USB-C Power Adapter</li><li>Three Thunderbolt 4 ports, HDMI port, SDXC card slot, headphone jack, MagSafe&nbsp;3 port</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID — US English</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MX2E3N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2226.37,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2590.86,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239413,\n                    \"tracking_number\": \"55455971\",\n                    \"track_and_trace_url\": \"https://grimes.com/tempora-repudiandae-inventore-recusandae-excepturi.html\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:14\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239414,\n                    \"tracking_number\": \"93123038\",\n                    \"track_and_trace_url\": \"https://www.crooks.biz/reiciendis-at-doloribus-veniam-aliquam-sed-dolorum-quia\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 239415,\n                    \"tracking_number\": \"81347341\",\n                    \"track_and_trace_url\": \"https://www.corkery.com/\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:14.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:14\",\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 239416,\n                    \"tracking_number\": \"45458776\",\n                    \"track_and_trace_url\": \"https://rodriguez.net/quia-quis-sequi-veniam-beatae\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239417,\n                    \"tracking_number\": \"28815678\",\n                    \"track_and_trace_url\": \"https://ferry.org/recusandae-temporibus-eaque-quis-fugiat-laudantium\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 29, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-08-13T13:17:14.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:14.000000Z\"\n        },\n        {\n            \"id\": 113669,\n            \"number\": \"0KWDBVKYEC\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Esta O'Keefe\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144712,\n                \"city\": \"Lake Zoieshire\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Terry Greens\",\n                \"address_line_2\": \"37743\",\n                \"region\": \"North Carolina\",\n                \"postcode\": \"66172-7520\",\n                \"postal_code\": \"66172-7520\",\n                \"additional_address_line\": \"Park\",\n                \"name\": \"Esta\",\n                \"first_name\": \"Esta\",\n                \"last_name\": \"O'Keefe\",\n                \"email\": \"esta.okeefe@workwizedemo.com\",\n                \"phone_number\": \"+1-714-310-9373\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317702,\n                    \"order_id\": 113669,\n                    \"name\": \"iiyama, ProLite XCB3494WQSN-B5, 34\\\", Ultrawide Quad HD, VA, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"iiyama, Monitors, 34\\\", Available in: EU\",\n                    \"description\": \"<p>Display Characteristics</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Design: curved</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Diagonal: 34\\\", 86.4cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Panel: VA panel, matte finish</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Curved: 1500R</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Native resolution: 3440 x 1440 @120Hz (4.9 megapixel UWQHD)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Aspect ratio: 0,88125</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Panel brightness: 300 cd/m²</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Static contrast: 125,000694444444</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Advanced contrast: 80M:1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Response time (MPRT): 0.4ms</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Viewing zone: horizontal/vertical: 178°/178°, right/left: 89°/89°, up/down: 89°/89°</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Colour support: 16.7mln (sRGB: 99%; NTSC: 93%)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Horizontal Sync: 30 - 185kHz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Viewable area W x H: 797.2 x 333.7mm, 31.4 x 13.1\\\"</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Pixel pitch: 0.232mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Colour: matte, black</p><p><br></p><p><br></p><p>Interfaces/ Connectors/ Controls</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Signal input: HDMI x1 (3440 x ᠎1440@ 100Hz), DisplayPort x1 (3440 x ᠎1440@ 120Hz), USB-C x1 (Power delivery 65W)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB HUB: x3 (v.3.0 (DC5V, 900mA))</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C dock: x1 (Power delivery 65W, LAN, USB 3.0)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDCP: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Headphone connector: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;RJ45 (LAN): x1</p><p><br></p><p><br></p><p>Features</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Blue light reducer: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Flicker free: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;FreeSync support: HDMI: 3440 x 1440 @48-100Hz, DP / USB-C: 3440 x 1440 @48-120Hz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Extra: i-Style Colour</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;OSD languages: EN, DE, FR, ES, IT, PT, RU, JP, NL, PL</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Control buttons: joystick controller: Push (Menu), Up, Down, Left (Eco), Right (Blue Light Reducer), Input, Volume +, Volume -, Power</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;User controls: picture adjust (brightness, contrast, Eco, blue light reducer, ACR, OD, black tuner), image adjust (video mode adjust, sharp and soft, X-Res technology), colour settings (gamma, 6-axis, colour temp., i-Style colour), signal select, audio adjust (volume, mute), setup menu (OSD H. Position, OSD V. Position, OSD time, language), extra1 (HDR, FreeSync PremGBm, HDMI range, MBR), Extra2 (reset, DDCCI, opening logo, LED, USB-C, KVM, USB Standby mode, information)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Speakers: 2 x 2W</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Convenience: Kensington-lock™ prepared, DDC2B</p><p><br></p><p><br></p><p>Mechanical</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Display position adjustments: height, tilt</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height adjustment: 130mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Tilt angle: 20° up; 3° down</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;VESA mounting: 100 x 100mm</p><p><br></p><p><br></p><p>Accessories Included</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables: power, USB, HDMI, DP, USB-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Other: quick start guide, safety guide</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5115084\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 415.4,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317703,\n                    \"order_id\": 113669,\n                    \"name\": \"Jabra, Evolve2 65 MS Stereo USB-C, Wireless, On-ear, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Jabra, Headphones, Available in: US, PR\",\n                    \"description\": \"<table><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Achievement</h3></th></tr></thead><tbody><tr><th><div>Type of product</div></th><td><div>Headset</div></td></tr><tr><th><div>Wearing method</div></th><td><div>Headband</div></td></tr><tr><th><div>Suggested Use</div></th><td><div>Office/Call Center</div></td></tr><tr><th><div>Headset type</div></th><td><div>Binaural</div></td></tr><tr><th><div>Color of the product</div></th><td><div>Black</div></td></tr><tr><th><div>Controls</div></th><td><div>Mute</div></td></tr><tr><th><div>Volume</div></th><td><div>Bud</div></td></tr><tr><th><div>Cord length</div></th><td><div>1.2 m</div></td></tr><tr><th><div>Detachable cable</div></th><td><div>Yes</div></td></tr><tr><th><div>LED indicators</div></th><td><div>Yes</div></td></tr><tr><th><div>Hearing protection technologies</div></th><td><div>Jabra PeakStop,Jabra Safetone G616</div></td></tr><tr><th><div>Play music</div></th><td><div>Yes</div></td></tr><tr><th><div>Number of simultaneously connected devices (max)</div></th><td><div>2</div></td></tr><tr><th><div>Auto-connect</div></th><td><div>Yes</div></td></tr><tr><th><div>Plug and play</div></th><td><div>Yes</div></td></tr><tr><th><div>Country of origin</div></th><td><div>China</div></td></tr><tr><th><div>Certification</div></th><td><div>MS Team</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Ports &amp; interfaces</h3></th></tr></thead><tbody><tr><th><div>Connectivity technology</div></th><td><div>Wireless</div></td></tr><tr><th><div>USB connection</div></th><td><div>Yes</div></td></tr><tr><th><div>USB connector</div></th><td><div>USB Type-C</div></td></tr><tr><th><div>Bluetooth</div></th><td><div>Yes</div></td></tr><tr><th><div>Bluetooth profiles</div></th><td><div>AVRCP</div></td></tr><tr><th><div>Bluetooth version</div></th><td><div>5.0</div></td></tr><tr><th><div>Connection range</div></th><td><div>30 m</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Headphones</h3></th></tr></thead><tbody><tr><th><div>Maximum input power</div></th><td><div>30 mW</div></td></tr><tr><th><div>Position speakers headphones</div></th><td><div>Supraaural</div></td></tr><tr><th><div>Acoustic system</div></th><td><div>Closed</div></td></tr><tr><th><div>Headphone frequency range</div></th><td><div>20 - 20000 Hz</div></td></tr><tr><th><div>Headphone sensitivity</div></th><td><div>117 dB</div></td></tr><tr><th><div>Speaker diameter</div></th><td><div>40 mm</div></td></tr><tr><th><div>Noise reduction</div></th><td><div>Yes</div></td></tr><tr><th><div>Noise reduction</div></th><td><div>Yes</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Microphone</h3></th></tr></thead><tbody><tr><th><div>Microphone type</div></th><td><div>Tree</div></td></tr><tr><th><div>Microphone frequency</div></th><td><div>100 - 8000 Hz</div></td></tr><tr><th><div>Microphone sensitivity</div></th><td><div>-26 dB</div></td></tr><tr><th><div>Flip microphone</div></th><td><div>Yes</div></td></tr><tr><th><div>MEMS (Micro-Electro-Mechanical System) microphone</div></th><td><div>Yes</div></td></tr><tr><th><div>Microphone mute</div></th><td><div>Yes</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Battery</h3></th></tr></thead><tbody><tr><th><div>Battery controlled</div></th><td><div>Yes</div></td></tr><tr><th><div>Battery type</div></th><td><div>Built-in battery</div></td></tr><tr><th><div>Battery technology</div></th><td><div>Lithium-Ion (Li-Ion)</div></td></tr><tr><th><div>Battery life</div></th><td><div>37 hours</div></td></tr><tr><th><div>Continuous audio playback time</div></th><td><div>24 hours</div></td></tr><tr><th><div>Talk</div></th><td><div>24 hours</div></td></tr><tr><th><div>Battery charging indication</div></th><td><div>Yes</div></td></tr><tr><th><div>Battery/Battery charging time</div></th><td><div>1.5 hours</div></td></tr><tr><th><div>Fast charging</div></th><td><div>Yes</div></td></tr><tr><th><div>Fast charging time</div></th><td><div>15 min</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Minimum system requirements</h3></th></tr></thead><tbody><tr><th><div>Supports Windows</div></th><td><div>Yes</div></td></tr><tr><th><div>Supports Mac operating system</div></th><td><div>Yes</div></td></tr><tr><th><div>Supported mobile operating systems</div></th><td><div>Android,iOS</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Environmental requirements</h3></th></tr></thead><tbody><tr><th><div>Operating temperature (T-T)</div></th><td><div>-10 - 45 °C</div></td></tr><tr><th><div>Storage temperature</div></th><td><div>-5 - 45 °C</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Weight and size</h3></th></tr></thead><tbody><tr><th><div>Width</div></th><td><div>157 mm</div></td></tr><tr><th><div>Depth</div></th><td><div>60.5 mm</div></td></tr><tr><th><div>Height</div></th><td><div>186 mm</div></td></tr><tr><th><div>Weight</div></th><td><div>176.4 g</div></td></tr></tbody></table><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6030595\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 271.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317704,\n                    \"order_id\": 113669,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2702.44,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239418,\n                    \"tracking_number\": \"65761285\",\n                    \"track_and_trace_url\": \"https://www.ritchie.net/aut-exercitationem-sequi-autem\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 30, 2025\"\n                },\n                {\n                    \"id\": 239419,\n                    \"tracking_number\": \"81517318\",\n                    \"track_and_trace_url\": \"https://www.bode.com/sed-atque-perferendis-quis\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 29, 2025\"\n                },\n                {\n                    \"id\": 239420,\n                    \"tracking_number\": \"41690741\",\n                    \"track_and_trace_url\": \"https://koss.net/\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:15\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-10-06T13:17:15.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:15.000000Z\"\n        },\n        {\n            \"id\": 113670,\n            \"number\": \"U298ZDHGOE\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Esta O'Keefe\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144712,\n                \"city\": \"Lake Zoieshire\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Terry Greens\",\n                \"address_line_2\": \"37743\",\n                \"region\": \"North Carolina\",\n                \"postcode\": \"66172-7520\",\n                \"postal_code\": \"66172-7520\",\n                \"additional_address_line\": \"Park\",\n                \"name\": \"Esta\",\n                \"first_name\": \"Esta\",\n                \"last_name\": \"O'Keefe\",\n                \"email\": \"esta.okeefe@workwizedemo.com\",\n                \"phone_number\": \"+1-714-310-9373\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317705,\n                    \"order_id\": 113670,\n                    \"name\": \"Philips, V-LINE 273V7QJAB, 27\\\", Full HD, IPS, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Philips, Monitors, 27\\\", Available in: CA\",\n                    \"description\": \"<p>General</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product Type: Philips V-Line Full HD 27\\\" Led Monitor (Model: 273V7QJAB)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Size: 27\\\"</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Color: Black</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Built-in Speakers</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Available ports: DisplayPort, HDMI, VGA (HD-15)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Included cables: 1 x Audio cable, 1 x HDMI cable, 1 x VGA cable</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Resolution: 1920 x 1080</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Color: Black</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Built-in Speakers</p><p><br></p><p><br></p><p>Dimensions</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;WxDxH: 24.1 x 8.9 x 17.8 inch</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 10.05 lbs</p><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6008306\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 195.62,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317706,\n                    \"order_id\": 113670,\n                    \"name\": \"iiyama, ProLite XCB3494WQSN-B5, 34\\\", Ultrawide Quad HD, VA, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"iiyama, Monitors, 34\\\", Available in: EU\",\n                    \"description\": \"<p>Display Characteristics</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Design: curved</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Diagonal: 34\\\", 86.4cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Panel: VA panel, matte finish</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Curved: 1500R</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Native resolution: 3440 x 1440 @120Hz (4.9 megapixel UWQHD)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Aspect ratio: 0,88125</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Panel brightness: 300 cd/m²</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Static contrast: 125,000694444444</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Advanced contrast: 80M:1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Response time (MPRT): 0.4ms</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Viewing zone: horizontal/vertical: 178°/178°, right/left: 89°/89°, up/down: 89°/89°</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Colour support: 16.7mln (sRGB: 99%; NTSC: 93%)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Horizontal Sync: 30 - 185kHz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Viewable area W x H: 797.2 x 333.7mm, 31.4 x 13.1\\\"</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Pixel pitch: 0.232mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Colour: matte, black</p><p><br></p><p><br></p><p>Interfaces/ Connectors/ Controls</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Signal input: HDMI x1 (3440 x ᠎1440@ 100Hz), DisplayPort x1 (3440 x ᠎1440@ 120Hz), USB-C x1 (Power delivery 65W)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB HUB: x3 (v.3.0 (DC5V, 900mA))</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C dock: x1 (Power delivery 65W, LAN, USB 3.0)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDCP: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Headphone connector: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;RJ45 (LAN): x1</p><p><br></p><p><br></p><p>Features</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Blue light reducer: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Flicker free: yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;FreeSync support: HDMI: 3440 x 1440 @48-100Hz, DP / USB-C: 3440 x 1440 @48-120Hz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Extra: i-Style Colour</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;OSD languages: EN, DE, FR, ES, IT, PT, RU, JP, NL, PL</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Control buttons: joystick controller: Push (Menu), Up, Down, Left (Eco), Right (Blue Light Reducer), Input, Volume +, Volume -, Power</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;User controls: picture adjust (brightness, contrast, Eco, blue light reducer, ACR, OD, black tuner), image adjust (video mode adjust, sharp and soft, X-Res technology), colour settings (gamma, 6-axis, colour temp., i-Style colour), signal select, audio adjust (volume, mute), setup menu (OSD H. Position, OSD V. Position, OSD time, language), extra1 (HDR, FreeSync PremGBm, HDMI range, MBR), Extra2 (reset, DDCCI, opening logo, LED, USB-C, KVM, USB Standby mode, information)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Speakers: 2 x 2W</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Convenience: Kensington-lock™ prepared, DDC2B</p><p><br></p><p><br></p><p>Mechanical</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Display position adjustments: height, tilt</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height adjustment: 130mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Tilt angle: 20° up; 3° down</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;VESA mounting: 100 x 100mm</p><p><br></p><p><br></p><p>Accessories Included</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables: power, USB, HDMI, DP, USB-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Other: quick start guide, safety guide</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5115084\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 415.4,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317707,\n                    \"order_id\": 113670,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - US, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p>Specifications:</p><ul><li><u>​</u>Apple&nbsp;M4 chip with 12‑core CPU, 16‑core GPU, 16‑core Neural Engine</li><li>24GB unified memory</li><li>512GB SSD storage</li><li>14-inch Liquid&nbsp;Retina&nbsp;XDR display²</li><li>70W USB-C Power Adapter</li><li>Three Thunderbolt 4 ports, HDMI port, SDXC card slot, headphone jack, MagSafe&nbsp;3 port</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID — US English</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MX2E3N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2226.37,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2837.39,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239421,\n                    \"tracking_number\": \"20582594\",\n                    \"track_and_trace_url\": \"https://bogisich.com/est-exercitationem-autem-maxime-sunt-debitis-vel-aliquam.html\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:15.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 01, 2025\"\n                },\n                {\n                    \"id\": 239422,\n                    \"tracking_number\": \"54146700\",\n                    \"track_and_trace_url\": \"https://www.west.com/esse-accusamus-voluptatibus-sunt-et\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 239423,\n                    \"tracking_number\": \"22577901\",\n                    \"track_and_trace_url\": \"https://nolan.info/architecto-quisquam-aut-aut\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:16\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-08-28T13:17:15.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:15.000000Z\"\n        },\n        {\n            \"id\": 113671,\n            \"number\": \"LEVXL0DSEO\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Laverna Schowalter\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144713,\n                \"city\": \"Johnsborough\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Quigley Manors\",\n                \"address_line_2\": \"9295\",\n                \"region\": \"Alabama\",\n                \"postcode\": \"48028-3656\",\n                \"postal_code\": \"48028-3656\",\n                \"additional_address_line\": \"Stravenue\",\n                \"name\": \"Laverna\",\n                \"first_name\": \"Laverna\",\n                \"last_name\": \"Schowalter\",\n                \"email\": \"laverna.schowalter@workwizedemo.com\",\n                \"phone_number\": \"239-965-1620\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317708,\n                    \"order_id\": 113671,\n                    \"name\": \"Jabra, Evolve2 40SE UC Mono USB-C, Wired, Monaural, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Jabra, Headphones, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul>    <li>Product: Jabra Evolve2 40 SE</li><li>Category: Headphones</li><li>Brand: Jabra</li><li>EAN: 5706991028034</li><li>Color: Black</li><li>Available Since: 16 June 2023</li></ul><p><strong>Headphones Specifications</strong></p><ul>    <li>Headphone Type: On-Ear</li><li>Connection Type: Thread</li><li>Noise-Cancelling: Passive</li><li>Remote/Volume Control: Universal</li><li>Connections (audio): USB 2.0 Type-C</li><li>Minimum Frequency: 20Hz</li><li>Maximum Frequency: 20kHz</li><li>Sensitivity: 117dBSPL/mW</li><li>Speaker Diameter: 40mm</li><li>Weight (grams): 113g</li></ul><p><strong>Manufacturer's Information</strong></p><ul>    <li>Manufacturer's Warranty: 2 years carry in</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4678386\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 92.65,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317709,\n                    \"order_id\": 113671,\n                    \"name\": \"Apple, Air Pods Pro 2, Wireless, Binaural, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Headphones, Available in: EU\",\n                    \"description\": \"<p><strong>Specifications</strong></p><ul><li>Product: Apple AirPods Pro (2nd generation)</li><li>Category: Headphones</li><li>Brand: Apple</li><li>Color: White</li><li>EAN: 0195949052637</li></ul><p><strong>Features</strong></p><ul><li>Headphone Type: In-Ear</li><li>Connection Type: Wireless (Bluetooth)</li><li>Noise-Cancelling: Active</li><li>Compatibility: Apple compatible</li><li>Includes: Charging case, Microphone, Voice-assistant</li><li>IP Rating: IP54 dust and splash resistant</li><li>Battery Life: 8 hours (without noise cancelling), 6 hours (with noise cancelling)</li><li>Case Battery Capacity: 523mAh</li><li>Charging Connection: Wireless, USB type-C</li><li>Weight: 10.6g</li><li>Accessories: Power cable</li></ul><p><br><!--EndFragment--><br><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6155421\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 251.9,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317710,\n                    \"order_id\": 113671,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2389.59,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239424,\n                    \"tracking_number\": \"43401294\",\n                    \"track_and_trace_url\": \"https://waelchi.com/dolorem-quia-voluptatibus-non-qui-ea-qui.html\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 02, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239425,\n                    \"tracking_number\": \"57320435\",\n                    \"track_and_trace_url\": \"https://www.batz.net/adipisci-voluptatem-reprehenderit-occaecati-ipsam-id-eveniet-velit.html\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                },\n                {\n                    \"id\": 239426,\n                    \"tracking_number\": \"49354024\",\n                    \"track_and_trace_url\": \"https://www.schimmel.com/veritatis-ducimus-molestiae-id-mollitia-nulla-odio-nobis-qui\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:16.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:16\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Jan 30, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-11-14T13:17:16.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:16.000000Z\"\n        },\n        {\n            \"id\": 113672,\n            \"number\": \"OQTQADKX4R\",\n            \"total_products\": 5,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Antone Kerluke\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144714,\n                \"city\": \"South Enrique\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Veum Land\",\n                \"address_line_2\": \"38672\",\n                \"region\": \"Idaho\",\n                \"postcode\": \"60826\",\n                \"postal_code\": \"60826\",\n                \"additional_address_line\": \"Pike\",\n                \"name\": \"Antone\",\n                \"first_name\": \"Antone\",\n                \"last_name\": \"Kerluke\",\n                \"email\": \"antone.kerluke@workwizedemo.com\",\n                \"phone_number\": \"(817) 358-1104\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317711,\n                    \"order_id\": 113672,\n                    \"name\": \"StarTech.com, USB-C Multiport Adapter, 14mm, Adapters & Cables\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"StarTech.com, Adapter & Cables, Available in: EU\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;Increase your productivity</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connect your devices</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Integrated SD card reader</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Charge your laptop and peripherals</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4604800\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 68.18,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317712,\n                    \"order_id\": 113672,\n                    \"name\": \"Jabra, Evolve2 65 MS Stereo USB-C, Wireless, On-ear, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Jabra, Headphones, Available in: US, PR\",\n                    \"description\": \"<table><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Achievement</h3></th></tr></thead><tbody><tr><th><div>Type of product</div></th><td><div>Headset</div></td></tr><tr><th><div>Wearing method</div></th><td><div>Headband</div></td></tr><tr><th><div>Suggested Use</div></th><td><div>Office/Call Center</div></td></tr><tr><th><div>Headset type</div></th><td><div>Binaural</div></td></tr><tr><th><div>Color of the product</div></th><td><div>Black</div></td></tr><tr><th><div>Controls</div></th><td><div>Mute</div></td></tr><tr><th><div>Volume</div></th><td><div>Bud</div></td></tr><tr><th><div>Cord length</div></th><td><div>1.2 m</div></td></tr><tr><th><div>Detachable cable</div></th><td><div>Yes</div></td></tr><tr><th><div>LED indicators</div></th><td><div>Yes</div></td></tr><tr><th><div>Hearing protection technologies</div></th><td><div>Jabra PeakStop,Jabra Safetone G616</div></td></tr><tr><th><div>Play music</div></th><td><div>Yes</div></td></tr><tr><th><div>Number of simultaneously connected devices (max)</div></th><td><div>2</div></td></tr><tr><th><div>Auto-connect</div></th><td><div>Yes</div></td></tr><tr><th><div>Plug and play</div></th><td><div>Yes</div></td></tr><tr><th><div>Country of origin</div></th><td><div>China</div></td></tr><tr><th><div>Certification</div></th><td><div>MS Team</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Ports &amp; interfaces</h3></th></tr></thead><tbody><tr><th><div>Connectivity technology</div></th><td><div>Wireless</div></td></tr><tr><th><div>USB connection</div></th><td><div>Yes</div></td></tr><tr><th><div>USB connector</div></th><td><div>USB Type-C</div></td></tr><tr><th><div>Bluetooth</div></th><td><div>Yes</div></td></tr><tr><th><div>Bluetooth profiles</div></th><td><div>AVRCP</div></td></tr><tr><th><div>Bluetooth version</div></th><td><div>5.0</div></td></tr><tr><th><div>Connection range</div></th><td><div>30 m</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Headphones</h3></th></tr></thead><tbody><tr><th><div>Maximum input power</div></th><td><div>30 mW</div></td></tr><tr><th><div>Position speakers headphones</div></th><td><div>Supraaural</div></td></tr><tr><th><div>Acoustic system</div></th><td><div>Closed</div></td></tr><tr><th><div>Headphone frequency range</div></th><td><div>20 - 20000 Hz</div></td></tr><tr><th><div>Headphone sensitivity</div></th><td><div>117 dB</div></td></tr><tr><th><div>Speaker diameter</div></th><td><div>40 mm</div></td></tr><tr><th><div>Noise reduction</div></th><td><div>Yes</div></td></tr><tr><th><div>Noise reduction</div></th><td><div>Yes</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Microphone</h3></th></tr></thead><tbody><tr><th><div>Microphone type</div></th><td><div>Tree</div></td></tr><tr><th><div>Microphone frequency</div></th><td><div>100 - 8000 Hz</div></td></tr><tr><th><div>Microphone sensitivity</div></th><td><div>-26 dB</div></td></tr><tr><th><div>Flip microphone</div></th><td><div>Yes</div></td></tr><tr><th><div>MEMS (Micro-Electro-Mechanical System) microphone</div></th><td><div>Yes</div></td></tr><tr><th><div>Microphone mute</div></th><td><div>Yes</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Battery</h3></th></tr></thead><tbody><tr><th><div>Battery controlled</div></th><td><div>Yes</div></td></tr><tr><th><div>Battery type</div></th><td><div>Built-in battery</div></td></tr><tr><th><div>Battery technology</div></th><td><div>Lithium-Ion (Li-Ion)</div></td></tr><tr><th><div>Battery life</div></th><td><div>37 hours</div></td></tr><tr><th><div>Continuous audio playback time</div></th><td><div>24 hours</div></td></tr><tr><th><div>Talk</div></th><td><div>24 hours</div></td></tr><tr><th><div>Battery charging indication</div></th><td><div>Yes</div></td></tr><tr><th><div>Battery/Battery charging time</div></th><td><div>1.5 hours</div></td></tr><tr><th><div>Fast charging</div></th><td><div>Yes</div></td></tr><tr><th><div>Fast charging time</div></th><td><div>15 min</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Minimum system requirements</h3></th></tr></thead><tbody><tr><th><div>Supports Windows</div></th><td><div>Yes</div></td></tr><tr><th><div>Supports Mac operating system</div></th><td><div>Yes</div></td></tr><tr><th><div>Supported mobile operating systems</div></th><td><div>Android,iOS</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Environmental requirements</h3></th></tr></thead><tbody><tr><th><div>Operating temperature (T-T)</div></th><td><div>-10 - 45 °C</div></td></tr><tr><th><div>Storage temperature</div></th><td><div>-5 - 45 °C</div></td></tr></tbody><thead><tr><th colspan=\\\"3\\\" style=\\\"text-align: left; vertical-align: bottom; padding: 0px; font-weight: 400;\\\"><h3>Weight and size</h3></th></tr></thead><tbody><tr><th><div>Width</div></th><td><div>157 mm</div></td></tr><tr><th><div>Depth</div></th><td><div>60.5 mm</div></td></tr><tr><th><div>Height</div></th><td><div>186 mm</div></td></tr><tr><th><div>Weight</div></th><td><div>176.4 g</div></td></tr></tbody></table><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6030595\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 271.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317713,\n                    \"order_id\": 113672,\n                    \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Logitech, Webcams, Available in: CA\",\n                    \"description\": \"<p>Logitech Webcam C925e - webcam</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Device type: Webcam<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Audio Yes: Built-in dual stereo microphones<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Dimensions (WxDxH) 12.6 cm x 4.5 cm x 7.3 cm<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection Technology With cable<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. resolution 1920 x 1080<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Focus setting Automatic<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Interfaces USB 2.0<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables included 1 - USB cable - 1.83 m<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Skype compatible<br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4184519\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 121.68,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317714,\n                    \"order_id\": 113672,\n                    \"name\": \"Philips, V-line 243V7QJAB, 24\\\", Full HD, LCD, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Philips, Monitors, 24\\\", Available in: CA\",\n                    \"description\": \"<div>Quick tech specs</div><ul><li>line 243V7QJAB</li><li>24\\\" (23.8\\\" viewable)</li><li>IPS</li><li>1000:1</li><li>HDMI</li><li>DisplayPort</li><li>textured black</li><li>LED monitor</li></ul><ul><li>1920 x 1080 Full HD (1080p) @ 60 Hz</li><li>250 cd/m²</li><li>5 ms</li><li>VGA</li><li>speakers</li></ul><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5760375\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 143.22,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317715,\n                    \"order_id\": 113672,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2620.12,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239427,\n                    \"tracking_number\": \"82685121\",\n                    \"track_and_trace_url\": \"https://www.collins.biz/doloribus-atque-at-in-totam-rerum-vero\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 10, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:17\",\n                    \"expected_delivery_time_range\": \"1 - 4 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                },\n                {\n                    \"id\": 239428,\n                    \"tracking_number\": \"10461029\",\n                    \"track_and_trace_url\": \"https://feeney.com/voluptatem-in-aut-accusantium-perspiciatis-sunt-quia-non.html\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239429,\n                    \"tracking_number\": \"59845689\",\n                    \"track_and_trace_url\": \"https://www.willms.info/\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 02, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                },\n                {\n                    \"id\": 239430,\n                    \"tracking_number\": \"44536002\",\n                    \"track_and_trace_url\": \"https://homenick.com/consequuntur-quibusdam-sint-ea-amet-et\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:17\",\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 02, 2025\"\n                },\n                {\n                    \"id\": 239431,\n                    \"tracking_number\": \"26375316\",\n                    \"track_and_trace_url\": \"https://bechtelar.com/et-doloremque-esse-dolore-quo-est-distinctio\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:17\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Jan 30, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-11-25T13:17:16.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:16.000000Z\"\n        },\n        {\n            \"id\": 113673,\n            \"number\": \"Y1JGNLLN8Q\",\n            \"total_products\": 4,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Antone Kerluke\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144714,\n                \"city\": \"South Enrique\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Veum Land\",\n                \"address_line_2\": \"38672\",\n                \"region\": \"Idaho\",\n                \"postcode\": \"60826\",\n                \"postal_code\": \"60826\",\n                \"additional_address_line\": \"Pike\",\n                \"name\": \"Antone\",\n                \"first_name\": \"Antone\",\n                \"last_name\": \"Kerluke\",\n                \"email\": \"antone.kerluke@workwizedemo.com\",\n                \"phone_number\": \"(817) 358-1104\"\n            },\n            \"status\": \"Processed\",\n            \"products\": [\n                {\n                    \"id\": 317716,\n                    \"order_id\": 113673,\n                    \"name\": \"Logitech, C925e, Full HD, Webcams\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Webcams, Available in: EU\",\n                    \"description\": \"<p>Logitech Webcam C925e - webcam</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Device type: Webcam<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Audio Yes: Built-in dual stereo microphones<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Dimensions (WxDxH) 12.6 cm x 4.5 cm x 7.3 cm<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection Technology With cable<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. resolution 1920 x 1080<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Focus setting Automatic<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Interfaces USB 2.0<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables included 1 - USB cable - 1.83 m<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Skype compatible<br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"944630\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 68.09,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:17.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317717,\n                    \"order_id\": 113673,\n                    \"name\": \"AOC, U27P2CA, 27'', 4K Ultra HD, IPS, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"AOC, Monitors, 27\\\", Available in: UK\",\n                    \"description\": \"<p>Display</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Screen Aspect Ratio: 16:9</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Screen Size: 27 inch</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Screen technology: IPS Panel</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Colours: 1.07 billion</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Pixel Pitch: 0.1554 mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Brightness: 350 Lumens</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;View Angle (Horizontal - Max): 178 °</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;View Angle (Vertical - Max): 178 °</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Anti-Glare / Anti-Static: Anti-glare</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Contrast Ratio: 1,000:1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Contrast Ratio - Dynamic: 50,000,000:1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Resolution (Native): 3840 x 2160 pixels</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Resolution Type (Native): 4K Ultra HD</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Response time: 4 ms</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Pixels Per Inch (PPI): 163 PPI</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Backlight: Yes (WLED)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HD Support</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Aspect Ratio: 16:9</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Vertical Frequency: 60 Hz</p><p><br></p><p><br></p><p>Physical</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Display Type: AdaptiveSync</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Form Factor: Monitor</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Case Colour: Black</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;In The Box: Monitor, Stand, Power Cable, HDMI Cable, DisplayPort Cable, - USB-C to - USB-A Cable, Width: 613.6 mm, Depth: 200.1 mm, Height: 394.5 ~ 544.5 mm, Weight: 9.6 kg</p><p><br></p><p><br></p><p>Mount</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Wall Mountable</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Wall Mount: VESA 100 x 100 mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Tilt (Forward/Backward)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Tilt Range: -5 ~ +35 °</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Swivel (Left/Right)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Swivel Range: -180 ~ +180 °</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height Adjustable</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Maximum Height: +150 mm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Pivot (rotation) Range: 90 °</p><p><br></p><p><br></p><p>Warranty</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Warranty: 3 Years</p><p><br></p><p><br></p><p>Sound</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Audio Capabilities: 2 x 2W speakers</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Speakers built-in</p><p><br></p><p><br></p><p>Interfaces/Ports</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;- USB Ports: 1 x - USB-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;4 x - USB 3.0</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Headphone Ports: 1 x 3.5mm Jack</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDMI Ports: 2 x HDMI 2.0</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;DisplayPort In: 1 x DisplayPort 1.2</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;DP Alt via - USB-C</p><p><br></p><p><br></p><p>System</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Language Selection: EN, FR , ES, PT, DE, IT, NL, SE, FI, PL ,CZ, RU, KR, CN (T), CN (S), JP</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Plug and Play</p><p><br></p><p><br></p><p>Electrical</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Electrical Power Consumption: 37 W</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Electrical Power Consumption Standby: 0.5 W</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Voltage: 100 ~ 240 V</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Electrical Frequency: 50 ~ 60 Hz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Power Adaptor Type: Internal</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Power Supply</p><p><br></p><p><br></p><p>Key Features</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;VESA Mountable</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDMI Connection</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Panel Technology: IPS</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Power Source: Mains Powered</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Disk Form Factor: 3.5</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Projection Aspect Ratio: 16:9</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;DisplayPort Connection</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Screen Type: 4K (2160p)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;FreeSync</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Built-in - USB Hub: - USB 3.0</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Refresh Rate: 60 Hz</p><p><br></p><p><br></p><p>Item Details</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Manufacturer: AOC</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Manufacturer Code: U27P2CA</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;EAN: 4038986189859</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4582830-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 342.33,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317718,\n                    \"order_id\": 113673,\n                    \"name\": \"NeoMounts, NSLS050 Rotatable Laptop Stand, Laptop & Monitor Stands\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"NeoMounts, Laptop & Monitor Stands, Available in: UK\",\n                    \"description\": \"<p>General</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Min. screen size: 10 inch</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. screen size: 17 inch</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. weight: 5 kg</p><p><br></p><p><br></p><p>Functionality</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Type: Fixed</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Rotate (degrees): 360°</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 24 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 24 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 14 cm</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4275731\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 68.2,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317719,\n                    \"order_id\": 113673,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - US, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: EU\",\n                    \"description\": \"<p>Specifications:</p><ul><li><u>​</u>Apple&nbsp;M4 chip with 12‑core CPU, 16‑core GPU, 16‑core Neural Engine</li><li>24GB unified memory</li><li>512GB SSD storage</li><li>14-inch Liquid&nbsp;Retina&nbsp;XDR display²</li><li>70W USB-C Power Adapter</li><li>Three Thunderbolt 4 ports, HDMI port, SDXC card slot, headphone jack, MagSafe&nbsp;3 port</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID — US English</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"MX2E3N/A-CTO\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2226.37,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2704.99,\n            \"rent_subtotal\": 0,\n            \"shipments\": [],\n            \"created_at\": \"2025-01-28T13:17:17.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:17.000000Z\"\n        },\n        {\n            \"id\": 113674,\n            \"number\": \"FCGQIH3JTO\",\n            \"total_products\": 5,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Zion Hill\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144715,\n                \"city\": \"Chasitychester\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Nasir Valleys\",\n                \"address_line_2\": \"470\",\n                \"region\": \"Colorado\",\n                \"postcode\": \"11946\",\n                \"postal_code\": \"11946\",\n                \"additional_address_line\": \"Branch\",\n                \"name\": \"Zion\",\n                \"first_name\": \"Zion\",\n                \"last_name\": \"Hill\",\n                \"email\": \"zion.hill@workwizedemo.com\",\n                \"phone_number\": \"1-865-659-0512\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317720,\n                    \"order_id\": 113674,\n                    \"name\": \"Logitech, MX Vertical, Wireless, Optical, Mice\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Logitech, Wireless, Mice, Available in: UK\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection type: Wireless, Wired</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connectors: 1 x USB Type-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Wireless technology: Bluetooth</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Application: Desktop</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;No. of keys: 4</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Vertical mouse</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Quick charging function</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Ergonomic</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logitech unifying technology</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4284982\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 123.54,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317721,\n                    \"order_id\": 113674,\n                    \"name\": \"Jabra, Evolve 75SE MS Stereo, Wired and Wireless, Binaural, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Jabra, Headphones, Available in: US, PR\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Product: Jabra Evolve 75</li><li>Category: Gaming headsets</li><li>Brand: Jabra</li><li>Color: Red Black</li></ul><p><strong>Specifications</strong></p><ul><li>Connection Type: Wireless (Bluetooth)</li><li>Bluetooth Version: Bluetooth 4.2</li><li>Speaker Channel: 2.0</li><li>Acoustic Design: Stereo</li><li>Minimum Frequency: 20Hz</li><li>Maximum Frequency: 20kHz</li><li>Sensitivity: 117dBSPL/mW</li><li>Audio Connection: Jackplug 3.5mm</li><li>USB Connection: USB 2.0</li><li>Driver Diameter: 40mm</li><li>Minimum Frequency Microphone: 150Hz</li><li>Maximum Frequency Microphone: 6.8kHz</li><li>Noise Reduction Microphone: Yes</li><li>Battery Life: 18 hours</li><li>Weight: 177g</li></ul><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"7079856\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 359.62,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317722,\n                    \"order_id\": 113674,\n                    \"name\": \"Apple, AirPods 3, Wireless, In-ear, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Headphones, Available in: CA\",\n                    \"description\": \"<p>General</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product Type: Truly Wireless Headphones - Bluetooth</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Generation: 3rd</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Compatibility: iPhone,iPad,iPod,Mac</p><p><br></p><p>Dimensions &amp; weight details:</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Charging station: 5.44 cm x 2.138 cm x 4.64 cm / 37.91 g</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 1.826 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 1.921 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 3.079 cm</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 4.28 g</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Recommended usage: Portable electronics</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;IPX4 Protection</p><p><br></p><p><br></p><p>Audio Output</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Model of headphones: Earpiece</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connectivity: Wireless</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Wireless Technology: Bluetooth</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Bleutooth Version: Bluetooth 5.0</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Sound Output Mode: Stereo</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Sound Effects: Adaptive EQ</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Apple H1 chip</p><p><br></p><p><br></p><p>Microphone</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Form factor: Built-in</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Microphone Control Mode: Bundling</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Microphones Included: 2</p><p><br></p><p><br></p><p>Remote Control</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Controls: Volume, Answer/End, Next/Previous Number</p><p><br></p><p><br></p><p>Tracking</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Sensors: Accelerometer motion detection,accelerometer sound detection,force sensor,skin detection sensors</p><p><br></p><p><br></p><p>Internet of Things (IoT)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Internet of Things (IoT) enabled: Yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Intelligent assistant: Siri</p><p><br></p><p><br></p><p>Miscellaneous</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Bundled accessories: Wireless charging box,Lightning to USB-C cable</p><p><br></p><p><br></p><p>Power</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Auto on/off: Yes</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Battery: Rechargeable headphones</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Standards for wireless charging: Qi</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Run time (max): 6 hours/hours</p><p><br></p><p>Details of run time:</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous playback: up to 6 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Talking continuously: up to 4 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous playback (with included charging bag): up to 30 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous talk (with charging bag included): up to 20 hours</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Continuous playback (spatial audio on): up to 5 hours</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"6740886\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 236.45,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317723,\n                    \"order_id\": 113674,\n                    \"name\": \"JBL, Tune 660NC, Wireless, Active Noise Cancelling, Headphones\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Headphones, Available in: US, PR\",\n                    \"description\": \"<div>Quick tech specs</div><ul><li>Color: Black</li><li>JBL Pure Bass Sound</li><li>Fast Pair Enabled by Google</li><li>Wireless Bluetooth Streaming</li></ul><ul><li>Active Noise Cancelling</li><li>Lightweight and Foldable Design</li><li>Hands-Free Calls and Voice Assistant Support</li><li>Up to 44 hours of Battery Life With ANC On</li></ul><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"7068828\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 134.28,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317724,\n                    \"order_id\": 113674,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2898.93,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239432,\n                    \"tracking_number\": \"19268488\",\n                    \"track_and_trace_url\": \"https://funk.info/dicta-quia-aut-officiis-sequi.html\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:18\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 04, 2025\"\n                },\n                {\n                    \"id\": 239433,\n                    \"tracking_number\": \"36344842\",\n                    \"track_and_trace_url\": \"https://abshire.com/architecto-numquam-ut-voluptatibus-dolor-quasi-atque\",\n                    \"status\": \"Delivered\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:18\",\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                },\n                {\n                    \"id\": 239434,\n                    \"tracking_number\": \"75005712\",\n                    \"track_and_trace_url\": \"https://stoltenberg.com/\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-06 13:17:18\",\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 30, 2025\"\n                },\n                {\n                    \"id\": 239435,\n                    \"tracking_number\": \"71650554\",\n                    \"track_and_trace_url\": \"https://skiles.biz/qui-qui-voluptatem-fugiat-recusandae-officia.html\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:18.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 02, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 30, 2025\"\n                },\n                {\n                    \"id\": 239436,\n                    \"tracking_number\": \"75994407\",\n                    \"track_and_trace_url\": \"https://www.schmeler.com/officiis-optio-ut-sapiente-nihil-at-quisquam-nisi-omnis.html\",\n                    \"status\": \"In Transit\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 05, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Feb 04, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-10-09T13:17:18.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:18.000000Z\"\n        },\n        {\n            \"id\": 113675,\n            \"number\": \"DWMXETZDQJ\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": null,\n            \"receiver\": \"Luigi Miller\",\n            \"receiver_type\": \"employee\",\n            \"express_delivery\": null,\n            \"shipping_info\": {\n                \"id\": 144716,\n                \"city\": \"South Durwardport\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Kraig River\",\n                \"address_line_2\": \"42001\",\n                \"region\": \"Maryland\",\n                \"postcode\": \"57696\",\n                \"postal_code\": \"57696\",\n                \"additional_address_line\": \"Vista\",\n                \"name\": \"Luigi\",\n                \"first_name\": \"Luigi\",\n                \"last_name\": \"Miller\",\n                \"email\": \"luigi.miller@workwizedemo.com\",\n                \"phone_number\": \"+13809910204\"\n            },\n            \"status\": \"Delivered\",\n            \"products\": [\n                {\n                    \"id\": 317725,\n                    \"order_id\": 113675,\n                    \"name\": \"Philips, V-LINE 273V7QJAB, 27\\\", Full HD, LED, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Philips, Monitors, 27\\\", Available in: US, PR\",\n                    \"description\": \"<p>General</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product Type: Philips V-Line Full HD 27\\\" Led Monitor (Model: 273V7QJAB)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Size: 27\\\"</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Color: Black</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Built-in Speakers</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Available ports: DisplayPort, HDMI, VGA (HD-15)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Included cables: 1 x Audio cable, 1 x HDMI cable, 1 x VGA cable</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Resolution: 1920 x 1080</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Color: Black</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Built-in Speakers</p><p><br></p><p><br></p><p>Dimensions</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;WxDxH: 24.1 x 8.9 x 17.8 inch</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 10.05 lbs</p><p><br></p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5451190\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 234.07,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317726,\n                    \"order_id\": 113675,\n                    \"name\": \"ViewSonic, VX2485-MHU, 23.8\\\", Full HD, LCD, Monitors\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Viewsonic, Monitors, 24\\\", Available in: US, PR\",\n                    \"description\": \"<p>Product Description</p><p><br></p><p>Designed for the modern-day home office, the ViewSonic VX2485-mhu is a 24\\\" Full HD IPS monitor that combines style with optimal versatility and functionality. Whether for gaming, streaming, or editing, these sleek and slim displays are engineered with the everyday user in mind. Equipped with AMD FreeSync technology*, this monitor's variable refresh rate capabilities virtually eliminate screen tearing and stuttering for a smoother viewing experience. With a three-sided borderless design, thin profile, and thoughtful cable management features, this display transforms the desktop into a streamlined and clutter-free workspace. What's more, a unique ergonomic stand allows you to easily tilt and swivel the screen for maximum comfort. The latest USB 3.2 Type-C connectivity delivers charging power, video, and audio over a single cable, while HDMI and VGA inputs keep you connected to your favorite devices. *AMD FreeSync supported via HDMI only.</p><p><br></p><p><br></p><p>Specifications</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;MHU</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;24\\\" (23.8\\\" viewable)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;IPS</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;1000:1</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDMI</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;LED monitor</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;1920 x 1080 Full HD (1080p) @ 75 Hz</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;250 cd/m²</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;5 ms</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;VGA</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;speakers</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5908084\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 332.54,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317727,\n                    \"order_id\": 113675,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2611.65,\n            \"rent_subtotal\": 0,\n            \"shipments\": [\n                {\n                    \"id\": 239437,\n                    \"tracking_number\": \"54383581\",\n                    \"track_and_trace_url\": \"https://www.tromp.com/nemo-et-id-corrupti-impedit-in-vitae\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 07, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 10, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:19\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Feb 03, 2025\"\n                },\n                {\n                    \"id\": 239438,\n                    \"tracking_number\": \"61108828\",\n                    \"track_and_trace_url\": \"https://waelchi.biz/\",\n                    \"status\": \"Preparing Shipment\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 09, 2025\",\n                    \"shipment_pickup_time\": \"2025-02-07 13:17:19\",\n                    \"expected_delivery_time_range\": \"1 - 3 Business Days\",\n                    \"deliveryDate\": \"Jan 31, 2025\"\n                },\n                {\n                    \"id\": 239439,\n                    \"tracking_number\": \"99279714\",\n                    \"track_and_trace_url\": \"https://reynolds.net/quibusdam-cum-eius-aspernatur-et-voluptas\",\n                    \"status\": \"Available for pickup\",\n                    \"tag\": null,\n                    \"description\": \"Order shipment\",\n                    \"created_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:19.000000Z\",\n                    \"estimatedDelivery\": null,\n                    \"min_eta_from_supplier\": \"Feb 03, 2025\",\n                    \"max_eta_from_supplier\": \"Feb 04, 2025\",\n                    \"shipment_pickup_time\": null,\n                    \"expected_delivery_time_range\": \"1 - 2 Business Days\",\n                    \"deliveryDate\": \"Jan 29, 2025\"\n                }\n            ],\n            \"created_at\": \"2024-09-18T13:17:19.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:19.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n        \"last\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://prod-back.goworkwize.com/api/public/orders\",\n        \"per_page\": 15,\n        \"to\": 14,\n        \"total\": 14\n    }\n}"},{"id":"89513df7-fed5-46e4-a79b-205a7eec7da2","name":"Filter by Order Number","originalRequest":{"method":"GET","header":[],"url":{"raw":"/orders?filter[number]=9UGLS4KNSQ","path":["orders"],"query":[{"key":"filter[employee_foreign_id]","value":"5678-EFGH","description":"Filter orders by employee’s foreign ID","disabled":true},{"key":"filter[number]","value":"9UGLS4KNSQ","description":"Filter orders by order number"},{"key":"per_page","value":"15","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Feb 2025 14:07:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"server","value":"istio-envoy"},{"key":"cache-control","value":"no-cache, private"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-security-policy","value":"default-src 'self' https://*.goworkwize.com;             script-src 'self' 'unsafe-inline' https://vaultjs.apideck.com *.zendesk.com https://cdn.merge.dev *.posthog.com https://*.goworkwize.com https://cdn.segment.com https://static.userguiding.com https://static.zdassets.com https://browser.sentry-cdn.com https://js.sentry-cdn.com;             style-src 'self' 'unsafe-inline' https://vaultjs.apideck.com *.zendesk.com  https://*.goworkwize.com https://cdnjs.cloudflare.com https://fonts.googleapis.com;             img-src 'self' data: *.zendesk.com https://*.userguiding.com https://dapulse-res.cloudinary.com https://platform.slack-edge.com https://merge-api-production.s3.amazonaws.com https://res.cloudinary.com https://*.goworkwize.com https://workwize-bucket.s3.eu-west-3.amazonaws.com;             font-src 'self' https://*.goworkwize.com https://fonts.gstatic.com https://cdnjs.cloudflare.com;             connect-src 'self' https://vaultjs.apideck.com https://api.merge.dev *.posthog.com https://*.goworkwize.com https://cdn.segment.com https://goworkwize.eu.auth0.com https://goworkwize-dev.eu.auth0.com https://*.userguiding.com https://api.segment.io https://ekr.zdassets.com https://user.userguiding.com wss://*.zendesk.com *.zendesk.com https://api-js.mixpanel.com *.sentry.io https://unify.apideck.com;             media-src 'self' https://*.goworkwize.com https://workwize-bucket.s3.eu-west-3.amazonaws.com;             frame-ancestors 'none';             form-action 'self' https://*.goworkwize.com;            frame-src *.auth0.com https://cdn.merge.dev https://vaultjs.apideck.com https://managementworkwizefaq.zendesk.com;"},{"key":"x-envoy-upstream-service-time","value":"346"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 113662,\n            \"number\": \"9UGLS4KNSQ\",\n            \"total_products\": 3,\n            \"currency\": {\n                \"id\": 1,\n                \"icon\": \"$\",\n                \"name\": \"USD\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"actor\": {\n                \"id\": 71202,\n                \"given_name\": \"Nick\",\n                \"family_name\": \"Niemiec\",\n                \"full_name\": \"Nick Niemiec\",\n                \"email\": \"Nick+25@goworkwize.com\",\n                \"phone_number\": \"0628790868\",\n                \"personal_email\": null,\n                \"personal_phone_number\": null,\n                \"created_at\": \"2024-12-03T08:54:32.000000Z\",\n                \"updated_at\": \"2024-12-10T22:17:51.000000Z\",\n                \"address\": null\n            },\n            \"receiver\": \"\",\n            \"receiver_type\": \"employer\",\n            \"express_delivery\": false,\n            \"shipping_info\": {\n                \"id\": 18763,\n                \"city\": \"Erie\",\n                \"country\": {\n                    \"id\": 46,\n                    \"name\": \"United States\",\n                    \"code\": \"US\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": \"Logistics Plus, Inc.\",\n                \"country_id\": 46,\n                \"address_line_1\": \"12th St., 205, W\",\n                \"address_line_2\": \"\",\n                \"region\": \"Pennsylvania\",\n                \"postcode\": \"16534\",\n                \"postal_code\": \"16534\",\n                \"additional_address_line\": null,\n                \"name\": null,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"email\": null,\n                \"phone_number\": null\n            },\n            \"status\": \"Processed\",\n            \"products\": [\n                {\n                    \"id\": 317682,\n                    \"order_id\": 113662,\n                    \"name\": \"Logitech, MX Anywhere 3S for Business, Wireless, Laser, Mice\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Logitech, Wireless, Mice, Available in: EU\",\n                    \"description\": \"<p>DIMENSIONS</p><p><br></p><p><br></p><p>MX Anywhere 3 for Business Mouse</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 3.96 in (100.5 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 2.56 in (65 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 1.35 in (34.4 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 3.49 oz (99 g)</p><p><br></p><p><br></p><p>Logi Bolt USB Receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Height: 0.72 in (18.4 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Width: 0.57 in (14.4 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Depth: 0.26 in (6.6 mm)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Weight: 0.07 oz (2 g)</p><p><br></p><p><br></p><p>SYSTEM REQUIREMENTS</p><p><br></p><p><br></p><p>Logi Bolt USB Receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Required: Available USB Port, Windows 10, 11 or later, macOS 10.14 or later, Linux, Chrome OS</p><p><br></p><p><br></p><p>Bluetooth Low Energy Wireless Technology</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Required: Bluetooth Low Energy, Windows 10, 11 or later, macOS 10.15 or later</p><p><br></p><p>Linux, Chrome OS, iPadOS 13.4 or later ., Android 8 or later</p><p><br></p><p><br></p><p>TECHNICAL SPECIFICATIONS</p><p><br></p><p><br></p><p>Sensor technology</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Darkfield high precision</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Nominal value: 1000 dpi</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;DPI (Minimal and maximal value): 200-4000 dpi (can be set in increments of 50 dpi)</p><p><br></p><p><br></p><p>Buttons</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;6 buttons: Left/Right-click, Back/Forward, Wheel mode-shift, Middle click</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Scroll Wheel: Yes, with auto-shift</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Thumbwheel: Yes, by holding side button while turning wheel</p><p><br></p><p><br></p><p>Wireless technology</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logi Bolt USB Receiver</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Bluetooth Low Energy Wireless Technology</p><p><br></p><p><br></p><p>Wireless operating distance</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Up to 10 meters (33 feet)</p><p><br></p><p><br></p><p>Battery</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C rechargeable Li-Po (500 mAh) battery</p><p><br></p><p><br></p><p>Optional software</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logitech Options with Flow Functionality for Windows or macOS</p><p><br></p><p><br></p><p>PACKAGE CONTENTS</p><p><br></p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;MX Anywhere 3 for Business mouse</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Logi Bolt USB receiver (USB-A)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cable for recharging (USB-C to USB-A)</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;User documentation</p><p><br></p><p><br></p><p>WARRANTY INFORMATION</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;2-Year Limited Hardware Warranty</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"5825067\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 115.5,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317683,\n                    \"order_id\": 113662,\n                    \"name\": \"Apple, USB-C Digital-AV Multiport Adapter, 10cm, Adapters & Cables\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"USB-C, Adapters & Cables, Available in: UK\",\n                    \"description\": \"<p>•&nbsp;&nbsp;&nbsp;&nbsp;Maximum resolution: 3840 x 2160 pixels</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Product colour: White</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;HDMI</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-C</p><p><br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;USB-A</p>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4382958\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 113.24,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:11.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                },\n                {\n                    \"id\": 317684,\n                    \"order_id\": 113662,\n                    \"name\": \"Apple, MacBook Pro, M4 Pro, 2024, 14.2\\\", 24GB RAM, 512GB SSD, QWERTY - UK, Silver, Laptops\",\n                    \"type\": \"Buy\",\n                    \"short_description\": \"Apple, Laptops, 14.2\\\", 24GB RAM, 512GB SSD, Available in: UK\",\n                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Pro 14\\\" M4 Pro, 12-Core, 16-Core GPU, 24GB RAM, 512GB SSD, Silver</li><li>Color: Silver</li><li>Operating System: macOS</li><li>Touchbar: No</li><li>Factory Warranty: 1-year bring-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 14.2 inches</li><li>Resolution: 3024 x 1964</li><li>Pixel Density: Not provided</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 1600 cd/m²</li><li>Aspect Ratio: 16:10</li><li>Special Features: ProMotion, True Tone, P3 Color Gamut, Ambient Light Sensor</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M4 Pro, 12-core</li><li>Number of Cores: 12</li><li>Graphics: 16-core Neural Engine, 10-core GPU</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 24GB</li><li>Memory Type: Not provided</li><li>Maximum RAM Capacity: 24GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: 10-core GPU</li><li>Video Memory: Not provided</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: HDMI, 3x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Other Connections: 3x Thunderbolt 4, 1x MagSafe 3, 1x Mic/Headphones Combo</li><li>Wireless Connectivity: Bluetooth, WLAN</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 70Wh</li><li>Battery Life (max.): 24 hours</li><li>Power Adapter: 70W</li><li>AC Adapter Connection: MagSafe 3</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY-United Kingdom</li><li>Keyboard Features: Backlit Keyboard, Force Touch Trackpad</li><li>Security and Privacy: Fingerprint Sensor</li><li>Dimensions (L x W x H): 221mm x 313mm x 16mm</li><li>Weight: 1.55kg</li></ul>\",\n                    \"min_delivery_days\": null,\n                    \"max_delivery_days\": null,\n                    \"attribute\": null,\n                    \"article_code\": \"4861010-01\",\n                    \"product_quantity\": 1,\n                    \"images\": null,\n                    \"price\": true,\n                    \"invoice_price\": 2045.04,\n                    \"invoice_currency\": \"USD\",\n                    \"subtotal\": null,\n                    \"currency\": true,\n                    \"canceled_at\": null,\n                    \"returned_at\": null,\n                    \"created_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"updated_at\": \"2025-02-05T13:17:12.000000Z\",\n                    \"confirmed_at\": null,\n                    \"sent_to_supplier_at\": null,\n                    \"status\": \"order_placed\"\n                }\n            ],\n            \"buy_subtotal\": 2273.78,\n            \"rent_subtotal\": 0,\n            \"shipments\": [],\n            \"created_at\": \"2025-01-08T13:17:11.000000Z\",\n            \"updated_at\": \"2025-02-05T13:17:11.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n        \"last\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://prod-back.goworkwize.com/api/public/orders?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://prod-back.goworkwize.com/api/public/orders\",\n        \"per_page\": 15,\n        \"to\": 1,\n        \"total\": 1\n    }\n}"}],"_postman_id":"a5d14670-82ae-41c0-bf79-6904d1b1c691"},{"name":"Create Employee Order","id":"3dcb3e98-4075-49e5-959b-804c9f9f5fcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"products\": [\n    {\n      \"id\": 58865,\n      \"quantity\": 1\n    },\n    {\n      \"id\": 58857,\n      \"quantity\": 1\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/orders","description":"<p>This API allows <strong>employees</strong> or <strong>employers</strong> to create an order for products and assets. The order may include <strong>physical products</strong>, <strong>software assets</strong>, or <strong>both</strong>.</p>\n<h4 id=\"fields-explanation\"><strong>Fields Explanation:</strong></h4>\n<ul>\n<li><p><strong><code>products</code></strong> (optional, array)</p>\n<ul>\n<li><p>An array of products being ordered.</p>\n</li>\n<li><p>Each product object must contain an <code>id</code> and <code>quantity</code>.</p>\n</li>\n<li><p>If empty, at least one asset must be included.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>assets</code></strong> (optional, array)</p>\n<ul>\n<li><p>An array of software licenses or digital items being ordered.</p>\n</li>\n<li><p>If empty, at least one product must be included.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>tax_identification_number</code></strong> (optional, string)</p>\n<ul>\n<li>If provided, updates the employee's tax identification number.</li>\n</ul>\n</li>\n<li><p><strong><code>delivery_with_express</code></strong> (optional, boolean)</p>\n<ul>\n<li>If <code>true</code>, validates whether express delivery is possible for the requested items.</li>\n</ul>\n</li>\n<li><p><strong><code>address_id</code></strong> (optional, integer)</p>\n<ul>\n<li><p>The delivery address for the order.</p>\n</li>\n<li><p>If not provided, the employee’s active address is used.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>repair_id</code></strong> (optional, integer)</p>\n<ul>\n<li>If this order is related to a repair service, the corresponding repair ID is included.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["employees","{{employee_id}}","orders"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"21f4be9e-08bd-414a-b593-aab422acf68c","name":"Successful Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"products\": [\n    {\n      \"id\": 58865,\n      \"quantity\": 1\n    },\n    {\n      \"id\": 58857,\n      \"quantity\": 1\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 05 Feb 2025 15:38:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 106300,\n        \"number\": \"tRUVA2VGJXT\",\n        \"date\": \"2025-02-05\",\n        \"total_products\": 2,\n        \"currency\": {\n            \"id\": 2,\n            \"icon\": \"€\",\n            \"name\": \"EUR\",\n            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n        },\n        \"status\": \"Processed\",\n        \"request_status\": \"auto_approved\",\n        \"buy_subtotal\": 0,\n        \"rent_subtotal\": 0,\n        \"buy_subtotal_formatted\": \"€ 0,00\",\n        \"rent_subtotal_formatted\": \"€ 0,00\",\n        \"buy_invoice_price\": 0,\n        \"rent_invoice_price\": 0,\n        \"buy_invoice_price_formatted\": \"€ 0,00\",\n        \"rent_invoice_price_formatted\": \"€ 0,00\",\n        \"sell_currency_symbol\": \"€\",\n        \"invoice_currency_symbol\": \"€\",\n        \"buy_sell_price\": 0,\n        \"rent_sell_price\": 0,\n        \"budget_deduction\": 0,\n        \"budget_deduction_formatted\": \"€ 0,00\",\n        \"created_at\": \"2025-02-05T15:38:24.000000Z\",\n        \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n        \"receiver_id\": 136897,\n        \"receiver_type\": \"employee\",\n        \"actor\": {\n            \"id\": 130239,\n            \"name\": \"CSM Team\",\n            \"last_name\": \"Demo\",\n            \"phone_number\": \"0000000000\",\n            \"personal_phone_number\": null,\n            \"invite\": null,\n            \"employer\": {\n                \"id\": 489,\n                \"company_name\": \"Workwize Demo CSM\",\n                \"city\": null,\n                \"total_employees\": 11,\n                \"address_line_1\": null,\n                \"warehouse_storage_code\": null,\n                \"postcode\": null,\n                \"catalog_id\": 608,\n                \"currency_id\": 2,\n                \"message\": null,\n                \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                \"updated_at\": \"2025-02-05T15:28:37.000000Z\",\n                \"synced_asset\": 1,\n                \"org_id\": null,\n                \"announcement\": 0,\n                \"settings\": [\n                    {\n                        \"id\": 7,\n                        \"name\": \"Cancel Product\",\n                        \"slug\": \"cancel-product\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 8,\n                        \"name\": \"Offboard Employee\",\n                        \"slug\": \"offboard-employee\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 11,\n                        \"name\": \"Warehouse\",\n                        \"slug\": \"warehouse\",\n                        \"description\": \"Warehouse Features\"\n                    },\n                    {\n                        \"id\": 12,\n                        \"name\": \"Automations\",\n                        \"slug\": \"automations\",\n                        \"description\": \"This will enable automations like auto-off-boarding.\"\n                    }\n                ],\n                \"total_orders\": 13,\n                \"account_type\": \"sales_demo\",\n                \"total_pending_requests\": 2\n            },\n            \"employee\": {\n                \"id\": 136896,\n                \"available_rent_budget\": 10000,\n                \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                \"total_rent_budget\": 10000,\n                \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                \"negative_available_rent_budget\": 10000,\n                \"available_purchase_budget\": 9999,\n                \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                \"total_purchase_budget\": 10000,\n                \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                \"negative_available_purchase_budget\": 9999,\n                \"department_id\": 19442,\n                \"manual_sync\": false,\n                \"department\": {\n                    \"id\": 19442,\n                    \"employer_id\": 489,\n                    \"name\": \"IT\",\n                    \"rent_budget\": 10000,\n                    \"purchase_budget\": 10000,\n                    \"custom\": 0,\n                    \"created_at\": \"2025-02-03T08:17:51.000000Z\",\n                    \"updated_at\": \"2025-02-03T08:17:51.000000Z\",\n                    \"employees_count\": 7,\n                    \"budget_type\": \"fixed\",\n                    \"budgets\": [\n                        {\n                            \"id\": 8901,\n                            \"name\": null,\n                            \"icon\": null,\n                            \"amount\": 10000,\n                            \"formatted_amount\": \"€ 10000.00\",\n                            \"currency\": \"EUR\",\n                            \"type\": \"purchase\"\n                        },\n                        {\n                            \"id\": 8902,\n                            \"name\": null,\n                            \"icon\": null,\n                            \"amount\": 10000,\n                            \"formatted_amount\": \"€ 10000.00\",\n                            \"currency\": \"EUR\",\n                            \"type\": \"rental\"\n                        }\n                    ],\n                    \"auto_approve_orders\": true,\n                    \"auto_offboarding\": false,\n                    \"user_id\": null\n                },\n                \"employer\": {\n                    \"id\": 489,\n                    \"company_name\": \"Workwize Demo CSM\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 608,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                    \"updated_at\": \"2025-02-05T15:28:37.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"total_orders\": 13,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"currency\": {\n                    \"id\": 2,\n                    \"icon\": \"€\",\n                    \"name\": \"EUR\",\n                    \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                    \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                },\n                \"created_at\": \"2025-02-03T08:17:51.000000Z\",\n                \"updated_at\": \"2025-02-03T08:17:51.000000Z\",\n                \"entity\": null,\n                \"invitation_accepted\": false,\n                \"status\": \"added\",\n                \"balances\": [\n                    {\n                        \"id\": 248974,\n                        \"budget_id\": 8901,\n                        \"bugdet_balance_type\": \"purchase\",\n                        \"available_balance\": 10000,\n                        \"formatted_available_balance\": \"€ 10000.00\"\n                    },\n                    {\n                        \"id\": 248975,\n                        \"budget_id\": 8902,\n                        \"bugdet_balance_type\": \"rental\",\n                        \"available_balance\": 10000,\n                        \"formatted_available_balance\": \"€ 10000.00\"\n                    }\n                ],\n                \"address\": null,\n                \"employment_start_date\": null,\n                \"employment_end_date\": null,\n                \"tax_identification_number\": null\n            },\n            \"email\": \"employer@test.com\",\n            \"personal_email\": null,\n            \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n            \"updated_at\": \"2025-01-30T09:42:48.000000Z\",\n            \"role\": {\n                \"id\": 4,\n                \"display_name\": \"Employer Admin\",\n                \"name\": \"employer-admin\"\n            },\n            \"original_role\": {\n                \"id\": 4,\n                \"display_name\": \"Employer Admin\",\n                \"name\": \"employer-admin\"\n            },\n            \"sub\": null,\n            \"read_privacy\": 0,\n            \"hasAsset\": false,\n            \"status\": \"Uninvited\",\n            \"display_name\": \"CSM Team Demo\",\n            \"is_deactivated\": false\n        },\n        \"assigned_to\": null,\n        \"actor_id\": 130239,\n        \"subtotal\": 0,\n        \"delivery_with_express\": false,\n        \"shipments\": [\n            {\n                \"id\": 220959,\n                \"order_number\": \"tRUVA2VGJXT\",\n                \"tracking_number\": null,\n                \"track_and_trace_url\": null,\n                \"custom_tnt_url\": null,\n                \"status\": \"Order Received\",\n                \"tag\": null,\n                \"destination_address\": {\n                    \"id\": 136630,\n                    \"city\": \"West Adriennestad\",\n                    \"country\": {\n                        \"id\": 32,\n                        \"name\": \"Netherlands\",\n                        \"code\": \"NL\",\n                        \"requires_tin\": false\n                    },\n                    \"company_name\": null,\n                    \"country_id\": 32,\n                    \"address_line_1\": \"Walsh Dale\",\n                    \"address_line_2\": \"8392\",\n                    \"region\": \"Minnesota\",\n                    \"postcode\": \"59442\",\n                    \"postal_code\": \"59442\",\n                    \"additional_address_line\": \"Shores\",\n                    \"name\": \"Kody\",\n                    \"first_name\": \"Kody\",\n                    \"last_name\": \"Graham\",\n                    \"email\": \"kody.graham@workwizedemocsm.com\",\n                    \"phone_number\": \"1-941-758-1274\"\n                },\n                \"description\": null,\n                \"products\": [\n                    {\n                        \"name\": \"Apple, MBP, M1, 2020, 13\\\", 8GB RAM, 256GB SSD, Qwerty, Colour, Laptops\",\n                        \"quantity\": 1\n                    },\n                    {\n                        \"name\": \"Apple, EarPods, Wired (USB-C), In-Ear, Headphones\",\n                        \"quantity\": 1\n                    }\n                ],\n                \"history\": [],\n                \"created_at\": \"2025-02-05T15:38:24.000000Z\",\n                \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 295742,\n                        \"product_quantity\": 1,\n                        \"price\": 0,\n                        \"price_formatted\": \"€0\",\n                        \"subtotal\": 0,\n                        \"subtotal_formatted\": \"€ 0,00\",\n                        \"invoice_subtotal\": \"€ 0,00\",\n                        \"supplier\": {\n                            \"id\": 357,\n                            \"name\": \"Warehouse UK (LP)\",\n                            \"hasShipment\": 1,\n                            \"warehouse\": {\n                                \"id\": 1,\n                                \"warehouse_provider\": \"logistic_plus\",\n                                \"name\": \"Logistics Plus\",\n                                \"warehouse_code\": \"LDW\",\n                                \"address\": \"UK\",\n                                \"business_name\": \"Xpand Logistics Ltd\",\n                                \"business_address\": \"Carnival Cl, Basildon SS14 3WN\",\n                                \"contact_person\": \"Marek Kukurski - For Workwize\",\n                                \"phone_number\": \"+44 (0) 1277 287 963\",\n                                \"created_at\": \"2023-06-22T13:39:37.000000Z\",\n                                \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                            },\n                            \"created_at\": \"2023-11-13T16:44:45.000000Z\",\n                            \"updated_at\": \"2024-07-23T07:48:31.000000Z\"\n                        },\n                        \"variant\": null,\n                        \"created_at\": \"2025-02-05T15:38:24.000000Z\",\n                        \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n                        \"returned_at\": null,\n                        \"canceled_at\": null,\n                        \"article_code\": \"WOW-0194252048986-REF\",\n                        \"confirmed_at\": null,\n                        \"sent_to_supplier_at\": null,\n                        \"type\": \"Buy\",\n                        \"name\": \"Apple, MBP, M1, 2020, 13\\\", 8GB RAM, 256GB SSD, Qwerty, Colour, Laptops\",\n                        \"images\": [\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-1-sq.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-2-sq.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-3-sq.jpg\"\n                        ],\n                        \"discount\": \"€ 0,00\",\n                        \"assets\": [\n                            {\n                                \"id\": 66507886,\n                                \"name\": \"Apple, MBP, M1, 2020, 13\\\", 8GB RAM, 256GB SSD, Qwerty, Colour, Laptops\",\n                                \"ean\": null,\n                                \"serial_code\": null,\n                                \"external_reference\": null,\n                                \"depreciation_months\": 36,\n                                \"depreciation_months_formatted\": \"N/A\",\n                                \"budget_deduction\": 0,\n                                \"budget_deduction_formatted\": \"€ 0,00\",\n                                \"invoice_price\": 0,\n                                \"invoice_price_formatted\": \"€ 0,00\",\n                                \"current_value\": 0,\n                                \"current_value_formatted\": \"€ 0,00\",\n                                \"date_ordered\": \"2025-02-05 15:38:24\",\n                                \"date_ordered_formatted\": \"Feb 5, 2025\",\n                                \"type\": \"Buy\",\n                                \"condition\": \"new\",\n                                \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-1-sq.jpg\",\n                                \"is_product\": false,\n                                \"min_delivery_days\": 0,\n                                \"max_delivery_days\": 0,\n                                \"delivery_time\": null,\n                                \"currency\": \"EUR\",\n                                \"variant\": null,\n                                \"can_be_offboarded\": true,\n                                \"rent_end_date\": null,\n                                \"pending_offboards_count\": null,\n                                \"confirmed_offboards_count\": null,\n                                \"owner\": {\n                                    \"id\": 489,\n                                    \"company_name\": \"Workwize Demo CSM\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 608,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                    \"updated_at\": \"2025-02-05T15:28:37.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"total_orders\": 13,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"owner_id\": 489,\n                                \"category\": {\n                                    \"id\": 86,\n                                    \"name\": \"Laptops\",\n                                    \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                                    \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n                                },\n                                \"category_id\": 86,\n                                \"product\": {\n                                    \"account\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"id\": 58865,\n                                    \"name\": \"Apple, MBP, M1, 2020, 13\\\", 8GB RAM, 256GB SSD, Qwerty, Colour, Laptops\",\n                                    \"images\": [\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-1-sq.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-2-sq.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-3-sq.jpg\"\n                                    ],\n                                    \"type\": \"Buy\",\n                                    \"is_kickback\": false,\n                                    \"second_hand\": false,\n                                    \"source\": \"supplier\",\n                                    \"price\": \"0.00\",\n                                    \"short_description\": \"Apple Laptop, 13\\\", 8GB RAM, 256GB SSD, Available in: GB\",\n                                    \"description\": \"<p><strong>Apple MacBook Air Summary</strong></p><ul>    <li>Product Type: Notebook&nbsp;</li><li>Form Factor: Clamshell</li><li>Processor Family: Apple M</li><li>Processor Model: M1</li><li>Display Diagonal: 33.8 cm (13.3\\\")</li><li>Resolution: 2560 x 1600 Pixels</li><li>Internal Memory: 8 GB</li><li>Total Storage Capacity: 256 GB</li><li>Storage Media: SSD</li><li>On-board Graphics Adapter Model: Apple GPU.&nbsp;</li><li>Operating System Included: macOS Big Sur</li><li>Product Color: Grey</li><li>Weight: 1.29 kg</li></ul><p><br></p><p><strong>Design</strong></p><ul>    <li>Model Year: 2020</li><li>Product Type: Notebook</li><li>Color: Grey</li><li>Color Name: Space Grey</li><li>Form Factor: Clamshell</li><li>Casing Material: Aluminum</li></ul><p><br></p><p><strong>Display</strong></p><ul>    <li>Display Diagonal: 13.3-inch</li><li>Resolution: 2560 x 1600 Pixels</li><li>Panel Type: IPS</li><li>Aspect Ratio: 16:9</li><li>LED Backlight: Yes</li><li>Brightness: 400 cd/m²</li><li>Pixel Density: 227 ppi</li><li>Color Space: DCI-P3</li><li>True Tone Technology: Yes</li></ul><p><br></p><p><strong>Processor</strong></p><ul>    <li>Processor Manufacturer: Apple</li><li>Processor Family: Apple M</li><li>Processor Generation: 1st Generation Apple M</li><li>Processor Model: M1</li><li>Number of Processor Cores: 8</li><li>Coprocessor Model: Neural Engine</li><li>Coprocessor Cores: 16</li></ul><p><br></p><p><strong>Memory</strong></p><ul>    <li>Memory Form Factor: On-board</li><li>Maximum Internal Memory: 8 GB</li></ul><p><br></p><p><strong>Storage</strong></p><ul>    <li>Storage Media: SSD</li><li>Total SSD Capacity: 256 GB</li><li>Number of Installed SSDs: 1</li><li>SSD Capacity: 256 GB</li></ul><p><br></p><p><strong>Graphics</strong></p><ul>    <li>Discrete Graphics Adapter Model: Not available</li><li>On-board Graphics Adapter Model: Apple GPU</li><li>Built-in Graphics Adapter Cores: 7</li><li>Built-in Graphics Adapter 6K Support: Yes</li></ul><p><br></p><p><strong>Audio</strong></p><ul>    <li>Audio System: Dolby Atmos</li><li>Number of Built-in Speakers: 2</li><li>Built-in Microphone: Yes</li><li>Number of Microphones: 3</li></ul><p><br></p><p><strong>Camera</strong></p><ul>    <li>Front Camera: Yes</li><li>Front Camera HD Type: HD</li></ul><p><br></p><p><strong>Network</strong></p><ul>    <li>Wi-Fi Standard: Wi-Fi 6 (802.11ax)</li><li>Wi-Fi Standards: 802.11a/b/g, Wi-Fi 4 (802.11n), Wi-Fi 5 (802.11ac), Wi-Fi 6 (802.11ax)</li><li>Bluetooth: Yes</li><li>Bluetooth Version: 5.0</li></ul><p><br></p><p><strong>Ports &amp; Interfaces</strong></p><ul>    <li>Number of USB4 Gen 3×2 ports: 2</li><li>Intel® Thunderbolt 4: Yes</li><li>Headphone Outputs: 1</li><li>Combo Headphone/Mic Port: Yes</li><li>Charging Port Type: USB Type-C</li><li>USB Type-C DisplayPort Alternate Mode: Yes</li></ul><p><br></p><p><strong>Performance</strong></p><ul>    <li>Ambient Light Sensor: Yes</li><li>Voice Control: Yes</li><li>Text-to-Speech Technology: Yes</li></ul><p><br></p><p><strong>Keyboard</strong></p><ul>    <li>Pointing Device: Trackpad</li><li>Backlit Keyboard: Yes</li><li>Island-style Keyboard: Yes</li><li>Full-size Keyboard: Yes</li></ul><p><br></p><p><strong>Software</strong></p><ul>    <li>Operating System Included: macOS Big Sur</li></ul><p><br></p><p><strong>Battery</strong></p><ul>    <li>Battery Capacity (Watt-hours): 49.9 Wh</li><li>Battery Technology: Lithium-Polymer (LiPo)</li><li>Battery Life: 18 hours</li><li>Browsing Time (Wi-Fi): 15 hours</li></ul><p><br></p><p><strong>Power</strong></p><ul>    <li>AC Adapter Power: 30 W</li><li>AC Adapter Frequency: 50 - 60 Hz</li><li>AC Adapter Input Voltage: 100 - 240 V</li></ul><p><br></p><p><strong>Security</strong></p><ul>    <li>Fingerprint Reader: Yes</li></ul><p><br></p><p><strong>Operational Conditions</strong></p><ul>    <li>Operating Temperature (T-T): 10 - 35 °C</li><li>Storage Temperature: -25 - 45 °C</li><li>Operating Relative Humidity (H-H): 0 - 90%</li><li>Operating Altitude: 0 - 3000 m</li><li>Storage Altitude: 0 - 10500 m</li></ul><p><br></p><p><strong>Sustainability</strong></p><ul>    <li>Sustainability Certificates: EPEAT Gold, ENERGY STAR</li></ul><p><br></p><p><strong>Weight &amp; Dimensions</strong></p><ul>    <li>Weight: 1.29 kg</li><li>Width: 304.1 mm</li><li>Depth: 212.4 mm</li><li>Height: 16.1 mm</li><li>Front Height: 4.1 mm</li><li>Rear Height: 1.61 cm</li></ul><p><br></p><p><strong>Packaging Content</strong></p><ul>    <li>Included Cables: USB Type-C</li></ul><p><br></p><p><strong>Other Features</strong></p><ul>    <li>Supported Graphic Resolutions: 1024 x 640, 1440 x 900 (WXGA+), 1680 x 1050 (WSXGA+), 2560 x 1600 (WQXGA)</li></ul><p><br></p><p><strong>Technical Details</strong></p><ul>    <li>Repairability Index: 6</li></ul><p><br></p><p><strong>Brand-specific Features</strong></p><ul>    <li>Accessibility Features: Closed Captioning (for the deaf and hard of hearing), Increase Contrast, Reduce Motion, Siri and Dictation</li></ul>\",\n                                    \"catalog_id\": 608,\n                                    \"article_code\": \"WOW-0194252048986-REF\",\n                                    \"ean\": \"0194252048986\",\n                                    \"category_id\": 86,\n                                    \"supplier\": {\n                                        \"id\": 357,\n                                        \"name\": \"Warehouse UK (LP)\",\n                                        \"hasShipment\": 1,\n                                        \"warehouse\": {\n                                            \"id\": 1,\n                                            \"warehouse_provider\": \"logistic_plus\",\n                                            \"name\": \"Logistics Plus\",\n                                            \"warehouse_code\": \"LDW\",\n                                            \"address\": \"UK\",\n                                            \"business_name\": \"Xpand Logistics Ltd\",\n                                            \"business_address\": \"Carnival Cl, Basildon SS14 3WN\",\n                                            \"contact_person\": \"Marek Kukurski - For Workwize\",\n                                            \"phone_number\": \"+44 (0) 1277 287 963\",\n                                            \"created_at\": \"2023-06-22T13:39:37.000000Z\",\n                                            \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                                        },\n                                        \"created_at\": \"2023-11-13T16:44:45.000000Z\",\n                                        \"updated_at\": \"2024-07-23T07:48:31.000000Z\"\n                                    },\n                                    \"order\": null,\n                                    \"available_stock\": 0,\n                                    \"created_at\": \"2024-03-04T08:29:24.000000Z\",\n                                    \"updated_at\": \"2024-11-06T10:20:00.000000Z\",\n                                    \"min_delivery_days\": 1,\n                                    \"max_delivery_days\": 5,\n                                    \"delivery_time\": \"1 - 5 Business Days\",\n                                    \"attribute\": null,\n                                    \"prices\": {\n                                        \"id\": 68319,\n                                        \"invoice_price\": \"0.00\",\n                                        \"invoice_currency\": \"eur\",\n                                        \"invoice_payment_period\": \"one-time\",\n                                        \"invoice_payment_end_date\": null,\n                                        \"cost_price\": \"0.00\",\n                                        \"cost_currency\": \"eur\",\n                                        \"cost_payment_period\": \"one-time\",\n                                        \"cost_payment_end_date\": null,\n                                        \"cost_vat_level\": null,\n                                        \"sell_price\": \"0.00\",\n                                        \"sell_currency\": \"eur\",\n                                        \"sell_payment_period\": \"one-time\",\n                                        \"sell_payment_end_date\": null,\n                                        \"sell_vat_level\": null\n                                    },\n                                    \"variant_display\": \"attributes\",\n                                    \"can_be_offboarded\": true,\n                                    \"parent\": {\n                                        \"account\": {\n                                            \"id\": 2,\n                                            \"icon\": \"€\",\n                                            \"name\": \"EUR\",\n                                            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                        },\n                                        \"id\": 53312,\n                                        \"name\": \"Apple, MBP, M1, 2020, 13\\\", 8GB RAM, 256GB SSD, Qwerty, Colour, Laptops\",\n                                        \"images\": [\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-1-sq.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-2-sq.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Apple-MacBookAir-8GB-256-3-sq.jpg\"\n                                        ],\n                                        \"type\": \"Buy\",\n                                        \"is_kickback\": false,\n                                        \"second_hand\": true,\n                                        \"source\": \"warehouse\",\n                                        \"price\": \"811.00\",\n                                        \"short_description\": \"Apple Laptop, 13\\\", 8GB RAM, 256GB SSD, Available in: GB\",\n                                        \"description\": \"<p><strong>Apple MacBook Air Summary</strong></p>\\n<ul>\\n    <li>Product Type: Notebook&nbsp;</li>\\n    <li>Form Factor: Clamshell</li>\\n    <li>Processor Family: Apple M</li>\\n    <li>Processor Model: M1</li>\\n    <li>Display Diagonal: 33.8 cm (13.3&quot;)</li>\\n    <li>Resolution: 2560 x 1600 Pixels</li>\\n    <li>Internal Memory: 8 GB</li>\\n    <li>Total Storage Capacity: 256 GB</li>\\n    <li>Storage Media: SSD</li>\\n    <li>On-board Graphics Adapter Model: Apple GPU.&nbsp;</li>\\n    <li>Operating System Included: macOS Big Sur</li>\\n    <li>Product Color: Grey</li>\\n    <li>Weight: 1.29 kg</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Design</strong></p>\\n<ul>\\n    <li>Model Year: 2020</li>\\n    <li>Product Type: Notebook</li>\\n    <li>Color: Grey</li>\\n    <li>Color Name: Space Grey</li>\\n    <li>Form Factor: Clamshell</li>\\n    <li>Casing Material: Aluminum</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Display</strong></p>\\n<ul>\\n    <li>Display Diagonal: 13.3-inch</li>\\n    <li>Resolution: 2560 x 1600 Pixels</li>\\n    <li>Panel Type: IPS</li>\\n    <li>Aspect Ratio: 16:9</li>\\n    <li>LED Backlight: Yes</li>\\n    <li>Brightness: 400 cd/m&sup2;</li>\\n    <li>Pixel Density: 227 ppi</li>\\n    <li>Color Space: DCI-P3</li>\\n    <li>True Tone Technology: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Processor</strong></p>\\n<ul>\\n    <li>Processor Manufacturer: Apple</li>\\n    <li>Processor Family: Apple M</li>\\n    <li>Processor Generation: 1st Generation Apple M</li>\\n    <li>Processor Model: M1</li>\\n    <li>Number of Processor Cores: 8</li>\\n    <li>Coprocessor Model: Neural Engine</li>\\n    <li>Coprocessor Cores: 16</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Memory</strong></p>\\n<ul>\\n    <li>Memory Form Factor: On-board</li>\\n    <li>Maximum Internal Memory: 8 GB</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Storage</strong></p>\\n<ul>\\n    <li>Storage Media: SSD</li>\\n    <li>Total SSD Capacity: 256 GB</li>\\n    <li>Number of Installed SSDs: 1</li>\\n    <li>SSD Capacity: 256 GB</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Graphics</strong></p>\\n<ul>\\n    <li>Discrete Graphics Adapter Model: Not available</li>\\n    <li>On-board Graphics Adapter Model: Apple GPU</li>\\n    <li>Built-in Graphics Adapter Cores: 7</li>\\n    <li>Built-in Graphics Adapter 6K Support: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Audio</strong></p>\\n<ul>\\n    <li>Audio System: Dolby Atmos</li>\\n    <li>Number of Built-in Speakers: 2</li>\\n    <li>Built-in Microphone: Yes</li>\\n    <li>Number of Microphones: 3</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Camera</strong></p>\\n<ul>\\n    <li>Front Camera: Yes</li>\\n    <li>Front Camera HD Type: HD</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Network</strong></p>\\n<ul>\\n    <li>Wi-Fi Standard: Wi-Fi 6 (802.11ax)</li>\\n    <li>Wi-Fi Standards: 802.11a/b/g, Wi-Fi 4 (802.11n), Wi-Fi 5 (802.11ac), Wi-Fi 6 (802.11ax)</li>\\n    <li>Bluetooth: Yes</li>\\n    <li>Bluetooth Version: 5.0</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Ports &amp; Interfaces</strong></p>\\n<ul>\\n    <li>Number of USB4 Gen 3&times;2 ports: 2</li>\\n    <li>Intel&reg; Thunderbolt 4: Yes</li>\\n    <li>Headphone Outputs: 1</li>\\n    <li>Combo Headphone/Mic Port: Yes</li>\\n    <li>Charging Port Type: USB Type-C</li>\\n    <li>USB Type-C DisplayPort Alternate Mode: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Performance</strong></p>\\n<ul>\\n    <li>Ambient Light Sensor: Yes</li>\\n    <li>Voice Control: Yes</li>\\n    <li>Text-to-Speech Technology: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Keyboard</strong></p>\\n<ul>\\n    <li>Pointing Device: Trackpad</li>\\n    <li>Backlit Keyboard: Yes</li>\\n    <li>Island-style Keyboard: Yes</li>\\n    <li>Full-size Keyboard: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Software</strong></p>\\n<ul>\\n    <li>Operating System Included: macOS Big Sur</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Battery</strong></p>\\n<ul>\\n    <li>Battery Capacity (Watt-hours): 49.9 Wh</li>\\n    <li>Battery Technology: Lithium-Polymer (LiPo)</li>\\n    <li>Battery Life: 18 hours</li>\\n    <li>Browsing Time (Wi-Fi): 15 hours</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Power</strong></p>\\n<ul>\\n    <li>AC Adapter Power: 30 W</li>\\n    <li>AC Adapter Frequency: 50 - 60 Hz</li>\\n    <li>AC Adapter Input Voltage: 100 - 240 V</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Security</strong></p>\\n<ul>\\n    <li>Fingerprint Reader: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Operational Conditions</strong></p>\\n<ul>\\n    <li>Operating Temperature (T-T): 10 - 35 &deg;C</li>\\n    <li>Storage Temperature: -25 - 45 &deg;C</li>\\n    <li>Operating Relative Humidity (H-H): 0 - 90%</li>\\n    <li>Operating Altitude: 0 - 3000 m</li>\\n    <li>Storage Altitude: 0 - 10500 m</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Sustainability</strong></p>\\n<ul>\\n    <li>Sustainability Certificates: EPEAT Gold, ENERGY STAR</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Weight &amp; Dimensions</strong></p>\\n<ul>\\n    <li>Weight: 1.29 kg</li>\\n    <li>Width: 304.1 mm</li>\\n    <li>Depth: 212.4 mm</li>\\n    <li>Height: 16.1 mm</li>\\n    <li>Front Height: 4.1 mm</li>\\n    <li>Rear Height: 1.61 cm</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Packaging Content</strong></p>\\n<ul>\\n    <li>Included Cables: USB Type-C</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Other Features</strong></p>\\n<ul>\\n    <li>Supported Graphic Resolutions: 1024 x 640, 1440 x 900 (WXGA+), 1680 x 1050 (WSXGA+), 2560 x 1600 (WQXGA)</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Technical Details</strong></p>\\n<ul>\\n    <li>Repairability Index: 6</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Brand-specific Features</strong></p>\\n<ul>\\n    <li>Accessibility Features: Closed Captioning (for the deaf and hard of hearing), Increase Contrast, Reduce Motion, Siri and Dictation</li>\\n</ul>\",\n                                        \"catalog_id\": null,\n                                        \"article_code\": \"WOW-0194252048986-REF\",\n                                        \"ean\": \"0194252048986\",\n                                        \"category_id\": 86,\n                                        \"supplier\": {\n                                            \"id\": 357,\n                                            \"name\": \"Warehouse UK (LP)\",\n                                            \"hasShipment\": 1,\n                                            \"warehouse\": {\n                                                \"id\": 1,\n                                                \"warehouse_provider\": \"logistic_plus\",\n                                                \"name\": \"Logistics Plus\",\n                                                \"warehouse_code\": \"LDW\",\n                                                \"address\": \"UK\",\n                                                \"business_name\": \"Xpand Logistics Ltd\",\n                                                \"business_address\": \"Carnival Cl, Basildon SS14 3WN\",\n                                                \"contact_person\": \"Marek Kukurski - For Workwize\",\n                                                \"phone_number\": \"+44 (0) 1277 287 963\",\n                                                \"created_at\": \"2023-06-22T13:39:37.000000Z\",\n                                                \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                                            },\n                                            \"created_at\": \"2023-11-13T16:44:45.000000Z\",\n                                            \"updated_at\": \"2024-07-23T07:48:31.000000Z\"\n                                        },\n                                        \"order\": null,\n                                        \"available_stock\": 0,\n                                        \"created_at\": \"2023-11-17T15:46:07.000000Z\",\n                                        \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n                                        \"min_delivery_days\": 1,\n                                        \"max_delivery_days\": 5,\n                                        \"delivery_time\": \"1 - 5 Business Days\",\n                                        \"attribute\": null,\n                                        \"prices\": {\n                                            \"id\": 62200,\n                                            \"invoice_price\": \"0.00\",\n                                            \"invoice_currency\": \"eur\",\n                                            \"invoice_payment_period\": \"one-time\",\n                                            \"invoice_payment_end_date\": null,\n                                            \"cost_price\": \"0.00\",\n                                            \"cost_currency\": \"eur\",\n                                            \"cost_payment_period\": \"one-time\",\n                                            \"cost_payment_end_date\": null,\n                                            \"cost_vat_level\": null,\n                                            \"sell_price\": \"811.00\",\n                                            \"sell_currency\": \"eur\",\n                                            \"sell_payment_period\": \"one-time\",\n                                            \"sell_payment_end_date\": null,\n                                            \"sell_vat_level\": null\n                                        },\n                                        \"variant_display\": null,\n                                        \"can_be_offboarded\": true,\n                                        \"parent\": null,\n                                        \"parent_id\": null,\n                                        \"product_images\": [],\n                                        \"variant_product_id\": null,\n                                        \"rental_period_in_months\": null,\n                                        \"limit\": null\n                                    },\n                                    \"parent_id\": 53312,\n                                    \"product_images\": [],\n                                    \"variant_product_id\": null,\n                                    \"rental_period_in_months\": null,\n                                    \"limit\": null\n                                },\n                                \"product_id\": 58865,\n                                \"location_type\": \"employee\",\n                                \"note\": null,\n                                \"tags\": [],\n                                \"offboard_asset_condition\": null,\n                                \"offboard_asset_notes\": null,\n                                \"warehouse_status\": \"unknown\",\n                                \"warehouse_held_code\": null,\n                                \"quarantined_reason\": null,\n                                \"stock\": null,\n                                \"employee\": {\n                                    \"id\": 136897,\n                                    \"available_rent_budget\": 10000,\n                                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_rent_budget\": 10000,\n                                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_rent_budget\": 10000,\n                                    \"available_purchase_budget\": 10000,\n                                    \"available_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_purchase_budget\": 10000,\n                                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_purchase_budget\": 10000,\n                                    \"department_id\": 19442,\n                                    \"manual_sync\": false,\n                                    \"department\": {\n                                        \"id\": 19442,\n                                        \"employer_id\": 489,\n                                        \"name\": \"IT\",\n                                        \"rent_budget\": 10000,\n                                        \"purchase_budget\": 10000,\n                                        \"custom\": 0,\n                                        \"created_at\": \"2025-02-03T08:17:51.000000Z\",\n                                        \"updated_at\": \"2025-02-03T08:17:51.000000Z\",\n                                        \"employees_count\": 7,\n                                        \"budget_type\": \"fixed\",\n                                        \"budgets\": [\n                                            {\n                                                \"id\": 8901,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"purchase\"\n                                            },\n                                            {\n                                                \"id\": 8902,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"rental\"\n                                            }\n                                        ],\n                                        \"auto_approve_orders\": true,\n                                        \"auto_offboarding\": false,\n                                        \"user_id\": null\n                                    },\n                                    \"employer\": {\n                                        \"id\": 489,\n                                        \"company_name\": \"Workwize Demo CSM\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 608,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                        \"updated_at\": \"2025-02-05T15:28:37.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 13,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"currency\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"created_at\": \"2025-02-03T08:17:54.000000Z\",\n                                    \"updated_at\": \"2025-02-03T08:17:54.000000Z\",\n                                    \"entity\": null,\n                                    \"invitation_accepted\": true,\n                                    \"status\": \"added\",\n                                    \"balances\": [\n                                        {\n                                            \"id\": 248990,\n                                            \"budget_id\": 8902,\n                                            \"bugdet_balance_type\": \"rental\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        },\n                                        {\n                                            \"id\": 248991,\n                                            \"budget_id\": 8901,\n                                            \"bugdet_balance_type\": \"purchase\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        }\n                                    ],\n                                    \"address\": {\n                                        \"id\": 136630,\n                                        \"city\": \"West Adriennestad\",\n                                        \"country\": {\n                                            \"id\": 32,\n                                            \"name\": \"Netherlands\",\n                                            \"code\": \"NL\",\n                                            \"requires_tin\": false\n                                        },\n                                        \"company_name\": null,\n                                        \"country_id\": 32,\n                                        \"address_line_1\": \"Walsh Dale\",\n                                        \"address_line_2\": \"8392\",\n                                        \"region\": \"Minnesota\",\n                                        \"postcode\": \"59442\",\n                                        \"postal_code\": \"59442\",\n                                        \"additional_address_line\": \"Shores\",\n                                        \"name\": \"Kody\",\n                                        \"first_name\": \"Kody\",\n                                        \"last_name\": \"Graham\",\n                                        \"email\": \"kody.graham@workwizedemocsm.com\",\n                                        \"phone_number\": \"1-941-758-1274\"\n                                    },\n                                    \"employment_start_date\": null,\n                                    \"employment_end_date\": null,\n                                    \"tax_identification_number\": null\n                                }\n                            }\n                        ],\n                        \"status\": \"order_placed\"\n                    }\n                ],\n                \"estimatedDelivery\": null,\n                \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                \"max_eta_from_supplier\": \"Feb 12, 2025\",\n                \"shipment_pickup_time\": null,\n                \"expected_delivery_time_range\": \"1 - 6 Business Days\",\n                \"deliveryDate\": null\n            },\n            {\n                \"id\": 220960,\n                \"order_number\": \"tRUVA2VGJXT\",\n                \"tracking_number\": null,\n                \"track_and_trace_url\": null,\n                \"custom_tnt_url\": null,\n                \"status\": \"Order Received\",\n                \"tag\": null,\n                \"destination_address\": {\n                    \"id\": 136630,\n                    \"city\": \"West Adriennestad\",\n                    \"country\": {\n                        \"id\": 32,\n                        \"name\": \"Netherlands\",\n                        \"code\": \"NL\",\n                        \"requires_tin\": false\n                    },\n                    \"company_name\": null,\n                    \"country_id\": 32,\n                    \"address_line_1\": \"Walsh Dale\",\n                    \"address_line_2\": \"8392\",\n                    \"region\": \"Minnesota\",\n                    \"postcode\": \"59442\",\n                    \"postal_code\": \"59442\",\n                    \"additional_address_line\": \"Shores\",\n                    \"name\": \"Kody\",\n                    \"first_name\": \"Kody\",\n                    \"last_name\": \"Graham\",\n                    \"email\": \"kody.graham@workwizedemocsm.com\",\n                    \"phone_number\": \"1-941-758-1274\"\n                },\n                \"description\": null,\n                \"products\": [\n                    {\n                        \"name\": \"Apple, MBP, M1, 2020, 13\\\", 8GB RAM, 256GB SSD, Qwerty, Colour, Laptops\",\n                        \"quantity\": 1\n                    },\n                    {\n                        \"name\": \"Apple, EarPods, Wired (USB-C), In-Ear, Headphones\",\n                        \"quantity\": 1\n                    }\n                ],\n                \"history\": [],\n                \"created_at\": \"2025-02-05T15:38:24.000000Z\",\n                \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 295743,\n                        \"product_quantity\": 1,\n                        \"price\": 0,\n                        \"price_formatted\": \"€0\",\n                        \"subtotal\": 0,\n                        \"subtotal_formatted\": \"€ 0,00\",\n                        \"invoice_subtotal\": \"€ 0,00\",\n                        \"supplier\": {\n                            \"id\": 288,\n                            \"name\": \"Warehouse EU (JK)\",\n                            \"hasShipment\": 1,\n                            \"warehouse\": {\n                                \"id\": 4,\n                                \"warehouse_provider\": \"logistic_plus\",\n                                \"name\": \"Logistics Plus\",\n                                \"warehouse_code\": \"VEW\",\n                                \"address\": \"EU\",\n                                \"business_name\": \"Jan Krediet\",\n                                \"business_address\": \"Jacob Roggeveenweg 8-10, 5928 LS Venlo, The Netherlands\",\n                                \"contact_person\": \"Nick van Well - For Workwize\",\n                                \"phone_number\": \"+31 (0) 521 539 529\",\n                                \"created_at\": \"2023-08-23T10:51:57.000000Z\",\n                                \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                            },\n                            \"created_at\": \"2023-07-26T16:00:33.000000Z\",\n                            \"updated_at\": \"2024-07-23T07:48:31.000000Z\"\n                        },\n                        \"variant\": null,\n                        \"created_at\": \"2025-02-05T15:38:24.000000Z\",\n                        \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n                        \"returned_at\": null,\n                        \"canceled_at\": null,\n                        \"article_code\": \"WOW-0190198001733-NEW\",\n                        \"confirmed_at\": null,\n                        \"sent_to_supplier_at\": null,\n                        \"type\": \"Buy\",\n                        \"name\": \"Apple, EarPods, Wired (USB-C), In-Ear, Headphones\",\n                        \"images\": [\n                            \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-1-sq.jpg\",\n                            \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-2-sq.jpg\"\n                        ],\n                        \"discount\": \"€ 0,00\",\n                        \"assets\": [\n                            {\n                                \"id\": 66507887,\n                                \"name\": \"Apple, EarPods, Wired (USB-C), In-Ear, Headphones\",\n                                \"ean\": null,\n                                \"serial_code\": null,\n                                \"external_reference\": null,\n                                \"depreciation_months\": 36,\n                                \"depreciation_months_formatted\": \"N/A\",\n                                \"budget_deduction\": 0,\n                                \"budget_deduction_formatted\": \"€ 0,00\",\n                                \"invoice_price\": 0,\n                                \"invoice_price_formatted\": \"€ 0,00\",\n                                \"current_value\": 0,\n                                \"current_value_formatted\": \"€ 0,00\",\n                                \"date_ordered\": \"2025-02-05 15:38:24\",\n                                \"date_ordered_formatted\": \"Feb 5, 2025\",\n                                \"type\": \"Buy\",\n                                \"condition\": \"new\",\n                                \"image\": \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-1-sq.jpg\",\n                                \"is_product\": false,\n                                \"min_delivery_days\": 0,\n                                \"max_delivery_days\": 0,\n                                \"delivery_time\": null,\n                                \"currency\": \"EUR\",\n                                \"variant\": null,\n                                \"can_be_offboarded\": true,\n                                \"rent_end_date\": null,\n                                \"pending_offboards_count\": null,\n                                \"confirmed_offboards_count\": null,\n                                \"owner\": {\n                                    \"id\": 489,\n                                    \"company_name\": \"Workwize Demo CSM\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 608,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                    \"updated_at\": \"2025-02-05T15:28:37.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"total_orders\": 13,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"owner_id\": 489,\n                                \"category\": {\n                                    \"id\": 94,\n                                    \"name\": \"Headphones\",\n                                    \"created_at\": \"2021-05-05T17:58:54.000000Z\",\n                                    \"updated_at\": \"2021-05-05T17:58:54.000000Z\"\n                                },\n                                \"category_id\": 94,\n                                \"product\": {\n                                    \"account\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"id\": 58857,\n                                    \"name\": \"Apple, EarPods, Wired (USB-C), In-Ear, Headphones\",\n                                    \"images\": [\n                                        \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-1-sq.jpg\",\n                                        \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-2-sq.jpg\"\n                                    ],\n                                    \"type\": \"Buy\",\n                                    \"is_kickback\": false,\n                                    \"second_hand\": false,\n                                    \"source\": \"supplier\",\n                                    \"price\": \"0.00\",\n                                    \"short_description\": \"Headphone, Available in: EU\",\n                                    \"description\": \"<p><strong>Product</strong></p>\\n<ul>\\n    <li>Product number: 749972</li>\\n    <li>Manufacturer code: MMTN2ZM/A</li>\\n    <li>Brand: Apple</li>\\n    <li>Warranty: 2 years</li>\\n    <li>Old product returned for free</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Physical properties</strong></p>\\n<ul>\\n    <li>Weight in grams: 10 g</li>\\n    <li>Color: White</li>\\n    <li>Material: Plastic</li>\\n    <li>Built-in microphone: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Resistance</strong></p>\\n<ul>\\n    <li>Water-resistant: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Connection</strong></p>\\n<ul>\\n    <li>True wireless earbuds: No</li>\\n    <li>Compatible with applications: No</li>\\n    <li>Bluetooth: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Power supply</strong></p>\\n<ul>\\n    <li>Charging case: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Quality</strong></p>\\n<ul>\\n    <li>Hi-Res audio: No</li>\\n    <li>Sound quality according to customers: Very good</li>\\n    <li>Carrying comfort according to customers: Good</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Sound</strong></p>\\n<ul>\\n    <li>Sound reproduction: Stereo</li>\\n    <li>Noise canceling: No</li>\\n    <li>Volume limit: No</li>\\n    <li>Frequency range: 65 - 21000 Hz</li>\\n    <li>Speaker sensitivity: 98 dB</li>\\n    <li>Impedance: 45 &Omega;</li>\\n    <li>Tested by expert: Yes</li>\\n    <li>Bass: A little less present</li>\\n    <li>Mid tones: Balanced</li>\\n    <li>Treble: Balanced</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Casing</strong></p>\\n<ul>\\n    <li>Headphones wearing method: Earbud</li>\\n    <li>Type of ear cushions: Earbud</li>\\n    <li>Remote control on ear cups: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Cable</strong></p>\\n<ul>\\n    <li>Detachable cable: No</li>\\n    <li>Ribbon cable: No</li>\\n    <li>Coil cable: No</li>\\n    <li>Braided sleeve: No</li>\\n    <li>Remote in cable: Yes</li>\\n    <li>Connectors: Apple Lightning</li>\\n    <li>USB port: No</li>\\n    <li>Volume control cable: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Accessories</strong></p>\\n<ul>\\n    <li>Earbuds (sleeves) included: No</li>\\n    <li>Headphones adapter included: No</li>\\n    <li>Airplane adapter included: No</li>\\n</ul>\",\n                                    \"catalog_id\": 608,\n                                    \"article_code\": \"WOW-0190198001733-NEW\",\n                                    \"ean\": \"0190198001733\",\n                                    \"category_id\": 94,\n                                    \"supplier\": {\n                                        \"id\": 288,\n                                        \"name\": \"Warehouse EU (JK)\",\n                                        \"hasShipment\": 1,\n                                        \"warehouse\": {\n                                            \"id\": 4,\n                                            \"warehouse_provider\": \"logistic_plus\",\n                                            \"name\": \"Logistics Plus\",\n                                            \"warehouse_code\": \"VEW\",\n                                            \"address\": \"EU\",\n                                            \"business_name\": \"Jan Krediet\",\n                                            \"business_address\": \"Jacob Roggeveenweg 8-10, 5928 LS Venlo, The Netherlands\",\n                                            \"contact_person\": \"Nick van Well - For Workwize\",\n                                            \"phone_number\": \"+31 (0) 521 539 529\",\n                                            \"created_at\": \"2023-08-23T10:51:57.000000Z\",\n                                            \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                                        },\n                                        \"created_at\": \"2023-07-26T16:00:33.000000Z\",\n                                        \"updated_at\": \"2024-07-23T07:48:31.000000Z\"\n                                    },\n                                    \"order\": null,\n                                    \"available_stock\": 18,\n                                    \"created_at\": \"2024-03-04T08:22:27.000000Z\",\n                                    \"updated_at\": \"2024-11-06T10:20:00.000000Z\",\n                                    \"min_delivery_days\": 1,\n                                    \"max_delivery_days\": 5,\n                                    \"delivery_time\": \"1 - 5 Business Days\",\n                                    \"attribute\": null,\n                                    \"prices\": {\n                                        \"id\": 68311,\n                                        \"invoice_price\": \"0.00\",\n                                        \"invoice_currency\": \"eur\",\n                                        \"invoice_payment_period\": null,\n                                        \"invoice_payment_end_date\": null,\n                                        \"cost_price\": \"0.00\",\n                                        \"cost_currency\": \"eur\",\n                                        \"cost_payment_period\": null,\n                                        \"cost_payment_end_date\": null,\n                                        \"cost_vat_level\": null,\n                                        \"sell_price\": \"0.00\",\n                                        \"sell_currency\": \"eur\",\n                                        \"sell_payment_period\": null,\n                                        \"sell_payment_end_date\": null,\n                                        \"sell_vat_level\": null\n                                    },\n                                    \"variant_display\": null,\n                                    \"can_be_offboarded\": true,\n                                    \"parent\": {\n                                        \"account\": {\n                                            \"id\": 2,\n                                            \"icon\": \"€\",\n                                            \"name\": \"EUR\",\n                                            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                        },\n                                        \"id\": 53307,\n                                        \"name\": \"Apple, EarPods, Wired (USB-C), In-Ear, Headphones\",\n                                        \"images\": [\n                                            \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-1-sq.jpg\",\n                                            \"https://workwize-warehouse.s3.eu-west-3.amazonaws.com/10AppleEarpodsWMic-2-sq.jpg\"\n                                        ],\n                                        \"type\": \"Buy\",\n                                        \"is_kickback\": false,\n                                        \"second_hand\": false,\n                                        \"source\": \"warehouse\",\n                                        \"price\": \"22.00\",\n                                        \"short_description\": \"Headphone, Available in: EU\",\n                                        \"description\": \"<p><strong>Product</strong></p>\\n<ul>\\n    <li>Product number: 749972</li>\\n    <li>Manufacturer code: MMTN2ZM/A</li>\\n    <li>Brand: Apple</li>\\n    <li>Warranty: 2 years</li>\\n    <li>Old product returned for free</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Physical properties</strong></p>\\n<ul>\\n    <li>Weight in grams: 10 g</li>\\n    <li>Color: White</li>\\n    <li>Material: Plastic</li>\\n    <li>Built-in microphone: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Resistance</strong></p>\\n<ul>\\n    <li>Water-resistant: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Connection</strong></p>\\n<ul>\\n    <li>True wireless earbuds: No</li>\\n    <li>Compatible with applications: No</li>\\n    <li>Bluetooth: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Power supply</strong></p>\\n<ul>\\n    <li>Charging case: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Quality</strong></p>\\n<ul>\\n    <li>Hi-Res audio: No</li>\\n    <li>Sound quality according to customers: Very good</li>\\n    <li>Carrying comfort according to customers: Good</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Sound</strong></p>\\n<ul>\\n    <li>Sound reproduction: Stereo</li>\\n    <li>Noise canceling: No</li>\\n    <li>Volume limit: No</li>\\n    <li>Frequency range: 65 - 21000 Hz</li>\\n    <li>Speaker sensitivity: 98 dB</li>\\n    <li>Impedance: 45 &Omega;</li>\\n    <li>Tested by expert: Yes</li>\\n    <li>Bass: A little less present</li>\\n    <li>Mid tones: Balanced</li>\\n    <li>Treble: Balanced</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Casing</strong></p>\\n<ul>\\n    <li>Headphones wearing method: Earbud</li>\\n    <li>Type of ear cushions: Earbud</li>\\n    <li>Remote control on ear cups: No</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Cable</strong></p>\\n<ul>\\n    <li>Detachable cable: No</li>\\n    <li>Ribbon cable: No</li>\\n    <li>Coil cable: No</li>\\n    <li>Braided sleeve: No</li>\\n    <li>Remote in cable: Yes</li>\\n    <li>Connectors: Apple Lightning</li>\\n    <li>USB port: No</li>\\n    <li>Volume control cable: Yes</li>\\n</ul>\\n<p><br></p>\\n<p><strong>Accessories</strong></p>\\n<ul>\\n    <li>Earbuds (sleeves) included: No</li>\\n    <li>Headphones adapter included: No</li>\\n    <li>Airplane adapter included: No</li>\\n</ul>\",\n                                        \"catalog_id\": null,\n                                        \"article_code\": \"WOW-0190198001733-NEW\",\n                                        \"ean\": \"0190198001733\",\n                                        \"category_id\": 94,\n                                        \"supplier\": {\n                                            \"id\": 288,\n                                            \"name\": \"Warehouse EU (JK)\",\n                                            \"hasShipment\": 1,\n                                            \"warehouse\": {\n                                                \"id\": 4,\n                                                \"warehouse_provider\": \"logistic_plus\",\n                                                \"name\": \"Logistics Plus\",\n                                                \"warehouse_code\": \"VEW\",\n                                                \"address\": \"EU\",\n                                                \"business_name\": \"Jan Krediet\",\n                                                \"business_address\": \"Jacob Roggeveenweg 8-10, 5928 LS Venlo, The Netherlands\",\n                                                \"contact_person\": \"Nick van Well - For Workwize\",\n                                                \"phone_number\": \"+31 (0) 521 539 529\",\n                                                \"created_at\": \"2023-08-23T10:51:57.000000Z\",\n                                                \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n                                            },\n                                            \"created_at\": \"2023-07-26T16:00:33.000000Z\",\n                                            \"updated_at\": \"2024-07-23T07:48:31.000000Z\"\n                                        },\n                                        \"order\": null,\n                                        \"available_stock\": 18,\n                                        \"created_at\": \"2023-11-17T15:46:07.000000Z\",\n                                        \"updated_at\": \"2025-02-05T15:38:24.000000Z\",\n                                        \"min_delivery_days\": 1,\n                                        \"max_delivery_days\": 5,\n                                        \"delivery_time\": \"1 - 5 Business Days\",\n                                        \"attribute\": null,\n                                        \"prices\": {\n                                            \"id\": 62197,\n                                            \"invoice_price\": \"0.00\",\n                                            \"invoice_currency\": \"eur\",\n                                            \"invoice_payment_period\": \"one-time\",\n                                            \"invoice_payment_end_date\": null,\n                                            \"cost_price\": \"0.00\",\n                                            \"cost_currency\": \"eur\",\n                                            \"cost_payment_period\": \"one-time\",\n                                            \"cost_payment_end_date\": null,\n                                            \"cost_vat_level\": null,\n                                            \"sell_price\": \"22.00\",\n                                            \"sell_currency\": \"eur\",\n                                            \"sell_payment_period\": \"one-time\",\n                                            \"sell_payment_end_date\": null,\n                                            \"sell_vat_level\": null\n                                        },\n                                        \"variant_display\": null,\n                                        \"can_be_offboarded\": true,\n                                        \"parent\": null,\n                                        \"parent_id\": null,\n                                        \"product_images\": [],\n                                        \"variant_product_id\": null,\n                                        \"rental_period_in_months\": null,\n                                        \"limit\": null\n                                    },\n                                    \"parent_id\": 53307,\n                                    \"product_images\": [],\n                                    \"variant_product_id\": null,\n                                    \"rental_period_in_months\": null,\n                                    \"limit\": null\n                                },\n                                \"product_id\": 58857,\n                                \"location_type\": \"employee\",\n                                \"note\": null,\n                                \"tags\": [],\n                                \"offboard_asset_condition\": null,\n                                \"offboard_asset_notes\": null,\n                                \"warehouse_status\": \"unknown\",\n                                \"warehouse_held_code\": null,\n                                \"quarantined_reason\": null,\n                                \"stock\": null,\n                                \"employee\": {\n                                    \"id\": 136897,\n                                    \"available_rent_budget\": 10000,\n                                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_rent_budget\": 10000,\n                                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_rent_budget\": 10000,\n                                    \"available_purchase_budget\": 10000,\n                                    \"available_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_purchase_budget\": 10000,\n                                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_purchase_budget\": 10000,\n                                    \"department_id\": 19442,\n                                    \"manual_sync\": false,\n                                    \"department\": {\n                                        \"id\": 19442,\n                                        \"employer_id\": 489,\n                                        \"name\": \"IT\",\n                                        \"rent_budget\": 10000,\n                                        \"purchase_budget\": 10000,\n                                        \"custom\": 0,\n                                        \"created_at\": \"2025-02-03T08:17:51.000000Z\",\n                                        \"updated_at\": \"2025-02-03T08:17:51.000000Z\",\n                                        \"employees_count\": 7,\n                                        \"budget_type\": \"fixed\",\n                                        \"budgets\": [\n                                            {\n                                                \"id\": 8901,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"purchase\"\n                                            },\n                                            {\n                                                \"id\": 8902,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"rental\"\n                                            }\n                                        ],\n                                        \"auto_approve_orders\": true,\n                                        \"auto_offboarding\": false,\n                                        \"user_id\": null\n                                    },\n                                    \"employer\": {\n                                        \"id\": 489,\n                                        \"company_name\": \"Workwize Demo CSM\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 608,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-01-30T08:59:57.000000Z\",\n                                        \"updated_at\": \"2025-02-05T15:28:37.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 13,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"currency\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"created_at\": \"2025-02-03T08:17:54.000000Z\",\n                                    \"updated_at\": \"2025-02-03T08:17:54.000000Z\",\n                                    \"entity\": null,\n                                    \"invitation_accepted\": true,\n                                    \"status\": \"added\",\n                                    \"balances\": [\n                                        {\n                                            \"id\": 248990,\n                                            \"budget_id\": 8902,\n                                            \"bugdet_balance_type\": \"rental\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        },\n                                        {\n                                            \"id\": 248991,\n                                            \"budget_id\": 8901,\n                                            \"bugdet_balance_type\": \"purchase\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        }\n                                    ],\n                                    \"address\": {\n                                        \"id\": 136630,\n                                        \"city\": \"West Adriennestad\",\n                                        \"country\": {\n                                            \"id\": 32,\n                                            \"name\": \"Netherlands\",\n                                            \"code\": \"NL\",\n                                            \"requires_tin\": false\n                                        },\n                                        \"company_name\": null,\n                                        \"country_id\": 32,\n                                        \"address_line_1\": \"Walsh Dale\",\n                                        \"address_line_2\": \"8392\",\n                                        \"region\": \"Minnesota\",\n                                        \"postcode\": \"59442\",\n                                        \"postal_code\": \"59442\",\n                                        \"additional_address_line\": \"Shores\",\n                                        \"name\": \"Kody\",\n                                        \"first_name\": \"Kody\",\n                                        \"last_name\": \"Graham\",\n                                        \"email\": \"kody.graham@workwizedemocsm.com\",\n                                        \"phone_number\": \"1-941-758-1274\"\n                                    },\n                                    \"employment_start_date\": null,\n                                    \"employment_end_date\": null,\n                                    \"tax_identification_number\": null\n                                }\n                            }\n                        ],\n                        \"status\": \"order_placed\"\n                    }\n                ],\n                \"estimatedDelivery\": null,\n                \"min_eta_from_supplier\": \"Feb 06, 2025\",\n                \"max_eta_from_supplier\": \"Feb 12, 2025\",\n                \"shipment_pickup_time\": null,\n                \"expected_delivery_time_range\": \"1 - 6 Business Days\",\n                \"deliveryDate\": null\n            }\n        ],\n        \"warehouse\": null\n    }\n}"}],"_postman_id":"3dcb3e98-4075-49e5-959b-804c9f9f5fcc"},{"name":"Create Warehouse Order","id":"d38eb555-ceb3-4056-8932-f94dfde2ee96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"products\": [\n    {\n      \"id\": 84166,\n      \"quantity\": 1\n    },\n    {\n      \"id\": 84216,\n      \"quantity\": 1\n    }\n  ],\n  \"request_quote\": true\n}\n","options":{"raw":{"language":"json"}}},"url":"/warehouses/{{warehouse_id}}/orders","description":"<p>This API allows <strong>employers</strong> to create orders for products from a warehouse. Orders can either be <strong>placed directly</strong> or <strong>submitted as a quote request</strong>.</p>\n<h4 id=\"fields-explanation\"><strong>Fields Explanation:</strong></h4>\n<ul>\n<li><p><strong><code>products</code></strong> (required, array)</p>\n<ul>\n<li><p>An array of products being ordered, where each product contains an <code>id</code> and <code>quantity</code>.</p>\n</li>\n<li><p>If the array is empty, a <code>422</code> error is returned.</p>\n</li>\n<li><p>Products are validated for availability before order processing.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>request_quote</code></strong> (optional, boolean)</p>\n<ul>\n<li><p>Determines whether the order should be a <strong>quote request</strong> instead of a standard order.</p>\n</li>\n<li><p>If <code>true</code>, the order will be marked as \"QUOTE_REQUEST\" and processed accordingly.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["warehouses","{{warehouse_id}}","orders"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b78b7498-b0a4-401b-ac9e-b23cbb5cd7cd","name":"Successful Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"products\": [\n    {\n      \"id\": 84166,\n      \"quantity\": 1\n    },\n    {\n      \"id\": 84216,\n      \"quantity\": 1\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"/warehouses/{{warehouse_id}}/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 06 Feb 2025 13:19:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 106314,\n        \"number\": \"tW2F510ASMJ\",\n        \"date\": \"2025-02-06\",\n        \"total_products\": 2,\n        \"currency\": {\n            \"id\": 1,\n            \"icon\": \"$\",\n            \"name\": \"USD\",\n            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n        },\n        \"address\": {\n            \"id\": 18765,\n            \"city\": \"Venlo\",\n            \"country\": {\n                \"id\": 32,\n                \"name\": \"Netherlands\",\n                \"code\": \"NL\",\n                \"requires_tin\": false\n            },\n            \"company_name\": \"Jan Krediet\",\n            \"country_id\": 32,\n            \"address_line_1\": \"Jacob Roggeveenweg, 8-10\",\n            \"address_line_2\": \"\",\n            \"region\": \"5928 Ls\",\n            \"postcode\": \"\",\n            \"postal_code\": \"\",\n            \"additional_address_line\": null,\n            \"name\": null,\n            \"first_name\": null,\n            \"last_name\": null,\n            \"email\": null,\n            \"phone_number\": null\n        },\n        \"status\": \"Processed\",\n        \"request_status\": \"auto_approved\",\n        \"buy_subtotal\": 0,\n        \"rent_subtotal\": 0,\n        \"buy_subtotal_formatted\": \"N/A\",\n        \"rent_subtotal_formatted\": \"N/A\",\n        \"buy_invoice_price\": 2003.3,\n        \"rent_invoice_price\": 0,\n        \"buy_invoice_price_formatted\": \"$ 2,003.30\",\n        \"rent_invoice_price_formatted\": \"$ 0.00\",\n        \"sell_currency_symbol\": \"credits\",\n        \"invoice_currency_symbol\": \"$\",\n        \"buy_sell_price\": 0,\n        \"rent_sell_price\": 0,\n        \"budget_deduction\": 0,\n        \"budget_deduction_formatted\": \"N/A\",\n        \"created_at\": \"2025-02-06T13:19:23.000000Z\",\n        \"updated_at\": \"2025-02-06T13:19:23.000000Z\",\n        \"receiver_id\": 4,\n        \"receiver_type\": \"warehouse\",\n        \"actor\": {\n            \"id\": 139558,\n            \"name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"phone_number\": \"11111111111\",\n            \"personal_phone_number\": null,\n            \"invite\": {\n                \"id\": 83079,\n                \"email\": \"john@goworkwize.com\",\n                \"status\": \"Accepted\",\n                \"department_id\": null,\n                \"invitee_role_id\": 4,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n            },\n            \"employer\": {\n                \"id\": 490,\n                \"company_name\": \"Demo Company\",\n                \"city\": null,\n                \"total_employees\": 11,\n                \"address_line_1\": null,\n                \"warehouse_storage_code\": null,\n                \"postcode\": null,\n                \"catalog_id\": 801,\n                \"currency_id\": 2,\n                \"message\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                \"synced_asset\": 1,\n                \"org_id\": null,\n                \"announcement\": 0,\n                \"settings\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Sort By Suppliers\",\n                        \"slug\": \"sort-by-suppliers\",\n                        \"description\": \"\",\n                        \"order_by\": \"asc\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"name\": \"Perks\",\n                        \"slug\": \"perks\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 3,\n                        \"name\": \"Return Product\",\n                        \"slug\": \"return-product\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 7,\n                        \"name\": \"Cancel Product\",\n                        \"slug\": \"cancel-product\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 8,\n                        \"name\": \"Offboard Employee\",\n                        \"slug\": \"offboard-employee\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 9,\n                        \"name\": \"Generate Token\",\n                        \"slug\": \"generate-token\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 11,\n                        \"name\": \"Warehouse\",\n                        \"slug\": \"warehouse\",\n                        \"description\": \"Warehouse Features\"\n                    },\n                    {\n                        \"id\": 12,\n                        \"name\": \"Automations\",\n                        \"slug\": \"automations\",\n                        \"description\": \"This will enable automations like auto-off-boarding.\"\n                    },\n                    {\n                        \"id\": 13,\n                        \"name\": \"Decommission\",\n                        \"slug\": \"decommission_feature\",\n                        \"description\": \"Decommission feature for employers\"\n                    }\n                ],\n                \"total_orders\": 13,\n                \"account_type\": \"sales_demo\",\n                \"total_pending_requests\": 2\n            },\n            \"employee\": {\n                \"id\": 137077,\n                \"available_rent_budget\": 10000,\n                \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                \"total_rent_budget\": 10000,\n                \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                \"negative_available_rent_budget\": 10000,\n                \"available_purchase_budget\": 9999,\n                \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                \"total_purchase_budget\": 10000,\n                \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                \"negative_available_purchase_budget\": 9999,\n                \"department_id\": 19448,\n                \"manual_sync\": false,\n                \"department\": {\n                    \"id\": 19448,\n                    \"employer_id\": 490,\n                    \"name\": \"IT\",\n                    \"rent_budget\": 10000,\n                    \"purchase_budget\": 10000,\n                    \"custom\": 0,\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"employees_count\": 3,\n                    \"budget_type\": \"fixed\",\n                    \"budgets\": [\n                        {\n                            \"id\": 8909,\n                            \"name\": null,\n                            \"icon\": null,\n                            \"amount\": 10000,\n                            \"formatted_amount\": \"€ 10000.00\",\n                            \"currency\": \"EUR\",\n                            \"type\": \"purchase\"\n                        },\n                        {\n                            \"id\": 8910,\n                            \"name\": null,\n                            \"icon\": null,\n                            \"amount\": 10000,\n                            \"formatted_amount\": \"€ 10000.00\",\n                            \"currency\": \"EUR\",\n                            \"type\": \"rental\"\n                        }\n                    ],\n                    \"auto_approve_orders\": true,\n                    \"auto_offboarding\": false,\n                    \"user_id\": null\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"Demo Company\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"total_orders\": 13,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"currency\": {\n                    \"id\": 2,\n                    \"icon\": \"€\",\n                    \"name\": \"EUR\",\n                    \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                    \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                },\n                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                \"entity\": null,\n                \"invitation_accepted\": true,\n                \"status\": \"added\",\n                \"balances\": [\n                    {\n                        \"id\": 249332,\n                        \"budget_id\": 8909,\n                        \"bugdet_balance_type\": \"purchase\",\n                        \"available_balance\": 10000,\n                        \"formatted_available_balance\": \"€ 10000.00\"\n                    },\n                    {\n                        \"id\": 249333,\n                        \"budget_id\": 8910,\n                        \"bugdet_balance_type\": \"rental\",\n                        \"available_balance\": 10000,\n                        \"formatted_available_balance\": \"€ 10000.00\"\n                    }\n                ],\n                \"address\": null,\n                \"employment_start_date\": null,\n                \"employment_end_date\": null,\n                \"tax_identification_number\": null\n            },\n            \"email\": \"john@goworkwize.com\",\n            \"personal_email\": null,\n            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n            \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n            \"role\": {\n                \"id\": 4,\n                \"display_name\": \"Employer Admin\",\n                \"name\": \"employer-admin\"\n            },\n            \"original_role\": {\n                \"id\": 4,\n                \"display_name\": \"Employer Admin\",\n                \"name\": \"employer-admin\"\n            },\n            \"sub\": null,\n            \"read_privacy\": 0,\n            \"hasAsset\": false,\n            \"status\": \"Accepted\",\n            \"display_name\": \"John Doe\",\n            \"is_deactivated\": false\n        },\n        \"assigned_to\": null,\n        \"actor_id\": 139558,\n        \"subtotal\": 2003.3,\n        \"delivery_with_express\": false,\n        \"shipments\": [\n            {\n                \"id\": 220985,\n                \"order_number\": \"tW2F510ASMJ\",\n                \"tracking_number\": null,\n                \"track_and_trace_url\": null,\n                \"custom_tnt_url\": null,\n                \"status\": \"Order Received\",\n                \"tag\": null,\n                \"destination_address\": {\n                    \"id\": 18765,\n                    \"city\": \"Venlo\",\n                    \"country\": {\n                        \"id\": 32,\n                        \"name\": \"Netherlands\",\n                        \"code\": \"NL\",\n                        \"requires_tin\": false\n                    },\n                    \"company_name\": \"Jan Krediet\",\n                    \"country_id\": 32,\n                    \"address_line_1\": \"Jacob Roggeveenweg, 8-10\",\n                    \"address_line_2\": \"\",\n                    \"region\": \"5928 Ls\",\n                    \"postcode\": \"\",\n                    \"postal_code\": \"\",\n                    \"additional_address_line\": null,\n                    \"name\": null,\n                    \"first_name\": null,\n                    \"last_name\": null,\n                    \"email\": null,\n                    \"phone_number\": null\n                },\n                \"description\": null,\n                \"products\": [\n                    {\n                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                        \"quantity\": 1\n                    },\n                    {\n                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                        \"quantity\": 1\n                    }\n                ],\n                \"history\": [],\n                \"created_at\": \"2025-02-06T13:19:23.000000Z\",\n                \"updated_at\": \"2025-02-06T13:19:23.000000Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 295770,\n                        \"product_quantity\": 1,\n                        \"price\": 1,\n                        \"price_formatted\": \"credits1\",\n                        \"subtotal\": 1,\n                        \"subtotal_formatted\": \"$ 1.00\",\n                        \"invoice_subtotal\": \"$ 1,880.11\",\n                        \"supplier\": {\n                            \"id\": 318,\n                            \"name\": \"Dynacons MDM\",\n                            \"hasShipment\": 1,\n                            \"warehouse\": null,\n                            \"created_at\": \"2023-08-28T14:47:04.000000Z\",\n                            \"updated_at\": \"2024-09-05T07:53:39.000000Z\"\n                        },\n                        \"variant\": null,\n                        \"created_at\": \"2025-02-06T13:19:23.000000Z\",\n                        \"updated_at\": \"2025-02-06T13:19:23.000000Z\",\n                        \"returned_at\": null,\n                        \"canceled_at\": null,\n                        \"article_code\": \"MXCT3HN/A\",\n                        \"confirmed_at\": null,\n                        \"sent_to_supplier_at\": null,\n                        \"type\": \"Buy\",\n                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                        \"images\": [\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\"\n                        ],\n                        \"discount\": \"€ 0,00\",\n                        \"assets\": [],\n                        \"status\": \"order_placed\"\n                    }\n                ],\n                \"estimatedDelivery\": null,\n                \"min_eta_from_supplier\": \"Feb 13, 2025\",\n                \"max_eta_from_supplier\": \"Feb 20, 2025\",\n                \"shipment_pickup_time\": null,\n                \"expected_delivery_time_range\": \"1 - 2 Weeks\",\n                \"deliveryDate\": null\n            },\n            {\n                \"id\": 220986,\n                \"order_number\": \"tW2F510ASMJ\",\n                \"tracking_number\": null,\n                \"track_and_trace_url\": null,\n                \"custom_tnt_url\": null,\n                \"status\": \"Order Received\",\n                \"tag\": null,\n                \"destination_address\": {\n                    \"id\": 18765,\n                    \"city\": \"Venlo\",\n                    \"country\": {\n                        \"id\": 32,\n                        \"name\": \"Netherlands\",\n                        \"code\": \"NL\",\n                        \"requires_tin\": false\n                    },\n                    \"company_name\": \"Jan Krediet\",\n                    \"country_id\": 32,\n                    \"address_line_1\": \"Jacob Roggeveenweg, 8-10\",\n                    \"address_line_2\": \"\",\n                    \"region\": \"5928 Ls\",\n                    \"postcode\": \"\",\n                    \"postal_code\": \"\",\n                    \"additional_address_line\": null,\n                    \"name\": null,\n                    \"first_name\": null,\n                    \"last_name\": null,\n                    \"email\": null,\n                    \"phone_number\": null\n                },\n                \"description\": null,\n                \"products\": [\n                    {\n                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                        \"quantity\": 1\n                    },\n                    {\n                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                        \"quantity\": 1\n                    }\n                ],\n                \"history\": [],\n                \"created_at\": \"2025-02-06T13:19:23.000000Z\",\n                \"updated_at\": \"2025-02-06T13:19:23.000000Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 295771,\n                        \"product_quantity\": 1,\n                        \"price\": 1,\n                        \"price_formatted\": \"credits1\",\n                        \"subtotal\": 1,\n                        \"subtotal_formatted\": \"$ 1.00\",\n                        \"invoice_subtotal\": \"$ 123.19\",\n                        \"supplier\": {\n                            \"id\": 260,\n                            \"name\": \"CDW US MDM\",\n                            \"hasShipment\": 1,\n                            \"warehouse\": null,\n                            \"created_at\": \"2023-04-12T10:06:24.000000Z\",\n                            \"updated_at\": \"2025-01-13T13:01:29.000000Z\"\n                        },\n                        \"variant\": null,\n                        \"created_at\": \"2025-02-06T13:19:23.000000Z\",\n                        \"updated_at\": \"2025-02-06T13:19:23.000000Z\",\n                        \"returned_at\": null,\n                        \"canceled_at\": null,\n                        \"article_code\": \"4117607\",\n                        \"confirmed_at\": null,\n                        \"sent_to_supplier_at\": null,\n                        \"type\": \"Buy\",\n                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                        \"images\": [\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-1-sq.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-2-sq.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-3-sq.jpg\"\n                        ],\n                        \"discount\": \"€ 0,00\",\n                        \"assets\": [],\n                        \"status\": \"order_placed\"\n                    }\n                ],\n                \"estimatedDelivery\": null,\n                \"min_eta_from_supplier\": \"Feb 13, 2025\",\n                \"max_eta_from_supplier\": \"Feb 20, 2025\",\n                \"shipment_pickup_time\": null,\n                \"expected_delivery_time_range\": \"1 - 2 Weeks\",\n                \"deliveryDate\": null\n            }\n        ],\n        \"warehouse\": {\n            \"id\": 4,\n            \"warehouse_provider\": \"logistic_plus\",\n            \"name\": \"Logistics Plus\",\n            \"warehouse_code\": \"VEW\",\n            \"address\": \"EU\",\n            \"business_name\": \"Jan Krediet\",\n            \"business_address\": \"Jacob Roggeveenweg 8-10, 5928 LS Venlo, The Netherlands\",\n            \"contact_person\": \"Nick van Well - For Workwize\",\n            \"phone_number\": \"+31 (0) 521 539 529\",\n            \"created_at\": \"2023-08-23T10:51:57.000000Z\",\n            \"updated_at\": \"2024-12-20T07:47:46.000000Z\"\n        }\n    }\n}"}],"_postman_id":"d38eb555-ceb3-4056-8932-f94dfde2ee96"},{"name":"Create Office Order","id":"a7d55030-b5a1-4234-826a-ecdd5835bbee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"assets\": [\n        {\n            \"id\": 84166,\n            \"budget_deduction\": 100\n        },\n        {\n            \"id\": 84216,\n            \"budget_deduction\": 12.3\n        }\n    ],\n    \"products\": [\n        {\n            \"id\": 84166,\n            \"quantity\": 1\n        },\n        {\n            \"id\": 84216,\n            \"quantity\": 1\n        }\n    ],\n    \"delivery_with_express\": true,\n    \"assigned_to\": 5\n}","options":{"raw":{"language":"json"}}},"url":"/offices/{{office_id}}/orders","description":"<p>This API allows you to create an order for products and assets in an office. Orders can be placed by an employer, and optionally, an order can be assigned to an employee. Express delivery is available under specific conditions.</p>\n<h4 id=\"fields-explanation\"><strong>Fields Explanation:</strong></h4>\n<ul>\n<li><p><strong><code>products</code></strong> (nullable, array)</p>\n<ul>\n<li><p>An optional array of products being ordered, where each product contains an <code>id</code> and <code>quantity</code>.</p>\n</li>\n<li><p>If omitted, an empty array will be used.</p>\n</li>\n<li><p>Products are validated for stock availability and warehouse restrictions before order processing.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>assets</code></strong> (nullable, array)</p>\n<ul>\n<li><p>An optional array of assets being ordered, where each asset includes an <code>id</code> and <code>budget_deduction</code>.</p>\n</li>\n<li><p>If omitted, an empty array will be used.</p>\n</li>\n<li><p>Assets are validated for stock availability before order processing.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>assigned_to</code></strong> (nullable, integer)</p>\n<ul>\n<li><p>An optional field that assigns the order to a specific employee.</p>\n</li>\n<li><p>If omitted, the order will not be assigned to any employee.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>delivery_with_express</code></strong> (nullable, boolean)</p>\n<ul>\n<li><p>A boolean flag indicating whether express delivery is requested.</p>\n</li>\n<li><p>Default is <code>false</code> if not provided.</p>\n</li>\n<li><p>If set to <code>true</code>, express delivery will be validated based on product and asset types.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"express-delivery-restrictions\"><strong>Express Delivery Restrictions:</strong></h4>\n<p>Express delivery is <strong>only</strong> available for items from the warehouse and is <strong>not</strong> applicable to the following categories:</p>\n<ul>\n<li><p>Stools &amp; Seating Balls</p>\n</li>\n<li><p>Desks &amp; Office Furniture</p>\n</li>\n<li><p>Office Chairs</p>\n</li>\n<li><p>Adjustable Desks</p>\n</li>\n<li><p>Non-adjustable Desks</p>\n</li>\n</ul>\n<p>If any ordered items fall under these categories, express delivery cannot be applied.</p>\n","urlObject":{"path":["offices","{{office_id}}","orders"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"c9fdedb9-ad5f-4c90-b34a-7e2d9e97ce61","name":"Successful Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"assets\": [\n        {\n            \"id\": 84166,\n            \"budget_deduction\": 100\n        },\n        {\n            \"id\": 84216,\n            \"budget_deduction\": 12.3\n        }\n    ],\n    \"products\": [\n        {\n            \"id\": 84166,\n            \"quantity\": 1\n        },\n        {\n            \"id\": 84216,\n            \"quantity\": 1\n        }\n    ],\n    \"delivery_with_express\": true\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/public/offices/27643/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 06 Feb 2025 14:32:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 106316,\n        \"number\": \"tYFPPHJ1DMX\",\n        \"date\": \"2025-02-06\",\n        \"total_products\": 2,\n        \"currency\": {\n            \"id\": 1,\n            \"icon\": \"$\",\n            \"name\": \"USD\",\n            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n        },\n        \"status\": \"Processed\",\n        \"request_status\": \"auto_approved\",\n        \"buy_subtotal\": 0,\n        \"rent_subtotal\": 0,\n        \"buy_subtotal_formatted\": \"N/A\",\n        \"rent_subtotal_formatted\": \"N/A\",\n        \"buy_invoice_price\": 2003.3,\n        \"rent_invoice_price\": 0,\n        \"buy_invoice_price_formatted\": \"$ 2,003.30\",\n        \"rent_invoice_price_formatted\": \"$ 0.00\",\n        \"sell_currency_symbol\": \"credits\",\n        \"invoice_currency_symbol\": \"$\",\n        \"buy_sell_price\": 0,\n        \"rent_sell_price\": 0,\n        \"budget_deduction\": 0,\n        \"budget_deduction_formatted\": \"N/A\",\n        \"created_at\": \"2025-02-06T14:32:11.000000Z\",\n        \"updated_at\": \"2025-02-06T14:32:11.000000Z\",\n        \"receiver_id\": 27643,\n        \"receiver_type\": \"office\",\n        \"actor\": {\n            \"id\": 139558,\n            \"name\": \"Omar\",\n            \"last_name\": \"Shehabi\",\n            \"phone_number\": \"11111111111\",\n            \"personal_phone_number\": null,\n            \"invite\": {\n                \"id\": 83079,\n                \"email\": \"omar@goworkwize.com\",\n                \"status\": \"Accepted\",\n                \"department_id\": null,\n                \"invitee_role_id\": 4,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n            },\n            \"employer\": {\n                \"id\": 490,\n                \"company_name\": \"Omar Test\",\n                \"city\": null,\n                \"total_employees\": 11,\n                \"address_line_1\": null,\n                \"warehouse_storage_code\": null,\n                \"postcode\": null,\n                \"catalog_id\": 801,\n                \"currency_id\": 2,\n                \"message\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                \"synced_asset\": 1,\n                \"org_id\": null,\n                \"announcement\": 0,\n                \"settings\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Sort By Suppliers\",\n                        \"slug\": \"sort-by-suppliers\",\n                        \"description\": \"\",\n                        \"order_by\": \"asc\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"name\": \"Perks\",\n                        \"slug\": \"perks\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 3,\n                        \"name\": \"Return Product\",\n                        \"slug\": \"return-product\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 7,\n                        \"name\": \"Cancel Product\",\n                        \"slug\": \"cancel-product\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 8,\n                        \"name\": \"Offboard Employee\",\n                        \"slug\": \"offboard-employee\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 9,\n                        \"name\": \"Generate Token\",\n                        \"slug\": \"generate-token\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"id\": 11,\n                        \"name\": \"Warehouse\",\n                        \"slug\": \"warehouse\",\n                        \"description\": \"Warehouse Features\"\n                    },\n                    {\n                        \"id\": 12,\n                        \"name\": \"Automations\",\n                        \"slug\": \"automations\",\n                        \"description\": \"This will enable automations like auto-off-boarding.\"\n                    },\n                    {\n                        \"id\": 13,\n                        \"name\": \"Decommission\",\n                        \"slug\": \"decommission_feature\",\n                        \"description\": \"Decommission feature for employers\"\n                    }\n                ],\n                \"total_orders\": 13,\n                \"account_type\": \"sales_demo\",\n                \"total_pending_requests\": 2\n            },\n            \"employee\": {\n                \"id\": 137077,\n                \"available_rent_budget\": 10000,\n                \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                \"total_rent_budget\": 10000,\n                \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                \"negative_available_rent_budget\": 10000,\n                \"available_purchase_budget\": 9999,\n                \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                \"total_purchase_budget\": 10000,\n                \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                \"negative_available_purchase_budget\": 9999,\n                \"department_id\": 19448,\n                \"manual_sync\": false,\n                \"department\": {\n                    \"id\": 19448,\n                    \"employer_id\": 490,\n                    \"name\": \"IT\",\n                    \"rent_budget\": 10000,\n                    \"purchase_budget\": 10000,\n                    \"custom\": 0,\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"employees_count\": 3,\n                    \"budget_type\": \"fixed\",\n                    \"budgets\": [\n                        {\n                            \"id\": 8909,\n                            \"name\": null,\n                            \"icon\": null,\n                            \"amount\": 10000,\n                            \"formatted_amount\": \"€ 10000.00\",\n                            \"currency\": \"EUR\",\n                            \"type\": \"purchase\"\n                        },\n                        {\n                            \"id\": 8910,\n                            \"name\": null,\n                            \"icon\": null,\n                            \"amount\": 10000,\n                            \"formatted_amount\": \"€ 10000.00\",\n                            \"currency\": \"EUR\",\n                            \"type\": \"rental\"\n                        }\n                    ],\n                    \"auto_approve_orders\": true,\n                    \"auto_offboarding\": false,\n                    \"user_id\": null\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"Omar Test\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"total_orders\": 13,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"currency\": {\n                    \"id\": 2,\n                    \"icon\": \"€\",\n                    \"name\": \"EUR\",\n                    \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                    \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                },\n                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                \"entity\": null,\n                \"invitation_accepted\": true,\n                \"status\": \"added\",\n                \"balances\": [\n                    {\n                        \"id\": 249332,\n                        \"budget_id\": 8909,\n                        \"bugdet_balance_type\": \"purchase\",\n                        \"available_balance\": 10000,\n                        \"formatted_available_balance\": \"€ 10000.00\"\n                    },\n                    {\n                        \"id\": 249333,\n                        \"budget_id\": 8910,\n                        \"bugdet_balance_type\": \"rental\",\n                        \"available_balance\": 10000,\n                        \"formatted_available_balance\": \"€ 10000.00\"\n                    }\n                ],\n                \"address\": null,\n                \"employment_start_date\": null,\n                \"employment_end_date\": null,\n                \"tax_identification_number\": null\n            },\n            \"email\": \"omar@goworkwize.com\",\n            \"personal_email\": null,\n            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n            \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n            \"role\": {\n                \"id\": 4,\n                \"display_name\": \"Employer Admin\",\n                \"name\": \"employer-admin\"\n            },\n            \"original_role\": {\n                \"id\": 4,\n                \"display_name\": \"Employer Admin\",\n                \"name\": \"employer-admin\"\n            },\n            \"sub\": null,\n            \"read_privacy\": 0,\n            \"hasAsset\": false,\n            \"status\": \"Accepted\",\n            \"display_name\": \"Omar Shehabi\",\n            \"is_deactivated\": false\n        },\n        \"assigned_to\": null,\n        \"actor_id\": 139558,\n        \"subtotal\": 2003.3,\n        \"delivery_with_express\": true,\n        \"shipments\": [\n            {\n                \"id\": 220989,\n                \"order_number\": \"tYFPPHJ1DMX\",\n                \"tracking_number\": null,\n                \"track_and_trace_url\": null,\n                \"custom_tnt_url\": null,\n                \"status\": \"Order Received\",\n                \"tag\": null,\n                \"destination_address\": {\n                    \"id\": 136667,\n                    \"city\": \"Amsterdam\",\n                    \"country\": {\n                        \"id\": 32,\n                        \"name\": \"Netherlands\",\n                        \"code\": \"NL\",\n                        \"requires_tin\": false\n                    },\n                    \"company_name\": null,\n                    \"country_id\": 32,\n                    \"address_line_1\": \"Damstraat 1\",\n                    \"address_line_2\": \"\",\n                    \"region\": \"Noord-Holland\",\n                    \"postcode\": \"1012JS\",\n                    \"postal_code\": \"1012JS\",\n                    \"additional_address_line\": \"\",\n                    \"name\": \"Jan\",\n                    \"first_name\": \"Jan\",\n                    \"last_name\": \"De Vries\",\n                    \"email\": \"jan.devries@example.nl\",\n                    \"phone_number\": \"+31 20-1234567\"\n                },\n                \"description\": null,\n                \"products\": [\n                    {\n                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                        \"quantity\": 1\n                    },\n                    {\n                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                        \"quantity\": 1\n                    }\n                ],\n                \"history\": [],\n                \"created_at\": \"2025-02-06T14:32:11.000000Z\",\n                \"updated_at\": \"2025-02-06T14:32:11.000000Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 295774,\n                        \"product_quantity\": 1,\n                        \"price\": 1,\n                        \"price_formatted\": \"credits1\",\n                        \"subtotal\": 1,\n                        \"subtotal_formatted\": \"$ 1.00\",\n                        \"invoice_subtotal\": \"$ 1,880.11\",\n                        \"supplier\": {\n                            \"id\": 318,\n                            \"name\": \"Dynacons MDM\",\n                            \"hasShipment\": 1,\n                            \"warehouse\": null,\n                            \"created_at\": \"2023-08-28T14:47:04.000000Z\",\n                            \"updated_at\": \"2024-09-05T07:53:39.000000Z\"\n                        },\n                        \"variant\": null,\n                        \"created_at\": \"2025-02-06T14:32:11.000000Z\",\n                        \"updated_at\": \"2025-02-06T14:32:11.000000Z\",\n                        \"returned_at\": null,\n                        \"canceled_at\": null,\n                        \"article_code\": \"MXCT3HN/A\",\n                        \"confirmed_at\": null,\n                        \"sent_to_supplier_at\": null,\n                        \"type\": \"Buy\",\n                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                        \"images\": [\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\"\n                        ],\n                        \"discount\": \"€ 0,00\",\n                        \"assets\": [\n                            {\n                                \"id\": 66507917,\n                                \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                                \"ean\": null,\n                                \"serial_code\": null,\n                                \"external_reference\": null,\n                                \"depreciation_months\": 36,\n                                \"depreciation_months_formatted\": \"N/A\",\n                                \"budget_deduction\": 1,\n                                \"budget_deduction_formatted\": \"credits 1,00\",\n                                \"invoice_price\": 1880.11,\n                                \"invoice_price_formatted\": \"$ 1,880.11\",\n                                \"current_value\": 1880.11,\n                                \"current_value_formatted\": \"$ 1,880.11\",\n                                \"date_ordered\": \"2025-02-06 14:32:11\",\n                                \"date_ordered_formatted\": \"Feb 6, 2025\",\n                                \"type\": \"Buy\",\n                                \"condition\": \"new\",\n                                \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                                \"is_product\": false,\n                                \"min_delivery_days\": 0,\n                                \"max_delivery_days\": 0,\n                                \"delivery_time\": null,\n                                \"currency\": \"XCR\",\n                                \"variant\": null,\n                                \"can_be_offboarded\": true,\n                                \"rent_end_date\": null,\n                                \"pending_offboards_count\": null,\n                                \"confirmed_offboards_count\": null,\n                                \"owner\": {\n                                    \"id\": 490,\n                                    \"company_name\": \"Omar Test\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 801,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"total_orders\": 13,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"owner_id\": 490,\n                                \"category\": {\n                                    \"id\": 86,\n                                    \"name\": \"Laptops\",\n                                    \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                                    \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n                                },\n                                \"category_id\": 86,\n                                \"product\": {\n                                    \"account\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"id\": 84166,\n                                    \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                                    \"images\": [\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\"\n                                    ],\n                                    \"type\": \"Buy\",\n                                    \"is_kickback\": false,\n                                    \"second_hand\": false,\n                                    \"source\": \"supplier\",\n                                    \"price\": \"1.00\",\n                                    \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: IN\",\n                                    \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air</li><li>Color: Silver</li><li>Operating System: macOS Sonoma</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 224 ppi</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 500 nits</li><li>True Tone Technology: Yes</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3</li><li>Number of Cores: 8 CPU, 10 GPU</li><li>Motherboard Chipset: In SoC</li><li>Neural Engine: 16-core</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Unified Memory<br></li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB<br></li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core GPU</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Other Connections: Two Thunderbolt / USB 4 ports, MagSafe 3 charging port, 3.5 mm headphone jack</li><li>Wireless Connectivity: IEEE 802.11ax (Wi-Fi 6), Bluetooth v5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6 watt-hour lithium-polymer battery</li><li>Power Adapter: 35W Dual USB-C Port Power Adapter</li><li>AC Adapter Connection: MagSafe 3</li><li>Battery Run Time: Up to 18 hours Apple TV app movie playback, Up to 15 hours wireless web</li><li>Fast Charge: Capable with 67W USB-C Power Adapter</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwerty</li><li>Language: English (US)</li><li>Keyboard Features: Backlit Magic Keyboard with Touch ID</li><li>Security and Privacy: Touch ID</li><li>In The Box: 35W Dual USB-C Port Power Adapter, USB-C to MagSafe 3 Cable (2 m)</li></ul>\",\n                                    \"catalog_id\": 801,\n                                    \"article_code\": \"MXCT3HN/A\",\n                                    \"ean\": \"4064575809747\",\n                                    \"category_id\": 86,\n                                    \"supplier\": {\n                                        \"id\": 318,\n                                        \"name\": \"Dynacons MDM\",\n                                        \"hasShipment\": 1,\n                                        \"warehouse\": null,\n                                        \"created_at\": \"2023-08-28T14:47:04.000000Z\",\n                                        \"updated_at\": \"2024-09-05T07:53:39.000000Z\"\n                                    },\n                                    \"order\": null,\n                                    \"available_stock\": null,\n                                    \"created_at\": \"2025-01-28T14:19:44.000000Z\",\n                                    \"updated_at\": \"2025-01-28T14:44:19.000000Z\",\n                                    \"min_delivery_days\": 7,\n                                    \"max_delivery_days\": 14,\n                                    \"delivery_time\": \"1 - 2 Weeks\",\n                                    \"attribute\": null,\n                                    \"prices\": {\n                                        \"id\": 94289,\n                                        \"invoice_price\": \"1880.11\",\n                                        \"invoice_currency\": \"usd\",\n                                        \"invoice_payment_period\": \"one-time\",\n                                        \"invoice_payment_end_date\": null,\n                                        \"cost_price\": \"1709.19\",\n                                        \"cost_currency\": \"usd\",\n                                        \"cost_payment_period\": \"one-time\",\n                                        \"cost_payment_end_date\": null,\n                                        \"cost_vat_level\": null,\n                                        \"sell_price\": \"1.00\",\n                                        \"sell_currency\": \"xcr\",\n                                        \"sell_payment_period\": \"one-time\",\n                                        \"sell_payment_end_date\": null,\n                                        \"sell_vat_level\": null\n                                    },\n                                    \"variant_display\": \"attributes\",\n                                    \"can_be_offboarded\": true,\n                                    \"parent\": {\n                                        \"account\": {\n                                            \"id\": 2,\n                                            \"icon\": \"€\",\n                                            \"name\": \"EUR\",\n                                            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                        },\n                                        \"id\": 69793,\n                                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                                        \"images\": [\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\"\n                                        ],\n                                        \"type\": \"Buy\",\n                                        \"is_kickback\": false,\n                                        \"second_hand\": false,\n                                        \"source\": \"supplier\",\n                                        \"price\": \"1880.11\",\n                                        \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: IN\",\n                                        \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air</li><li>Color: Silver</li><li>Operating System: macOS Sonoma</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 224 ppi</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 500 nits</li><li>True Tone Technology: Yes</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3</li><li>Number of Cores: 8 CPU, 10 GPU</li><li>Motherboard Chipset: In SoC</li><li>Neural Engine: 16-core</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Unified Memory<br></li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB<br></li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core GPU</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Other Connections: Two Thunderbolt / USB 4 ports, MagSafe 3 charging port, 3.5 mm headphone jack</li><li>Wireless Connectivity: IEEE 802.11ax (Wi-Fi 6), Bluetooth v5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6 watt-hour lithium-polymer battery</li><li>Power Adapter: 35W Dual USB-C Port Power Adapter</li><li>AC Adapter Connection: MagSafe 3</li><li>Battery Run Time: Up to 18 hours Apple TV app movie playback, Up to 15 hours wireless web</li><li>Fast Charge: Capable with 67W USB-C Power Adapter</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwerty</li><li>Language: English (US)</li><li>Keyboard Features: Backlit Magic Keyboard with Touch ID</li><li>Security and Privacy: Touch ID</li><li>In The Box: 35W Dual USB-C Port Power Adapter, USB-C to MagSafe 3 Cable (2 m)</li></ul>\",\n                                        \"catalog_id\": null,\n                                        \"article_code\": \"MXCT3HN/A\",\n                                        \"ean\": \"4064575809747\",\n                                        \"category_id\": 86,\n                                        \"supplier\": {\n                                            \"id\": 318,\n                                            \"name\": \"Dynacons MDM\",\n                                            \"hasShipment\": 1,\n                                            \"warehouse\": null,\n                                            \"created_at\": \"2023-08-28T14:47:04.000000Z\",\n                                            \"updated_at\": \"2024-09-05T07:53:39.000000Z\"\n                                        },\n                                        \"order\": null,\n                                        \"available_stock\": null,\n                                        \"created_at\": \"2024-08-21T10:10:22.000000Z\",\n                                        \"updated_at\": \"2024-08-21T10:11:17.000000Z\",\n                                        \"min_delivery_days\": 7,\n                                        \"max_delivery_days\": 14,\n                                        \"delivery_time\": \"1 - 2 Weeks\",\n                                        \"attribute\": null,\n                                        \"prices\": {\n                                            \"id\": 79899,\n                                            \"invoice_price\": \"1880.11\",\n                                            \"invoice_currency\": \"usd\",\n                                            \"invoice_payment_period\": \"one-time\",\n                                            \"invoice_payment_end_date\": null,\n                                            \"cost_price\": \"1709.19\",\n                                            \"cost_currency\": \"usd\",\n                                            \"cost_payment_period\": \"one-time\",\n                                            \"cost_payment_end_date\": null,\n                                            \"cost_vat_level\": null,\n                                            \"sell_price\": \"1880.11\",\n                                            \"sell_currency\": \"usd\",\n                                            \"sell_payment_period\": \"one-time\",\n                                            \"sell_payment_end_date\": null,\n                                            \"sell_vat_level\": null\n                                        },\n                                        \"variant_display\": null,\n                                        \"can_be_offboarded\": true,\n                                        \"parent\": null,\n                                        \"parent_id\": null,\n                                        \"product_images\": [\n                                            {\n                                                \"id\": 12829,\n                                                \"name\": \"1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\",\n                                                \"path\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\",\n                                                \"product_id\": 69793\n                                            },\n                                            {\n                                                \"id\": 12830,\n                                                \"name\": \"1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                                                \"path\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                                                \"product_id\": 69793\n                                            },\n                                            {\n                                                \"id\": 12831,\n                                                \"name\": \"1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                                                \"path\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                                                \"product_id\": 69793\n                                            },\n                                            {\n                                                \"id\": 12832,\n                                                \"name\": \"1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                                                \"path\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                                                \"product_id\": 69793\n                                            },\n                                            {\n                                                \"id\": 12833,\n                                                \"name\": \"1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                                                \"path\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                                                \"product_id\": 69793\n                                            }\n                                        ],\n                                        \"variant_product_id\": null,\n                                        \"rental_period_in_months\": null,\n                                        \"limit\": null\n                                    },\n                                    \"parent_id\": 69793,\n                                    \"product_images\": [],\n                                    \"variant_product_id\": null,\n                                    \"rental_period_in_months\": null,\n                                    \"limit\": null\n                                },\n                                \"product_id\": 84166,\n                                \"location_type\": \"office\",\n                                \"note\": null,\n                                \"tags\": [],\n                                \"offboard_asset_condition\": null,\n                                \"offboard_asset_notes\": null,\n                                \"warehouse_status\": \"unknown\",\n                                \"warehouse_held_code\": null,\n                                \"quarantined_reason\": null,\n                                \"stock\": null,\n                                \"office\": {\n                                    \"id\": 27643,\n                                    \"name\": \"Amsterdam Office\",\n                                    \"employer_id\": 490,\n                                    \"manager_id\": 139558,\n                                    \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n                                    \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n                                    \"address\": {\n                                        \"id\": 136667,\n                                        \"city\": \"Amsterdam\",\n                                        \"country\": {\n                                            \"id\": 32,\n                                            \"name\": \"Netherlands\",\n                                            \"code\": \"NL\",\n                                            \"requires_tin\": false\n                                        },\n                                        \"company_name\": null,\n                                        \"country_id\": 32,\n                                        \"address_line_1\": \"Damstraat 1\",\n                                        \"address_line_2\": \"\",\n                                        \"region\": \"Noord-Holland\",\n                                        \"postcode\": \"1012JS\",\n                                        \"postal_code\": \"1012JS\",\n                                        \"additional_address_line\": \"\",\n                                        \"name\": \"Jan\",\n                                        \"first_name\": \"Jan\",\n                                        \"last_name\": \"De Vries\",\n                                        \"email\": \"jan.devries@example.nl\",\n                                        \"phone_number\": \"+31 20-1234567\"\n                                    }\n                                }\n                            }\n                        ],\n                        \"status\": \"order_placed\"\n                    }\n                ],\n                \"estimatedDelivery\": null,\n                \"min_eta_from_supplier\": \"Feb 13, 2025\",\n                \"max_eta_from_supplier\": \"Feb 20, 2025\",\n                \"shipment_pickup_time\": null,\n                \"expected_delivery_time_range\": \"1 - 2 Weeks\",\n                \"deliveryDate\": null\n            },\n            {\n                \"id\": 220990,\n                \"order_number\": \"tYFPPHJ1DMX\",\n                \"tracking_number\": null,\n                \"track_and_trace_url\": null,\n                \"custom_tnt_url\": null,\n                \"status\": \"Order Received\",\n                \"tag\": null,\n                \"destination_address\": {\n                    \"id\": 136667,\n                    \"city\": \"Amsterdam\",\n                    \"country\": {\n                        \"id\": 32,\n                        \"name\": \"Netherlands\",\n                        \"code\": \"NL\",\n                        \"requires_tin\": false\n                    },\n                    \"company_name\": null,\n                    \"country_id\": 32,\n                    \"address_line_1\": \"Damstraat 1\",\n                    \"address_line_2\": \"\",\n                    \"region\": \"Noord-Holland\",\n                    \"postcode\": \"1012JS\",\n                    \"postal_code\": \"1012JS\",\n                    \"additional_address_line\": \"\",\n                    \"name\": \"Jan\",\n                    \"first_name\": \"Jan\",\n                    \"last_name\": \"De Vries\",\n                    \"email\": \"jan.devries@example.nl\",\n                    \"phone_number\": \"+31 20-1234567\"\n                },\n                \"description\": null,\n                \"products\": [\n                    {\n                        \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                        \"quantity\": 1\n                    },\n                    {\n                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                        \"quantity\": 1\n                    }\n                ],\n                \"history\": [],\n                \"created_at\": \"2025-02-06T14:32:11.000000Z\",\n                \"updated_at\": \"2025-02-06T14:32:11.000000Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 295775,\n                        \"product_quantity\": 1,\n                        \"price\": 1,\n                        \"price_formatted\": \"credits1\",\n                        \"subtotal\": 1,\n                        \"subtotal_formatted\": \"$ 1.00\",\n                        \"invoice_subtotal\": \"$ 123.19\",\n                        \"supplier\": {\n                            \"id\": 260,\n                            \"name\": \"CDW US MDM\",\n                            \"hasShipment\": 1,\n                            \"warehouse\": null,\n                            \"created_at\": \"2023-04-12T10:06:24.000000Z\",\n                            \"updated_at\": \"2025-01-13T13:01:29.000000Z\"\n                        },\n                        \"variant\": null,\n                        \"created_at\": \"2025-02-06T14:32:12.000000Z\",\n                        \"updated_at\": \"2025-02-06T14:32:12.000000Z\",\n                        \"returned_at\": null,\n                        \"canceled_at\": null,\n                        \"article_code\": \"4117607\",\n                        \"confirmed_at\": null,\n                        \"sent_to_supplier_at\": null,\n                        \"type\": \"Buy\",\n                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                        \"images\": [\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-1-sq.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-2-sq.jpg\",\n                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-3-sq.jpg\"\n                        ],\n                        \"discount\": \"€ 0,00\",\n                        \"assets\": [\n                            {\n                                \"id\": 66507918,\n                                \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                                \"ean\": null,\n                                \"serial_code\": null,\n                                \"external_reference\": null,\n                                \"depreciation_months\": 36,\n                                \"depreciation_months_formatted\": \"N/A\",\n                                \"budget_deduction\": 1,\n                                \"budget_deduction_formatted\": \"credits 1,00\",\n                                \"invoice_price\": 123.19,\n                                \"invoice_price_formatted\": \"$ 123.19\",\n                                \"current_value\": 123.19,\n                                \"current_value_formatted\": \"$ 123.19\",\n                                \"date_ordered\": \"2025-02-06 14:32:12\",\n                                \"date_ordered_formatted\": \"Feb 6, 2025\",\n                                \"type\": \"Buy\",\n                                \"condition\": \"new\",\n                                \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-1-sq.jpg\",\n                                \"is_product\": false,\n                                \"min_delivery_days\": 0,\n                                \"max_delivery_days\": 0,\n                                \"delivery_time\": null,\n                                \"currency\": \"XCR\",\n                                \"variant\": null,\n                                \"can_be_offboarded\": true,\n                                \"rent_end_date\": null,\n                                \"pending_offboards_count\": null,\n                                \"confirmed_offboards_count\": null,\n                                \"owner\": {\n                                    \"id\": 490,\n                                    \"company_name\": \"Omar Test\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 801,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"total_orders\": 13,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"owner_id\": 490,\n                                \"category\": {\n                                    \"id\": 225,\n                                    \"name\": \"Webcams\",\n                                    \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                                    \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n                                },\n                                \"category_id\": 225,\n                                \"product\": {\n                                    \"account\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"id\": 84216,\n                                    \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                                    \"images\": [\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-1-sq.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-2-sq.jpg\",\n                                        \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-3-sq.jpg\"\n                                    ],\n                                    \"type\": \"Buy\",\n                                    \"is_kickback\": false,\n                                    \"second_hand\": false,\n                                    \"source\": \"supplier\",\n                                    \"price\": \"1.00\",\n                                    \"short_description\": \"Logitech, Webcams, Available in: US, PR\",\n                                    \"description\": \"<p>Logitech Webcam C925e - webcam</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Device type: Webcam<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Audio Yes: Built-in dual stereo microphones<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Dimensions (WxDxH) 12.6 cm x 4.5 cm x 7.3 cm<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection Technology With cable<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. resolution 1920 x 1080<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Focus setting Automatic<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Interfaces USB 2.0<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables included 1 - USB cable - 1.83 m<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Skype compatible<br></p>\",\n                                    \"catalog_id\": 801,\n                                    \"article_code\": \"4117607\",\n                                    \"ean\": \"5099206064027\",\n                                    \"category_id\": 225,\n                                    \"supplier\": {\n                                        \"id\": 260,\n                                        \"name\": \"CDW US MDM\",\n                                        \"hasShipment\": 1,\n                                        \"warehouse\": null,\n                                        \"created_at\": \"2023-04-12T10:06:24.000000Z\",\n                                        \"updated_at\": \"2025-01-13T13:01:29.000000Z\"\n                                    },\n                                    \"order\": null,\n                                    \"available_stock\": 2292,\n                                    \"created_at\": \"2025-01-28T14:35:21.000000Z\",\n                                    \"updated_at\": \"2025-01-28T14:54:52.000000Z\",\n                                    \"min_delivery_days\": 7,\n                                    \"max_delivery_days\": 14,\n                                    \"delivery_time\": \"1 - 2 Weeks\",\n                                    \"attribute\": null,\n                                    \"prices\": {\n                                        \"id\": 94339,\n                                        \"invoice_price\": \"123.19\",\n                                        \"invoice_currency\": \"usd\",\n                                        \"invoice_payment_period\": \"one-time\",\n                                        \"invoice_payment_end_date\": null,\n                                        \"cost_price\": \"111.99\",\n                                        \"cost_currency\": \"usd\",\n                                        \"cost_payment_period\": \"one-time\",\n                                        \"cost_payment_end_date\": null,\n                                        \"cost_vat_level\": null,\n                                        \"sell_price\": \"1.00\",\n                                        \"sell_currency\": \"xcr\",\n                                        \"sell_payment_period\": \"one-time\",\n                                        \"sell_payment_end_date\": null,\n                                        \"sell_vat_level\": null\n                                    },\n                                    \"variant_display\": \"attributes\",\n                                    \"can_be_offboarded\": true,\n                                    \"parent\": {\n                                        \"account\": {\n                                            \"id\": 2,\n                                            \"icon\": \"€\",\n                                            \"name\": \"EUR\",\n                                            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                        },\n                                        \"id\": 58084,\n                                        \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                                        \"images\": [\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-1-sq.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-2-sq.jpg\",\n                                            \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-3-sq.jpg\"\n                                        ],\n                                        \"type\": \"Buy\",\n                                        \"is_kickback\": false,\n                                        \"second_hand\": false,\n                                        \"source\": \"supplier\",\n                                        \"price\": \"109.99\",\n                                        \"short_description\": \"Logitech, Webcams, Available in: US, PR\",\n                                        \"description\": \"<p>Logitech Webcam C925e - webcam</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Device type: Webcam<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Audio Yes: Built-in dual stereo microphones<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Dimensions (WxDxH) 12.6 cm x 4.5 cm x 7.3 cm<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection Technology With cable<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. resolution 1920 x 1080<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Focus setting Automatic<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Interfaces USB 2.0<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables included 1 - USB cable - 1.83 m<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Skype compatible<br></p>\",\n                                        \"catalog_id\": null,\n                                        \"article_code\": \"4117607\",\n                                        \"ean\": \"5099206064027\",\n                                        \"category_id\": 225,\n                                        \"supplier\": {\n                                            \"id\": 260,\n                                            \"name\": \"CDW US MDM\",\n                                            \"hasShipment\": 1,\n                                            \"warehouse\": null,\n                                            \"created_at\": \"2023-04-12T10:06:24.000000Z\",\n                                            \"updated_at\": \"2025-01-13T13:01:29.000000Z\"\n                                        },\n                                        \"order\": null,\n                                        \"available_stock\": 2292,\n                                        \"created_at\": \"2024-02-26T15:55:08.000000Z\",\n                                        \"updated_at\": \"2025-02-06T14:32:12.000000Z\",\n                                        \"min_delivery_days\": 7,\n                                        \"max_delivery_days\": 14,\n                                        \"delivery_time\": \"1 - 2 Weeks\",\n                                        \"attribute\": null,\n                                        \"prices\": {\n                                            \"id\": 67398,\n                                            \"invoice_price\": \"123.19\",\n                                            \"invoice_currency\": \"usd\",\n                                            \"invoice_payment_period\": \"one-time\",\n                                            \"invoice_payment_end_date\": null,\n                                            \"cost_price\": \"111.99\",\n                                            \"cost_currency\": \"usd\",\n                                            \"cost_payment_period\": \"one-time\",\n                                            \"cost_payment_end_date\": null,\n                                            \"cost_vat_level\": null,\n                                            \"sell_price\": \"109.99\",\n                                            \"sell_currency\": \"usd\",\n                                            \"sell_payment_period\": \"one-time\",\n                                            \"sell_payment_end_date\": null,\n                                            \"sell_vat_level\": null\n                                        },\n                                        \"variant_display\": null,\n                                        \"can_be_offboarded\": true,\n                                        \"parent\": null,\n                                        \"parent_id\": null,\n                                        \"product_images\": [],\n                                        \"variant_product_id\": null,\n                                        \"rental_period_in_months\": null,\n                                        \"limit\": null\n                                    },\n                                    \"parent_id\": 58084,\n                                    \"product_images\": [],\n                                    \"variant_product_id\": null,\n                                    \"rental_period_in_months\": null,\n                                    \"limit\": null\n                                },\n                                \"product_id\": 84216,\n                                \"location_type\": \"office\",\n                                \"note\": null,\n                                \"tags\": [],\n                                \"offboard_asset_condition\": null,\n                                \"offboard_asset_notes\": null,\n                                \"warehouse_status\": \"unknown\",\n                                \"warehouse_held_code\": null,\n                                \"quarantined_reason\": null,\n                                \"stock\": null,\n                                \"office\": {\n                                    \"id\": 27643,\n                                    \"name\": \"Amsterdam Office\",\n                                    \"employer_id\": 490,\n                                    \"manager_id\": 139558,\n                                    \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n                                    \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n                                    \"address\": {\n                                        \"id\": 136667,\n                                        \"city\": \"Amsterdam\",\n                                        \"country\": {\n                                            \"id\": 32,\n                                            \"name\": \"Netherlands\",\n                                            \"code\": \"NL\",\n                                            \"requires_tin\": false\n                                        },\n                                        \"company_name\": null,\n                                        \"country_id\": 32,\n                                        \"address_line_1\": \"Damstraat 1\",\n                                        \"address_line_2\": \"\",\n                                        \"region\": \"Noord-Holland\",\n                                        \"postcode\": \"1012JS\",\n                                        \"postal_code\": \"1012JS\",\n                                        \"additional_address_line\": \"\",\n                                        \"name\": \"Jan\",\n                                        \"first_name\": \"Jan\",\n                                        \"last_name\": \"De Vries\",\n                                        \"email\": \"jan.devries@example.nl\",\n                                        \"phone_number\": \"+31 20-1234567\"\n                                    }\n                                }\n                            }\n                        ],\n                        \"status\": \"order_placed\"\n                    }\n                ],\n                \"estimatedDelivery\": null,\n                \"min_eta_from_supplier\": \"Feb 13, 2025\",\n                \"max_eta_from_supplier\": \"Feb 20, 2025\",\n                \"shipment_pickup_time\": null,\n                \"expected_delivery_time_range\": \"1 - 2 Weeks\",\n                \"deliveryDate\": null\n            }\n        ],\n        \"warehouse\": null\n    }\n}"}],"_postman_id":"a7d55030-b5a1-4234-826a-ecdd5835bbee"}],"id":"7dac6def-a14f-4fb7-83aa-e4bd1f3d0a31","description":"<p>Comprehensive order management system including order listing with filtering, order details, product information, and shipment tracking. Supports creating orders for employees, warehouses, and offices.</p>\n","_postman_id":"7dac6def-a14f-4fb7-83aa-e4bd1f3d0a31","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Products","item":[{"name":"Get Order Products","id":"10924ef6-6254-400f-ae02-4c605bf441d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/orders/{{order_number}}/products","description":"<p>Get all the products for a specific order.</p>\n","urlObject":{"path":["orders","{{order_number}}","products"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"2c5b41be-9a7b-4151-bb01-fec8371af278","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":"/orders/{{order_number}}/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 10:47:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 106316,\n        \"number\": \"tYFPPHJ1DMX\",\n        \"total_products\": null,\n        \"currency\": {\n            \"id\": 2,\n            \"icon\": \"€\",\n            \"name\": \"EUR\",\n            \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n            \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n        },\n        \"actor\": {\n            \"id\": 139558,\n            \"given_name\": \"John\",\n            \"family_name\": \"Doe\",\n            \"full_name\": \"John Doe\",\n            \"email\": \"john@goworkwize.com\",\n            \"phone_number\": \"11111111111\",\n            \"personal_email\": null,\n            \"personal_phone_number\": null,\n            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n            \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n            \"address\": null\n        },\n        \"receiver\": \"\",\n        \"receiver_type\": \"office\",\n        \"express_delivery\": null,\n        \"shipping_info\": {\n            \"id\": 136667,\n            \"city\": \"Amsterdam\",\n            \"country\": {\n                \"id\": 32,\n                \"name\": \"Netherlands\",\n                \"code\": \"NL\",\n                \"requires_tin\": false\n            },\n            \"company_name\": null,\n            \"country_id\": 32,\n            \"address_line_1\": \"Damstraat 1\",\n            \"address_line_2\": \"\",\n            \"region\": \"Noord-Holland\",\n            \"postcode\": \"1012JS\",\n            \"postal_code\": \"1012JS\",\n            \"additional_address_line\": \"\",\n            \"name\": \"Jan\",\n            \"first_name\": \"Jan\",\n            \"last_name\": \"De Vries\",\n            \"email\": \"jan.devries@example.nl\",\n            \"phone_number\": \"+31 20-1234567\"\n        },\n        \"status\": \"Processed\",\n        \"products\": [\n            {\n                \"id\": 295774,\n                \"order_id\": 106316,\n                \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n                \"type\": \"Buy\",\n                \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: IN\",\n                \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air</li><li>Color: Silver</li><li>Operating System: macOS Sonoma</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 224 ppi</li><li>Backlight: Liquid Retina Display</li><li>Screen Coating: Glossy</li><li>Touchscreen: No</li><li>Brightness: 500 nits</li><li>True Tone Technology: Yes</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3</li><li>Number of Cores: 8 CPU, 10 GPU</li><li>Motherboard Chipset: In SoC</li><li>Neural Engine: 16-core</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Unified Memory<br></li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB<br></li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core GPU</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Other Connections: Two Thunderbolt / USB 4 ports, MagSafe 3 charging port, 3.5 mm headphone jack</li><li>Wireless Connectivity: IEEE 802.11ax (Wi-Fi 6), Bluetooth v5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6 watt-hour lithium-polymer battery</li><li>Power Adapter: 35W Dual USB-C Port Power Adapter</li><li>AC Adapter Connection: MagSafe 3</li><li>Battery Run Time: Up to 18 hours Apple TV app movie playback, Up to 15 hours wireless web</li><li>Fast Charge: Capable with 67W USB-C Power Adapter</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwerty</li><li>Language: English (US)</li><li>Keyboard Features: Backlit Magic Keyboard with Touch ID</li><li>Security and Privacy: Touch ID</li><li>In The Box: 35W Dual USB-C Port Power Adapter, USB-C to MagSafe 3 Cable (2 m)</li></ul>\",\n                \"min_delivery_days\": 7,\n                \"max_delivery_days\": 14,\n                \"attribute\": null,\n                \"article_code\": \"MXCT3HN/A\",\n                \"product_quantity\": 1,\n                \"images\": [\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-3JUaBSonT8j5U731RUel72f43c54-2807-4423-a851-f7783db9e9ec.jpg\",\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-66PfCvUUIc0zU666DkjO0586b3b4-3e37-49c2-aee1-fa1a7876b096.jpg\",\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ZVnMs1mp4EvP74im2v8dbab086c2-ea6e-441a-bfc2-b38b9d269d9e.jpg\",\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-ozTtgGIihhTXix20uWdWb33127e6-1051-4c59-a48d-742445def359.jpg\",\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1724235022-68FZ1J96OJEph3jjYqyz789384eb-a497-4ebd-bfc4-878f2a8648f9.jpg\"\n                ],\n                \"price\": true,\n                \"invoice_price\": 188011,\n                \"invoice_currency\": \"XCR\",\n                \"subtotal\": \"1.00\",\n                \"currency\": true,\n                \"supplier\": {\n                    \"id\": 318,\n                    \"name\": \"Dynacons MDM\",\n                    \"hasShipment\": 1,\n                    \"warehouse\": null,\n                    \"created_at\": \"2023-08-28T14:47:04.000000Z\",\n                    \"updated_at\": \"2024-09-05T07:53:39.000000Z\"\n                },\n                \"canceled_at\": null,\n                \"returned_at\": null,\n                \"created_at\": \"2025-02-06T14:32:11.000000Z\",\n                \"updated_at\": \"2025-02-06T14:32:11.000000Z\",\n                \"confirmed_at\": null,\n                \"sent_to_supplier_at\": null,\n                \"status\": \"order_placed\"\n            },\n            {\n                \"id\": 295775,\n                \"order_id\": 106316,\n                \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n                \"type\": \"Buy\",\n                \"short_description\": \"Logitech, Webcams, Available in: US, PR\",\n                \"description\": \"<p>Logitech Webcam C925e - webcam</p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Device type: Webcam<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Audio Yes: Built-in dual stereo microphones<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Dimensions (WxDxH) 12.6 cm x 4.5 cm x 7.3 cm<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Connection Technology With cable<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Max. resolution 1920 x 1080<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Focus setting Automatic<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Interfaces USB 2.0<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Cables included 1 - USB cable - 1.83 m<br></p><p>•&nbsp;&nbsp;&nbsp;&nbsp;Features Skype compatible<br></p>\",\n                \"min_delivery_days\": 7,\n                \"max_delivery_days\": 14,\n                \"attribute\": null,\n                \"article_code\": \"4117607\",\n                \"product_quantity\": 1,\n                \"images\": [\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-1-sq.jpg\",\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-2-sq.jpg\",\n                    \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/new_cat/Webcam-C925e-3-sq.jpg\"\n                ],\n                \"price\": true,\n                \"invoice_price\": 12319,\n                \"invoice_currency\": \"XCR\",\n                \"subtotal\": \"1.00\",\n                \"currency\": true,\n                \"supplier\": {\n                    \"id\": 260,\n                    \"name\": \"CDW US MDM\",\n                    \"hasShipment\": 1,\n                    \"warehouse\": null,\n                    \"created_at\": \"2023-04-12T10:06:24.000000Z\",\n                    \"updated_at\": \"2025-01-13T13:01:29.000000Z\"\n                },\n                \"canceled_at\": null,\n                \"returned_at\": null,\n                \"created_at\": \"2025-02-06T14:32:12.000000Z\",\n                \"updated_at\": \"2025-02-06T14:32:12.000000Z\",\n                \"confirmed_at\": null,\n                \"sent_to_supplier_at\": null,\n                \"status\": \"order_placed\"\n            }\n        ],\n        \"buy_subtotal\": 2,\n        \"rent_subtotal\": 0,\n        \"created_at\": \"2025-02-06T14:32:11.000000Z\",\n        \"updated_at\": \"2025-02-06T14:32:11.000000Z\"\n    }\n}"}],"_postman_id":"10924ef6-6254-400f-ae02-4c605bf441d5"},{"name":"Get A List Of All Products","id":"a2cd633d-c6a5-4f89-8cdc-f59b60ca41c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/products","description":"<p>Get a list of all product available for the authenticated user</p>\n","urlObject":{"path":["products"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>Allow other objects such as countries and departments to be included in the response</p>\n","type":"text/plain"},"key":"include","value":"countries,departments"},{"disabled":true,"description":{"content":"<p>Filter products by availibiliy in country using ISO2 or country id</p>\n","type":"text/plain"},"key":"filter[country_availability]","value":"US,NL"}],"variable":[]}},"response":[{"id":"4ca62314-060c-45c8-8f40-496bee72f2cf","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/products?include=countries,departments&filter[country_availability]=US,NL","path":["products"],"query":[{"key":"include","value":"countries,departments","description":"Allow other objects such as countries and departments to be included in the response"},{"key":"filter[country_availability]","value":"US,NL","description":"Filter products by availibiliy in country using ISO2 or country id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 11:00:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 84148,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Midnight, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-k3vkC0VrBDEjRC2CsMkVimage_1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-M9b0pLu0Tt1ItzUmuZQPimage_6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-iH75rEFf2bzvRQCeYZcfimage_5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-0bF7sC8o5in0bbYkbkzAimage_4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-bER6rns5Hr9MVA0ULcakimage_3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291305-43gbZvXHYh07ntEcUXqEimage_2-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13.6\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13\\\" M3 8-core, 16GB RAM, 512GB SSD, Qwerty</li><li>Operating System: macOS 14 (Sonoma)</li><li>Factory Warranty: 1 year carry-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video off: Thunderbolt 4</li><li>Video out (via Thunderbolt): USB type-c to DP 1.4/HDMI 2.0</li><li>Other Connections: Thunderbolt 4</li><li>Wireless Connectivity: 802.11a, 802.11b, 802.11g, Wi-Fi 4 (802.11n), Wi-Fi 5 (802.11ac), Wi-Fi 6 (802.11ax), Wi-Fi 6E (802.11ax), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power AC Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwerty US</li><li>Keyboard Features: Backlit keyboard</li><li>Security and Privacy: Fingerprint scanner</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCV3N/A-CTO\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:39.000000Z\",\n            \"updated_at\": \"2025-01-28T14:40:52.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"0195949637117\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84150,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Midnight, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-VhIl94OmmbUUpAP44z24image_1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-qHkiO0XWdXVE7clg38Lcimage_9-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-PlOa6AAeVS9VqFAnYubAimage_8-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-hqxU0pe1wUuBWltQSGaQimage_7-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-s9phkifTX12GbnKdYtOqimage_6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-smYt5qWY6nxQJog8dEC9image_5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-oH9wfhO2K2OJbfSidBBximage_3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-jcLIW4SzTkcSb9qfHXc5image_4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712289188-IAAvHCdpz61MmP0Jew5uimage_2-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: US, PR\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since Early 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13.6\\\"\\\" M3, 10-Core GPU, 16GB RAM, 512GB SSD, 8 Core CPU, QWERTY, Midnight</li><li>Color: Midnight</li><li>Operating System: macOS Sonoma 14.0</li><li>Touchbar: No</li><li>Serie: MacBook Air 2024</li><li>Warranty: 1 year limited<br></li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560 x 1664</li><li>Pixel Density: 224ppi</li><li>Backlight: LED</li><li>Screen Coating: Matte/Anti-Glare</li><li>Touchscreen: No</li><li>Brightness: 500cd/m²</li><li>Aspect Ratio: 1.54:1</li><li>Color Display Details: 1 billion colors</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3</li><li>Number of Cores: 8</li><li>Processor Main Features: 16-core Neural Engine</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Unified memory</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li><li>SSD Form Factor: Soldered</li></ul><p><strong>Graphics</strong></p><ul><li>Graphics Controller Model: Apple M3 10-core</li><li>Graphics Processor Series: Apple M3</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Interfaces: 2 x USB4/Thunderbolt 3/DisplayPort (charging), Headphone output</li><li>Wireless Connectivity: 802.11a/b/g/n/ac/ax (Wi-Fi 6E), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Battery Chemistry: Lithium polymer</li><li>Power Provided: 35W</li><li>Required Voltage: AC 100-240V</li><li>Battery Run Time (Up To): 18 Hours</li><li>Included Accessories: USB-C dual port compact power adapter, USB-C to MagSafe 3 charge cable (2m)</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwerty</li><li>Language: US English</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Scanner</li><li>Input Device Type: Force Touch trackpad, Keyboard</li><li>Dimensions (L x W x H): 12 x 8.5 x 0.4 inches</li><li>Weight: 2.73 lbs</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"7833160\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:40.000000Z\",\n            \"updated_at\": \"2025-01-28T14:41:07.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"0195949637094\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 46,\n                    \"name\": \"United States\",\n                    \"code\": \"US\"\n                },\n                {\n                    \"id\": 389,\n                    \"name\": \"Puerto Rico\",\n                    \"code\": \"PR\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84152,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Grey, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-BeOeUW3252U8xHLB0vXcimage1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-UceG8L0A1SUcm3qOu2wFimage2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-wOdvfG8hpesS7gal2ehCimage5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-AGIoYgdKpRssaLS4K5Epimage4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-Vk2Gqcc0vLqj1pGmR89Cimage6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-cz5qfZ9mM1U4gwHfy7yLimage3-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: US, PR\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air M3 2024, 13.6 inch, 16 GB RAM, 512 GB Storage, QWERTY, Space gray</li><li>Color: Space gray</li><li>Operating System: macOS Sonoma 14.0</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560 x 1664</li><li>Pixel Density: 224ppi</li><li>Backlight: LED</li><li>Screen Coating: Arsenic-free glass</li><li>Touchscreen: No</li><li>Brightness: 500 candela per square metre</li><li>Aspect Ratio: Not provided</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Unified memory</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: SSD</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Interfaces: 2 x USB4/Thunderbolt 3/DisplayPort (charging), Headphone output</li><li>USB Type-C Ports: 2</li><li>Wireless Connectivity: Bluetooth 5.3, IEEE 802.11a/b/g/n/ac/ax (Wi-Fi 6E)</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6 watt hour(s)</li><li>Power Provided: 35 watt</li><li>Required Voltage: AC 100 - 240 volt</li><li>Battery Run Time (Up To): 18 Hours</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY</li><li>Keyboard Features: Keyboard Backlight</li><li>Security and Privacy: Fingerprint Reader</li><li>Dimensions (L x W x H): 12\\\" x 8.5\\\" x 0.4\\\"</li><li>Weight: 2.73 lbs</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"7833181\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:40.000000Z\",\n            \"updated_at\": \"2025-01-28T14:41:19.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"4064575799550\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 46,\n                    \"name\": \"United States\",\n                    \"code\": \"US\"\n                },\n                {\n                    \"id\": 389,\n                    \"name\": \"Puerto Rico\",\n                    \"code\": \"PR\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84153,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 15\\\", 16GB RAM, 512GB SSD, QWERTY - US, Space Gray, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-GuAPmuACkQnLVS2nzm9Kimage_1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-YyS9gUAUp5rdvUULUCQ3image_2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-7LhGjijebJASMEKuvj0Bimage_3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-3ARwERdQtNVFzA99PjZrimage_11-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-KWt7t7If2G9szbvfSvgrimage_7-sq%20-%20Copy.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-CKTSx2ttX8CnS1lax1Guimage_4-sq%20-%20Copy.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712576228-wAxsOaf3SExDD4A7b1Hmimage_6-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 15\\\", 16GB RAM, 512GB SSD, Available in: US , PR\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air M3</li><li>Color: Space Gray</li><li>Operating System: macOS Sonoma 14.0</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 15.3 inches</li><li>Resolution: 2880 x 1864</li><li>Pixel Density: 224ppi</li><li>Backlight: LED</li><li>Touchscreen: No</li><li>Brightness: 500 candela per square metre</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3</li><li>Number of Cores: 8</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Unified memory</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: SSD</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Interfaces: 2 x USB4/Thunderbolt 3/DisplayPort (charging), Headphone output</li><li>USB Type-C Ports: 2</li><li>Wireless Connectivity: 802.11a/b/g/n/ac/ax (Wi-Fi 6E), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 66.5 watt hour(s)</li><li>Power Provided: 35 watt</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY</li><li>Keyboard Features: Keyboard Backlight</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"7833166\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:40.000000Z\",\n            \"updated_at\": \"2025-01-28T14:41:25.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CAM31516512Q0\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 46,\n                    \"name\": \"United States\",\n                    \"code\": \"US\"\n                },\n                {\n                    \"id\": 389,\n                    \"name\": \"Puerto Rico\",\n                    \"code\": \"PR\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84154,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, AZERTY, Midnight, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-k3vkC0VrBDEjRC2CsMkVimage_1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-M9b0pLu0Tt1ItzUmuZQPimage_6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-iH75rEFf2bzvRQCeYZcfimage_5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-0bF7sC8o5in0bbYkbkzAimage_4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291304-bER6rns5Hr9MVA0ULcakimage_3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1712291305-43gbZvXHYh07ntEcUXqEimage_2-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13.6\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13\\\" M3 8-core, 16GB RAM, 512GB SSD, Azerty</li><li>Operating System: macOS 14 (Sonoma)</li><li>Factory Warranty: 1 year carry-in</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video off: Thunderbolt 4</li><li>Video out (via Thunderbolt): USB type-c to DP 1.4/HDMI 2.0</li><li>Other Connections: Thunderbolt 4</li><li>Wireless Connectivity: 802.11a, 802.11b, 802.11g, Wi-Fi 4 (802.11n), Wi-Fi 5 (802.11ac), Wi-Fi 6 (802.11ax), Wi-Fi 6E (802.11ax), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power AC Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Azerty</li><li>Keyboard Features: Backlit keyboard</li><li>Security and Privacy: Fingerprint scanner</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCV3N/A\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:40.000000Z\",\n            \"updated_at\": \"2025-01-28T14:41:34.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"0195949637117\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84157,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, Irish QWERTY, Silver, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-71nKFcBn7pcX14VAiBGTimage_1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-SGJiNMsE1agOdIbLjAzgimage_2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-Qm1BXtC96bpPcxB1q0Jyimage_5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-XMfkqE3yXxPzpNgboAbVimage_6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156220-wd8cx1YlK9nrmR9Rr9aJimage_7-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156220-NyGfwoz7Ss6eUATAQmHaimage_3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156220-FdwfI9Wm1PXnwJtlIFcNimage_4-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air 13-inch M3 8-core CPU, 10-core GPU, 16GB RAM, 512GB SSD, QWERTY, Silver</li><li>Color: Silver</li><li>Operating System: macOS Sonoma</li><li>Warranty: 1 year limited<br></li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560 x 1664 pixels</li><li>Pixel Density: 224 ppi</li><li>Backlight: LED</li><li>Brightness: 500 cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU: Apple M3</li><li>Number of Cores: 8</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Form Factor: On-board</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple GPU</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Wireless Connectivity: Wi-Fi 6E (802.11ax), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6 Wh</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Reader</li><li>Dimensions (L x W x H): 304.1mm x 215mm x 11.3mm</li><li>Weight: 1.24kg</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"MRXQ3N/A- CTO 16GB/512GB\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:41.000000Z\",\n            \"updated_at\": \"2025-01-28T14:42:36.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CA31316512Q00\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84158,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, Spanish QWERTY, Space Gray, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-BeOeUW3252U8xHLB0vXcimage1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-UceG8L0A1SUcm3qOu2wFimage2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-wOdvfG8hpesS7gal2ehCimage5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-AGIoYgdKpRssaLS4K5Epimage4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-Vk2Gqcc0vLqj1pGmR89Cimage6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-cz5qfZ9mM1U4gwHfy7yLimage3-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><span style=\\\"font-size: 18px;\\\"><strong>Specifications:</strong></span></p><ul><li>Apple&nbsp;M3 chip with 8‑core CPU, 10‑core GPU, 16‑core Neural Engine</li><li>16GB unified memory</li><li>512GB SSD storage</li><li>13.6-inch Liquid Retina display with True&nbsp;Tone²</li><li>1080p FaceTime HD camera</li><li>MagSafe 3 charging port</li><li>Two Thunderbolt / USB 4 ports</li><li>35W Dual USB-C Port Compact Power&nbsp;Adapter</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID<br></li><li>Warranty: 1 year limited<br></li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCR3N/A-CTO 16GB/512GB\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:41.000000Z\",\n            \"updated_at\": \"2025-01-28T14:42:44.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CA31316512Q00\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84163,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 15\\\", 16GB RAM, 512GB SSD, QWERTZ DE, Silver, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-ORVcmD8aQd2iy6yLJymkimage1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-WLgf24WxvTaXx26v74jDimage2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-OLyqdGuODCbb7Pmot8jSimage4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-QaJOVVzd3B780CZVEd69image6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-zBcFzItSowH8ACa5Xq0bimage3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941140-HvaJWC5SGFhbsW2sqkUyimage5-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 15\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since March 8, 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 15-inch M3 8-core, 16GB RAM, 10-core GPU</li><li>Color: Silver</li><li>Operating System: macOS 14 (Sonoma)</li><li>Factory Warranty: 1 year carry in</li><li>EAN: 0195949638091</li><li>Serie: MacBook Air 2024 15\\\"</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 15.3 inches</li><li>Resolution: 2880x1864</li><li>Pixel Density: 224ppi</li><li>Backlight: Edge-lit</li><li>Touchscreen: No</li><li>Refresh Rate: 60Hz</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Maximum RAM Capacity: 16GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: 2x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Highest DisplayPort Version: DisplayPort 1.4</li><li>Other Connections: 2x Thunderbolt 4</li><li>Wireless Connectivity: 802.11a/b/g/n/ac/ax (Wi-Fi 4/5/6/6E), Bluetooth 5.4</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 66.5Wh</li><li>Power Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwertz</li><li>Language: German</li><li>Keyboard Features: Backlit Keyboard (White)</li><li>Security and Privacy: Fingerprint Scanner</li><li>Extra Laptop Features: 3.5mm jack, Fanless design, Webcam</li><li>Dimensions (L x W x H): 237.6mm x 340.4mm x 11.5mm</li><li>Weight: 1.51kg</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXD23N/A\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:42.000000Z\",\n            \"updated_at\": \"2025-01-29T10:27:27.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"0195949638091\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84164,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTZ DE, Silver, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-ORVcmD8aQd2iy6yLJymkimage1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-WLgf24WxvTaXx26v74jDimage2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-OLyqdGuODCbb7Pmot8jSimage4-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-QaJOVVzd3B780CZVEd69image6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941139-zBcFzItSowH8ACa5Xq0bimage3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1718941140-HvaJWC5SGFhbsW2sqkUyimage5-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since March 8, 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13-inch M3 8-core, 16GB RAM, 10-core GPU, 512GB SSD, QWERTZ, Silver</li><li>Color: Silver</li><li>Operating System: macOS 14 (Sonoma)</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry in</li><li>EAN: 0195949636172</li><li>Serie: MacBook Air 2024 13\\\"</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Touchscreen: No</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Soldered</li><li>Maximum RAM Capacity: 16GB</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: 2x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB type-c to DP 1.4/HDMI 2.0</li><li>Other Connections: 2x Thunderbolt 4</li><li>Wireless Connectivity: 802.11a/b/g/n/ac/ax (Wi-Fi 4/5/6/6E), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwertz</li><li>Language: German</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Scanner</li><li>Extra Laptop Features: 3.5mm jack, Webcam</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCT3N/A\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:43.000000Z\",\n            \"updated_at\": \"2025-01-28T14:43:58.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"0195949636172\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84168,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, French AZERTY, Space Grey, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728311448-L8838IPTsK5nuIP7BBsrde9befff-7daf-4d2e-864b-36ae93be108e.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728311448-rie52Pj81ubOzj0uL81uddb5c574-b7d0-46a2-8d35-bb22ffa53a46.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728311448-BfvQCGudnhHYhkggBwldd0298817-ff44-4806-86ec-84f701fea4c8.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728311448-ccKA6hiSlUvdtBT1rfNZ9c0dc64d-8c9f-424b-a01f-aee6d7bd7a44.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13.6\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since March 8, 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13\\\" M3 8-core, 16GB RAM, 10-core GPU</li><li>Color: Grey</li><li>Operating System: macOS 14 (Sonoma)</li><li>Touchbar: No<br></li><li>Serie: MacBook Air 2024 13\\\"</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Touchscreen: No</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Maximum RAM Capacity: 16GB</li><li>Memory Form Factor: Soldered</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 8-core</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: AZERTY</li><li>Language: French</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Scanner</li><li>Extra Laptop Features: 3.5mm audio jack, Webcam</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCR3N/A- CTO 16GB/512GB\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:44.000000Z\",\n            \"updated_at\": \"2025-01-28T14:44:31.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"4064575797198\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84169,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, AZERTY French, Silver, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-VnNV3nUOi79aKM11Hgbb4c8de5fa-6feb-4809-a9db-25c3671c5a72.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-kgLUUsYbPFCl5JRjb0820fcc54d0-8213-423e-b37c-72734cdf02ea.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-ou4eNSDzv4qC8CBZOoxq9b263f52-e248-4966-a341-aa56c728c39a.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-XhltTFonUuoLZSCv7dgF1c651ebb-15b6-4fbd-943b-6647d5a915e4.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-D7EOmNPlKP6ELhgVzPWRd3c1f3e8-86c0-4d52-8c0b-8bcf2a68bf37.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since March 8, 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13-inch M3 8-core, 16GB RAM, 10-core GPU, 512GB SSD, AZERTY, Silver</li><li>Color: Silver</li><li>Operating System: macOS 14 (Sonoma)</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry in</li><li>EAN: 0195949636172</li><li>Serie: MacBook Air 2024 13\\\"</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Touchscreen: No</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Soldered</li><li>Maximum RAM Capacity: 16GB</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: 2x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB type-c to DP 1.4/HDMI 2.0</li><li>Other Connections: 2x Thunderbolt 4</li><li>Wireless Connectivity: 802.11a/b/g/n/ac/ax (Wi-Fi 4/5/6/6E), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Azerty</li><li>Language: French</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Scanner</li><li>Extra Laptop Features: 3.5mm jack, Webcam</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCT3N/A-CTO\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:44.000000Z\",\n            \"updated_at\": \"2025-01-28T14:44:37.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CAM1416512Q00\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84170,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY Spanish, Silver, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-VnNV3nUOi79aKM11Hgbb4c8de5fa-6feb-4809-a9db-25c3671c5a72.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-kgLUUsYbPFCl5JRjb0820fcc54d0-8213-423e-b37c-72734cdf02ea.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-ou4eNSDzv4qC8CBZOoxq9b263f52-e248-4966-a341-aa56c728c39a.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-XhltTFonUuoLZSCv7dgF1c651ebb-15b6-4fbd-943b-6647d5a915e4.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1728309052-D7EOmNPlKP6ELhgVzPWRd3c1f3e8-86c0-4d52-8c0b-8bcf2a68bf37.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since March 8, 2024</li><li>Brand: Apple</li><li>Model: Apple MacBook Air 2024 13-inch M3 8-core, 16GB RAM, 10-core GPU, 512GB SSD, AZERTY, Silver</li><li>Color: Silver</li><li>Operating System: macOS 14 (Sonoma)</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry in<br></li><li>Serie: MacBook Air 2024 13\\\"</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Touchscreen: No</li><li>Brightness: 500cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: In SoC</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Type: Soldered</li><li>Maximum RAM Capacity: 16GB</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: 2x Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB type-c to DP 1.4/HDMI 2.0</li><li>Other Connections: 2x Thunderbolt 4</li><li>Wireless Connectivity: 802.11a/b/g/n/ac/ax (Wi-Fi 4/5/6/6E), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY</li><li>Language: Spanish</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Scanner</li><li>Extra Laptop Features: 3.5mm jack, Webcam</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXCT3N/A-CTO\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:45.000000Z\",\n            \"updated_at\": \"2025-01-28T14:44:45.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CAM1416512Q00\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": []\n        },\n        {\n            \"id\": 84172,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 15\\\", 16GB RAM, 512GB SSD, QWERTZ - German, Space Gray, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-BeOeUW3252U8xHLB0vXcimage1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1709879690-UceG8L0A1SUcm3qOu2wFimage2-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 15\\\", 16GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><span style=\\\"font-size: 18px;\\\"><strong>Specifications:</strong></span></p><ul><li>Apple&nbsp;M3 chip with 8‑core CPU, 10‑core GPU, 16‑core Neural Engine</li><li>16GB unified memory</li><li>512GB SSD storage</li><li>15-inch Liquid Retina display with True&nbsp;Tone²</li><li>1080p FaceTime HD camera</li><li>MagSafe 3 charging port</li><li>Two Thunderbolt / USB 4 ports</li><li>35W Dual USB-C Port Compact Power&nbsp;Adapter</li><li>Backlit Magic&nbsp;Keyboard with Touch&nbsp;ID- English International<br></li><li>Warranty: 1 year limited</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MXD13N/A\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:46.000000Z\",\n            \"updated_at\": \"2025-01-28T14:45:53.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CAM1316512IE0\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84175,\n            \"name\": \"Apple, Macbook Air, M3, 2024, 13\\\", 8GB RAM, 512GB SSD, QWERTY, Space Grey, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1713864777-9KEHZTn19cxkmDTxQEnJimage1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1713864777-0FzEoiA3sZN5d05X0nsdimage2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1713864777-frKGvQ9Unjx3zeUfek2uimage3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1713864777-XlzpGtVPxdLXwpVLawRSimage4-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 8GB RAM, 512GB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Availability: Since March 2024&nbsp;</li><li>Brand: Apple</li><li>Model: MacBook Air 2024</li><li>Color: Space grey</li><li>Operating System: macOS 14 (Sonoma)</li><li>Touchbar: No</li><li>Factory Warranty: 1 year carry-in</li><li>EAN: 0195949127489</li><li>Serie: MacBook Air 2024 13\\\"</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6\\\"</li><li>Resolution: 2560x1664</li><li>Pixel Density: 225ppi</li><li>Backlight: Edge-lit</li><li>Screen Coating: IPS</li><li>Touchscreen: No</li><li>Refresh Rate: 60 Hz</li><li>Brightness: 500cd/m²</li><li>Aspect Ratio: Unknown</li></ul><p><strong>Processor</strong></p><ul><li>CPU/SOC: Apple M3 8-core</li><li>Number of Cores: 8</li><li>Motherboard Chipset: (In SoC)</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 8GB</li><li>Memory Type: Gesoldeerd</li><li>Memory Speed (DDR): Unspecified</li><li>Maximum RAM Capacity: 8GB</li><li>Memory Form Factor: Unspecified</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk</li><li>Storage Capacity: 512GB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple M3 10-core</li><li>Video Memory: Unspecified</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Video Output: Thunderbolt 4</li><li>Video Output (via Thunderbolt): USB Type-C to DP 1.4/HDMI 2.0</li><li>Highest HDMI Version: Unspecified</li><li>Other Connections: Thunderbolt 4</li><li>Wireless Connectivity: 802.11a, 802.11b, 802.11g, Wi-Fi 4 (802.11n), Wi-Fi 5 (802.11ac), Wi-Fi 6 (802.11ax), Wi-Fi 6E (802.11ax), 2.4GHz, 5GHz (band 1), 6GHz</li><li>Bluetooth: Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6Wh</li><li>Power Adapter: 35W</li><li>AC Adapter Connection: MagSafe 3, USB Type-C</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: Qwerty United States</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Scanner</li><li>Extra Laptop Features: 3.5mm Jack, Webcam</li><li>Dimensions (L x W x H): 215mm x 304.1mm x 11.3mm</li><li>Weight: 1.24kg</li></ul>\",\n            \"second_hand\": false,\n            \"article_code\": \"MRXP3N/A\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:47.000000Z\",\n            \"updated_at\": \"2025-01-28T14:46:14.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"0195949127489\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": [\n                19448,\n                19449,\n                19450\n            ]\n        },\n        {\n            \"id\": 84178,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 1TB SSD, QWERTY, Silver, Laptops\",\n            \"images\": [\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-71nKFcBn7pcX14VAiBGTimage_1-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-SGJiNMsE1agOdIbLjAzgimage_2-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-Qm1BXtC96bpPcxB1q0Jyimage_5-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156219-XMfkqE3yXxPzpNgboAbVimage_6-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156220-wd8cx1YlK9nrmR9Rr9aJimage_7-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156220-NyGfwoz7Ss6eUATAQmHaimage_3-sq.jpg\",\n                \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1715156220-FdwfI9Wm1PXnwJtlIFcNimage_4-sq.jpg\"\n            ],\n            \"type\": \"Buy\",\n            \"price\": {\n                \"amount\": \"1\",\n                \"currency\": \"XCR\"\n            },\n            \"short_description\": \"Apple, Laptops, 13\\\", 16GB RAM, 1TB SSD, Available in: EU\",\n            \"description\": \"<p><strong>General Information</strong></p><ul><li>Brand: Apple</li><li>Model: Apple MacBook Air 13-inch M3 8-core CPU, 10-core GPU, 16GB RAM, 1TB SSD, QWERTY, Silver</li><li>Color: Silver</li><li>Operating System: macOS Sonoma</li></ul><p><strong>Display</strong></p><ul><li>Screen Size: 13.6 inches</li><li>Resolution: 2560 x 1664 pixels</li><li>Pixel Density: 224 ppi</li><li>Backlight: LED</li><li>Brightness: 500 cd/m²</li></ul><p><strong>Processor</strong></p><ul><li>CPU: Apple M3</li><li>Number of Cores: 8</li></ul><p><strong>Memory</strong></p><ul><li>RAM: 16GB</li><li>Memory Form Factor: On-board</li></ul><p><strong>Storage</strong></p><ul><li>Storage Type: Solid State Disk (SSD)</li><li>Storage Capacity: 1TB</li></ul><p><strong>Graphics</strong></p><ul><li>Integrated GPU: Apple GPU</li></ul><p><strong>Connection and Ports</strong></p><ul><li>Wireless Connectivity: Wi-Fi 6E (802.11ax), Bluetooth 5.3</li></ul><p><strong>Battery and Power</strong></p><ul><li>Battery Capacity: 52.6 Wh</li></ul><p><strong>Other Features</strong></p><ul><li>Keyboard Layout: QWERTY</li><li>Keyboard Features: Backlit Keyboard</li><li>Security and Privacy: Fingerprint Reader</li><li>Dimensions (L x W x H): 304.1mm x 215mm x 11.3mm</li><li>Weight: 1.24kg</li></ul><p><br></p>\",\n            \"second_hand\": false,\n            \"article_code\": \"MRXQ3N/A- CTO 16GB/1TB\",\n            \"category\": \"Laptops\",\n            \"supplier\": null,\n            \"created_at\": \"2025-01-28T14:19:47.000000Z\",\n            \"updated_at\": \"2025-01-28T14:46:37.000000Z\",\n            \"attribute\": null,\n            \"variants\": [],\n            \"ean\": \"CA313161Q0000\",\n            \"product_images\": [],\n            \"countries\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Austria\",\n                    \"code\": \"AT\"\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Belgium\",\n                    \"code\": \"BE\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Bulgaria\",\n                    \"code\": \"BG\"\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Croatia\",\n                    \"code\": \"HR\"\n                },\n                {\n                    \"id\": 297,\n                    \"name\": \"Cyprus\",\n                    \"code\": \"CY\"\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Czech Republic\",\n                    \"code\": \"CZ\"\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Denmark\",\n                    \"code\": \"DK\"\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Estonia\",\n                    \"code\": \"EE\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Finland\",\n                    \"code\": \"FI\"\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"France\",\n                    \"code\": \"FR\"\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Germany\",\n                    \"code\": \"DE\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Greece\",\n                    \"code\": \"GR\"\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Hungary\",\n                    \"code\": \"HU\"\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Ireland\",\n                    \"code\": \"IE\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Italy\",\n                    \"code\": \"IT\"\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Latvia\",\n                    \"code\": \"LV\"\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Lithuania\",\n                    \"code\": \"LT\"\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Luxembourg\",\n                    \"code\": \"LU\"\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Malta\",\n                    \"code\": \"MT\"\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\"\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Poland\",\n                    \"code\": \"PL\"\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Portugal\",\n                    \"code\": \"PT\"\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Romania\",\n                    \"code\": \"RO\"\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Slovakia\",\n                    \"code\": \"SK\"\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Slovenia\",\n                    \"code\": \"SI\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Spain\",\n                    \"code\": \"ES\"\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Sweden\",\n                    \"code\": \"SE\"\n                }\n            ],\n            \"department_ids\": []\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://127.0.0.1:8000/api/public/products?page=1\",\n        \"last\": \"http://127.0.0.1:8000/api/public/products?page=3\",\n        \"prev\": null,\n        \"next\": \"http://127.0.0.1:8000/api/public/products?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 3,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/products?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/products?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/products?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/products?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://127.0.0.1:8000/api/public/products\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 34\n    }\n}"}],"_postman_id":"a2cd633d-c6a5-4f89-8cdc-f59b60ca41c1"}],"id":"6870dfb2-5111-47af-841b-79b2f11d4d41","description":"<p>Product catalog endpoints for browsing available products.</p>\n","_postman_id":"6870dfb2-5111-47af-841b-79b2f11d4d41","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Employees","item":[{"name":"Get All Employees","id":"72d57676-d487-4d7b-b9a8-bcf024adc8ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/employees","description":"<p>Gets a list of employees assigned to the authenticated employer.</p>\n","urlObject":{"path":["employees"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>Expand different attributes. Possible includes are user, assets and department</p>\n","type":"text/plain"},"key":"include","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by employee ID</p>\n","type":"text/plain"},"key":"filter[id]","value":null},{"disabled":true,"description":{"content":"<p>Filter employees by foreign ID</p>\n","type":"text/plain"},"key":"filter[foreign_id]","value":"1234-ABCD"},{"disabled":true,"description":{"content":"<p>Filter by user email - Supports partial values</p>\n","type":"text/plain"},"key":"filter[user.email]","value":"john@goworkwize.com"},{"disabled":true,"description":{"content":"<p>Filter by user first name - Support partial values</p>\n","type":"text/plain"},"key":"filter[user.name]","value":"John"},{"disabled":true,"description":{"content":"<p>Filter by user last name - Supports partial values</p>\n","type":"text/plain"},"key":"filter[user.last_name]","value":"Doe"},{"disabled":true,"description":{"content":"<p>Limit’s the query result</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Select’s the page during pagination. Only works if limit parameter is passed as well.</p>\n","type":"text/plain"},"key":"page","value":"3"}],"variable":[]}},"response":[{"id":"3ce0bd9b-3fbb-48c7-bba9-11d44182f72e","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/employees","path":["employees"],"query":[{"key":"include","value":null,"description":"Expand different attributes. Possible includes are user, assets and department","disabled":true},{"key":"filter[foreign_id]","value":"1234-ABCD","description":"Filter employees by foreign ID","disabled":true},{"key":"filter[user.email]","value":"john@goworkwize.com","description":"Filter by user email","disabled":true},{"key":"limit","value":"10","description":"Limit’s the query result","disabled":true},{"key":"page","value":"3","description":"Select’s the page during pagination. Only works if limit parameter is passed as well.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 12:32:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 137077,\n        \"name\": \"John Doe\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"john@goworkwize.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"IT\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 1,\n        \"total_price_formatted\": \"€ 1,00\",\n        \"total_current_value\": 0.75,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"€ 1,00\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139558,\n        \"original_role\": {\n            \"id\": 4,\n            \"display_name\": \"Employer Admin\",\n            \"name\": \"employer-admin\"\n        },\n        \"department\": {\n            \"id\": 19448,\n            \"employer_id\": 490,\n            \"name\": \"IT\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 3,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137078,\n        \"name\": \"Brown Schroeder\",\n        \"first_name\": \"Brown\",\n        \"last_name\": \"Schroeder\",\n        \"email\": \"brown.schroeder@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Sales\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 2,\n        \"total_price_formatted\": \"€ 2,00\",\n        \"total_current_value\": 0.44999999999999996,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"€ 2,00\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139705,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19449,\n            \"employer_id\": 490,\n            \"name\": \"Sales\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 5,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137079,\n        \"name\": \"Candace Wisozk\",\n        \"first_name\": \"Candace\",\n        \"last_name\": \"Wisozk\",\n        \"email\": \"candace.wisozk@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Operations\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 0,\n        \"total_price_formatted\": \"-\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"-\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139706,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19450,\n            \"employer_id\": 490,\n            \"name\": \"Operations\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 3,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137080,\n        \"name\": \"Leland Brekke\",\n        \"first_name\": \"Leland\",\n        \"last_name\": \"Brekke\",\n        \"email\": \"leland.brekke@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Sales\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 1,\n        \"total_price_formatted\": \"€ 1,00\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"€ 1,00\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139707,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19449,\n            \"employer_id\": 490,\n            \"name\": \"Sales\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 5,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137081,\n        \"name\": \"Lysanne Cruickshank\",\n        \"first_name\": \"Lysanne\",\n        \"last_name\": \"Cruickshank\",\n        \"email\": \"lysanne.cruickshank@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Sales\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Sent\",\n        \"isDeactivated\": false,\n        \"total_price\": 0,\n        \"total_price_formatted\": \"-\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"-\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139708,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19449,\n            \"employer_id\": 490,\n            \"name\": \"Sales\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 5,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137082,\n        \"name\": \"Rae McKenzie\",\n        \"first_name\": \"Rae\",\n        \"last_name\": \"McKenzie\",\n        \"email\": \"rae.mckenzie@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Operations\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Sent\",\n        \"isDeactivated\": false,\n        \"total_price\": 0,\n        \"total_price_formatted\": \"-\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"-\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139709,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19450,\n            \"employer_id\": 490,\n            \"name\": \"Operations\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 3,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137083,\n        \"name\": \"Howard Blanda\",\n        \"first_name\": \"Howard\",\n        \"last_name\": \"Blanda\",\n        \"email\": \"howard.blanda@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"IT\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 1,\n        \"total_price_formatted\": \"€ 1,00\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"€ 1,00\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139710,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19448,\n            \"employer_id\": 490,\n            \"name\": \"IT\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 3,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137084,\n        \"name\": \"Helmer Morar\",\n        \"first_name\": \"Helmer\",\n        \"last_name\": \"Morar\",\n        \"email\": \"helmer.morar@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Operations\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 0,\n        \"total_price_formatted\": \"-\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"-\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139711,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19450,\n            \"employer_id\": 490,\n            \"name\": \"Operations\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 3,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137085,\n        \"name\": \"Walter Rempel\",\n        \"first_name\": \"Walter\",\n        \"last_name\": \"Rempel\",\n        \"email\": \"walter.rempel@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Sales\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Sent\",\n        \"isDeactivated\": false,\n        \"total_price\": 1,\n        \"total_price_formatted\": \"€ 1,00\",\n        \"total_current_value\": 0.6666666666666667,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"€ 1,00\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139712,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19449,\n            \"employer_id\": 490,\n            \"name\": \"Sales\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 5,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137086,\n        \"name\": \"Arlene Bechtelar\",\n        \"first_name\": \"Arlene\",\n        \"last_name\": \"Bechtelar\",\n        \"email\": \"arlene.bechtelar@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"Sales\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Sent\",\n        \"isDeactivated\": false,\n        \"total_price\": 1,\n        \"total_price_formatted\": \"€ 1,00\",\n        \"total_current_value\": 0.5862068965517242,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"€ 1,00\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139713,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19449,\n            \"employer_id\": 490,\n            \"name\": \"Sales\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 5,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    },\n    {\n        \"id\": 137087,\n        \"name\": \"Amaya Bogan\",\n        \"first_name\": \"Amaya\",\n        \"last_name\": \"Bogan\",\n        \"email\": \"amaya.bogan@omartest.com\",\n        \"ordersCount\": null,\n        \"assetsCount\": null,\n        \"team\": \"IT\",\n        \"foreign_id\": null,\n        \"registrationStatus\": \"Accepted\",\n        \"isDeactivated\": false,\n        \"total_price\": 0,\n        \"total_price_formatted\": \"-\",\n        \"total_current_value\": 0,\n        \"total_current_value_formatted\": \"-\",\n        \"total_original_asset_value_formatted\": \"-\",\n        \"total_current_asset_value_formatted\": \"-\",\n        \"user_id\": 139714,\n        \"original_role\": {\n            \"id\": 3,\n            \"display_name\": \"Employee\",\n            \"name\": \"employee\"\n        },\n        \"department\": {\n            \"id\": 19448,\n            \"employer_id\": 490,\n            \"name\": \"IT\",\n            \"rent_budget\": 10000,\n            \"purchase_budget\": 10000,\n            \"employees_count\": 3,\n            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:45.000000Z\"\n        }\n    }\n]"}],"_postman_id":"72d57676-d487-4d7b-b9a8-bcf024adc8ef"},{"name":"Create Employee","id":"57670694-3472-4568-ade4-060e20f23537","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"given_name\": \"John\",\n    \"last_name\": \"Doee\",\n    \"email\": \"teste@test.com\",\n    \"personal_email\": \"personale@test.com\",\n    \"phone_number\": \"1234567890\",\n    \"personal_phone_number\": \"0987654321\",\n    \"role\": \"IT\",\n    \"is_notified\": true,\n    \"foreign_id\": \"1\",\n    \"employment_start_date\": \"2010-10-10\",\n    \"employment_end_date\": \"2026-10-10\",\n    \"address\": {\n        \"additional_address_line\": \"additional_address_line\",\n        \"address_line_1\": \"address_line_1\",\n        \"address_line_2\": \"address_line_2\",\n        \"city\": \"city\",\n        \"region\": \"region\",\n        \"postal_code\": \"postal_code\",\n        \"country_code_iso2\": \"NL\"\n    },\n    \"job_title\": \"Manager\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees","description":"<p>This API allows an <strong>employer</strong> to create a new employee user. Depending on the route used, the request may require additional details such as role assignment and address information.</p>\n<hr />\n<h3 id=\"fields-explanation\"><strong>Fields Explanation</strong></h3>\n<h4 id=\"basic-employee-information\"><strong>Basic Employee Information</strong></h4>\n<ul>\n<li><p><strong><code>family_name</code></strong> <strong>/</strong> <strong><code>last_name</code></strong> <em>(required, string)</em> – The last name of the employee.</p>\n</li>\n<li><p><strong><code>email</code></strong> <em>(required, string)</em> – The employee’s work email address.</p>\n</li>\n<li><p><strong><code>phone_number</code></strong> <em>(required, string)</em> – The employee’s phone number.</p>\n</li>\n<li><p><strong><code>personal_email</code></strong> <em>(optional, string, email format)</em> – The employee’s personal email.</p>\n</li>\n<li><p><strong><code>personal_phone_number</code></strong> <em>(optional, string)</em> – The employee’s personal phone number.</p>\n</li>\n<li><p><strong><code>role</code></strong> role (required, string) – The department to assign the employee to. This must exactly match an existing department name configured for your organization in the Workwize platform (found under Settings → Teams). Example values: \"Engineering\", \"Finance\", \"IT\". If the provided value does not match any existing department, the API will return a 404 response listing all available departments.</p>\n</li>\n<li><p><strong><code>is_notified</code></strong> <em>(optional, boolean)</em> – Determines if the employee should receive a notification upon creation.</p>\n</li>\n<li><p><strong><code>foreign_id</code></strong> <em>(optional, string)</em> – External system reference ID for this employee.</p>\n</li>\n<li><p><strong><code>employment_start_date</code></strong> (optional, string, date format: Y-m-d) – The employee's employment start date in Y-m-d format (e.g., 2010-10-10).</p>\n</li>\n<li><p><strong><code>employment_end_date</code></strong> (optional, string, date format: Y-m-d) – The employee's employment end date in Y-m-d format (e.g., 2026-10-10).</p>\n</li>\n<li><p><strong><code>job_title</code></strong> <em>(optional, string)</em> – The employee's job title.</p>\n</li>\n</ul>\n<h4 id=\"address-information\"><strong>Address Information</strong></h4>\n<ul>\n<li><p><strong><code>address</code></strong> <em>(optional, object)</em> – An object containing the employee’s address details.</p>\n<ul>\n<li><p><strong><code>address_line_1</code></strong> <em>(required_unless:address,null, string)</em> – Primary address line.</p>\n</li>\n<li><p><strong><code>address_line_2</code></strong> <em>(optional, string)</em> – Secondary address line.</p>\n</li>\n<li><p><strong><code>additional_address_line</code></strong> *(optional, string)* – Additional address details.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>city</code></strong> <em>(required_unless:address,null, string)</em> – City name.</p>\n</li>\n<li><p><strong><code>region</code></strong> <em>(required_unless:address,null, string)</em> – State/Province/Region.</p>\n</li>\n<li><p><strong><code>postal_code</code></strong> <em>(required_unless:address,null, string)</em> – ZIP/Postal code.</p>\n</li>\n<li><p><strong><code>country_code_iso2</code></strong> <em>(required_unless:address,null, string)</em> – Two-letter country code (ISO 3166-1 alpha-2).</p>\n</li>\n</ul>\n","urlObject":{"path":["employees"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"5dbaacde-2ee0-40e5-8b73-db42b58d3b6a","name":"Successful Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"given_name\": \"John\",\n\t\"last_name\": \"Doee\",\n\t\"email\": \"teste@test.com\",\n\t\"personal_email\": \"personale@test.com\",\n\t\"phone_number\": \"1234567890\",\n\t\"personal_phone_number\": \"0987654321\",\n\t\"role\": \"IT\",\n\t\"is_notified\": true,\n\t\"foreign_id\": \"1\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 13:29:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 139715,\n    \"given_name\": \"John\",\n    \"family_name\": \"Doee\",\n    \"full_name\": \"John Doee\",\n    \"email\": \"teste@test.com\",\n    \"phone_number\": \"1234567890\",\n    \"personal_email\": \"personale@test.com\",\n    \"personal_phone_number\": \"0987654321\",\n    \"created_at\": \"2025-02-07T13:29:50.000000Z\",\n    \"employment_start_date\": \"2010-10-10 00:00:00\",\n    \"employment_end_date\": \"2026-10-10 00:00:00\",\n    \"updated_at\": \"2025-02-07T13:29:50.000000Z\",\n    \"address\": {\n        \"id\": 124,\n        \"owner_id\": 336,\n        \"owner_type\": \"employee\",\n        \"city\": \"City\",\n        \"country\": {\n            \"id\": 32,\n            \"name\": \"Netherlands\",\n            \"code\": \"NL\"\n        },\n        \"company_name\": null,\n        \"country_id\": 32,\n        \"address_line_1\": \"address_line_1\",\n        \"address_line_2\": \"address_line_2\",\n        \"region\": \"Region\",\n        \"postcode\": \"postal_code\",\n        \"postal_code\": \"postal_code\",\n        \"additional_address_line\": \"additional_address_line\",\n        \"name\": \"John\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"test@test.com\",\n        \"phone_number\": \"1234567890\"\n    },\n    \"foreign_id\": \"1\",\n    \"job_title\": \"Manager\"\n}"}],"_postman_id":"57670694-3472-4568-ade4-060e20f23537"},{"name":"Update Employee","id":"9db91fbe-b814-4d8b-9874-49d2e34967ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"given_name\": \"John\",\n    \"last_name\": \"Doee\",\n    \"email\": \"teste@test.com\",\n    \"personal_email\": \"personale@test.com\",\n    \"switch_emails\": false,\n    \"phone_number\": \"1234567890\",\n    \"personal_phone_number\": \"0987654321\",\n    \"role\": \"IT\",\n    \"foreign_id\": \"1\",\n    \"employment_end_date\": \"2026-10-10\",\n    \"address\": {\n        \"additional_address_line\": \"additional_address_line\",\n        \"address_line_1\": \"address_line_1\",\n        \"address_line_2\": \"address_line_2\",\n        \"city\": \"city\",\n        \"region\": \"region\",\n        \"postal_code\": \"postal_code\",\n        \"country_code_iso2\": \"NL\"\n    },\n    \"deactivated_at\": \"2025-10-23 11:43:33\",\n    \"job_title\": \"Manager\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}","description":"<p>This API allows an <strong>employer</strong> to create a new employee user. Depending on the route used, the request may require additional details such as role assignment and address information.</p>\n<hr />\n<h3 id=\"fields-explanation\"><strong>Fields Explanation</strong></h3>\n<h4 id=\"basic-employee-information\"><strong>Basic Employee Information</strong></h4>\n<ul>\n<li><p><strong><code>given_name</code></strong> <em>(required, string)</em> – The first name of the employee.</p>\n</li>\n<li><p><strong><code>family_name</code></strong> <strong>/</strong> <strong><code>last_name</code></strong> <em>(required, string)</em> – The last name of the employee.</p>\n</li>\n<li><p><strong><code>email</code></strong> <em>(required, string)</em> – The employee’s work email address.</p>\n</li>\n<li><p><strong><code>phone_number</code></strong> <em>(required, string)</em> – The employee’s phone number.</p>\n</li>\n<li><p><strong><code>personal_email</code></strong> <em>(optional, string, email format)</em> – The employee’s personal email.</p>\n</li>\n<li><p><strong><code>personal_phone_number</code></strong> <em>(optional, string)</em> – The employee’s personal phone number.</p>\n</li>\n<li><p><strong><code>role</code></strong> <em>(required, string)</em> – The department or role the employee belongs to.</p>\n</li>\n<li><p><strong><code>is_notified</code></strong> <em>(optional, boolean)</em> – Determines if the employee should receive a notification upon creation.</p>\n</li>\n<li><p><strong><code>foreign_id</code></strong> <em>(optional, string)</em> – External system reference ID for this employee.</p>\n</li>\n<li><p><strong><code>deactivated_at</code></strong> <em>(optional, date|null)</em> - Current date and time to deactivate or null value to reactivate the employee.</p>\n</li>\n<li><p><strong><code>employment_start_date</code></strong> (optional, string, date format: Y-m-d) – The employee's employment start date in Y-m-d format (e.g., 2010-10-10).</p>\n</li>\n<li><p><strong><code>employment_end_date</code></strong> (optional, string, date format: Y-m-d) – The employee's employment end date in Y-m-d format (e.g., 2026-10-10).</p>\n</li>\n<li><p><strong><code>job_title</code></strong> <em>(optional, string)</em> – The employee's job title.</p>\n</li>\n</ul>\n<h4 id=\"address-information\"><strong>Address Information</strong></h4>\n<ul>\n<li><p><strong><code>address</code></strong> <em>(optional, object)</em> – An object containing the employee’s address details.</p>\n<ul>\n<li><p><strong><code>address_line_1</code></strong> <em>(required_unless:address,null, string)</em> – Primary address line.</p>\n</li>\n<li><p><strong><code>address_line_2</code></strong> <em>(optional, string)</em> – Secondary address line.</p>\n</li>\n<li><p><strong><code>additional_address_line</code></strong> *(optional, string)* – Additional address details.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>city</code></strong> <em>(required_unless:address,null, string)</em> – City name.</p>\n</li>\n<li><p><strong><code>region</code></strong> <em>(required_unless:address,null, string)</em> – State/Province/Region.</p>\n</li>\n<li><p><strong><code>postal_code</code></strong> <em>(required_unless:address,null, string)</em> – ZIP/Postal code.</p>\n</li>\n<li><p><strong><code>country_code_iso2</code></strong> <em>(required_unless:address,null, string)</em> – Two-letter country code (ISO 3166-1 alpha-2).</p>\n</li>\n</ul>\n","urlObject":{"path":["employees","{{employee_id}}"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f1132f1d-08c8-40e6-a3cf-4863bb78bdf0","name":"Successful Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"given_name\": \"John\",\n\t\"last_name\": \"Doee\",\n\t\"email\": \"teste@test.com\",\n\t\"personal_email\": \"personale@test.com\",\n\t\"phone_number\": \"1234567890\",\n\t\"personal_phone_number\": \"0987654321\",\n\t\"role\": \"IT\",\n\t\"is_notified\": true,\n\t\"foreign_id\": \"1\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 13:29:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 139715,\n    \"given_name\": \"John\",\n    \"family_name\": \"Doee\",\n    \"full_name\": \"John Doee\",\n    \"email\": \"teste@test.com\",\n    \"phone_number\": \"1234567890\",\n    \"personal_email\": \"personale@test.com\",\n    \"personal_phone_number\": \"0987654321\",\n    \"created_at\": \"2025-02-07T13:29:50.000000Z\",\n    \"updated_at\": \"2025-02-07T13:29:50.000000Z\",\n    \"deactivated_at\": \"2025-10-23 11:43:33\",\n    \"address\": {\n        \"id\": 124,\n        \"owner_id\": 336,\n        \"owner_type\": \"employee\",\n        \"city\": \"City\",\n        \"country\": {\n            \"id\": 32,\n            \"name\": \"Netherlands\",\n            \"code\": \"NL\"\n        },\n        \"company_name\": null,\n        \"country_id\": 32,\n        \"address_line_1\": \"address_line_1\",\n        \"address_line_2\": \"address_line_2\",\n        \"region\": \"Region\",\n        \"postcode\": \"postal_code\",\n        \"postal_code\": \"postal_code\",\n        \"additional_address_line\": \"additional_address_line\",\n        \"name\": \"John\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"test@test.com\",\n        \"phone_number\": \"1234567890\"\n    },\n    \"foreign_id\": \"1\",\n}"}],"_postman_id":"9db91fbe-b814-4d8b-9874-49d2e34967ca"}],"id":"ea525a77-18d1-4de5-8489-84f808b84d0f","description":"<p>Employee management endpoints for creating, updating, and retrieving employee information. Includes address management and asset assignment capabilities.</p>\n","_postman_id":"ea525a77-18d1-4de5-8489-84f808b84d0f","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Assets","item":[{"name":"Get Assets","id":"7bffb350-447f-4069-919c-1ed4bec76d16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/assets","description":"<p>Gets a paginated list of all the assets that the authenticated employer owns.</p>\n","urlObject":{"path":["assets"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>Sets the number of assets per page - Default 200</p>\n","type":"text/plain"},"key":"per_page","value":"200"},{"disabled":true,"description":{"content":"<p>Sets the page number if there is any</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Find assets base on employee ID. Sample code: ?filter[employeeId]=42</p>\n","type":"text/plain"},"key":"filter[employeeId]","value":null},{"disabled":true,"description":{"content":"<p>Find assets base on employee email. Sample code: ?filter[employeeEmail]=<a href=\"mailto:abc@test.com\">abc@test.com</a> </p>\n","type":"text/plain"},"key":"filter[employeeEmail]","value":null},{"disabled":true,"description":{"content":"<p>Filter assets by country ISO2 or country ID. Sample code: ?filter[country_availability]=NL,US</p>\n","type":"text/plain"},"key":"filter[country_availability]","value":null}],"variable":[]}},"response":[{"id":"9ad8ade3-490f-4c29-af7d-1b89276f79d1","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/assets","host":[""],"path":["assets"],"query":[{"key":"per_page","value":"200","description":"Sets the number of assets per page - Default 200","disabled":true},{"key":"page","value":"1","description":"Sets the page number if there is any","disabled":true},{"key":"filter[employeeId]","value":null,"description":"Find assets base on employee ID. Sample code: ?filter[employeeId]=42","disabled":true},{"key":"filter[employeeEmail]","value":null,"description":"Find assets base on employee email. Sample code: ?filter[employeeEmail]=abc@test.com ","disabled":true},{"key":"filter[country_availability]","value":null,"description":"Filter assets by country ISO2 or country ID. Sample code: ?filter[country_availability]=NL,US","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 13:38:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 66507888,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, AZERTY French, Silver, Laptops\",\n            \"category\": null,\n            \"location\": {\n                \"location_id\": 137077,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address\": {\n                        \"address_line_1\": null,\n                        \"address_line_2\": null,\n                        \"postal_code\": null,\n                        \"additional_address_line\": null,\n                        \"city\": null,\n                        \"region\": null,\n                        \"email\": null,\n                        \"phone_number\": null\n                    },\n                    \"team\": \"IT\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"2IMICKT3GG\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507889,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - UK, Space Grey, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137078,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Brown\",\n                    \"last_name\": \"Schroeder\",\n                    \"address\": {\n                        \"address_line_1\": \"Schuster Drive\",\n                        \"address_line_2\": \"977\",\n                        \"postal_code\": \"39356\",\n                        \"additional_address_line\": \"Route\",\n                        \"city\": \"Vonfurt\",\n                        \"region\": \"South Carolina\",\n                        \"email\": \"brown.schroeder@democompany.com\",\n                        \"phone_number\": \"+1-445-976-9749\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"EUCENMBBCX\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"in_repair\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507890,\n            \"name\": \"Dell, P2423DE, 24\\\", QHD, IPS, Monitors\",\n            \"category\": {\n                \"id\": 99,\n                \"name\": \"Monitors\",\n                \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 1,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"L5I2N4ECLI\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507891,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 256GB SSD, QWERTY - US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137078,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Brown\",\n                    \"last_name\": \"Schroeder\",\n                    \"address\": {\n                        \"address_line_1\": \"Schuster Drive\",\n                        \"address_line_2\": \"977\",\n                        \"postal_code\": \"39356\",\n                        \"additional_address_line\": \"Route\",\n                        \"city\": \"Vonfurt\",\n                        \"region\": \"South Carolina\",\n                        \"email\": \"brown.schroeder@democompany.com\",\n                        \"phone_number\": \"+1-445-976-9749\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"TIBWDPMBJ4\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507892,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, QWERTY - UK, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 11,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"IANM0GHTBT\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507893,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 15\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137080,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Leland\",\n                    \"last_name\": \"Brekke\",\n                    \"address\": {\n                        \"address_line_1\": \"Veum Drive\",\n                        \"address_line_2\": \"12091\",\n                        \"postal_code\": \"65560-4182\",\n                        \"additional_address_line\": \"Port\",\n                        \"city\": \"Faheyborough\",\n                        \"region\": \"Tennessee\",\n                        \"email\": \"leland.brekke@democompany.com\",\n                        \"phone_number\": \"1-805-377-8865\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"YE8MJNJOAQ\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507894,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, French AZERTY, Space Grey, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"ADG8CST7E0\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507895,\n            \"name\": \"HP, USB-C Dock G5, Docking Stations & USB Hubs\",\n            \"category\": {\n                \"id\": 92,\n                \"name\": \"Docking Stations & USB Hubs\",\n                \"created_at\": \"2021-05-05T17:58:53.000000Z\",\n                \"updated_at\": \"2021-05-05T17:58:53.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137081,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Lysanne\",\n                    \"last_name\": \"Cruickshank\",\n                    \"address\": {\n                        \"address_line_1\": \"Kuvalis Mews\",\n                        \"address_line_2\": \"557\",\n                        \"postal_code\": \"00433\",\n                        \"additional_address_line\": \"Crossing\",\n                        \"city\": \"Diegoview\",\n                        \"region\": \"Oklahoma\",\n                        \"email\": \"lysanne.cruickshank@democompany.com\",\n                        \"phone_number\": \"(978) 952-4539\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"RGMTB4BR0J\",\n            \"invoice_price\": 145.42,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507896,\n            \"name\": \"HP, EliteBook 840 G10, Intel® Core™ i7-1360P, 2023, 14\\\", 16GB RAM, 512GB SSD, QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"3GRAEZCUON\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507897,\n            \"name\": \"Logitech, C925e, Full HD, Webcams\",\n            \"category\": {\n                \"id\": 225,\n                \"name\": \"Webcams\",\n                \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 10,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"LISQM0FYUK\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507898,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, Spanish QWERTY, Space Gray, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 7,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"63BWVXVTOL\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507899,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY Spanish, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27647,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Tokyo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1-1 Chiyoda\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"100-0001\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Tokyo\",\n                        \"region\": \"Tokyo Metropolis\",\n                        \"email\": \"taro.yamada@example.jp\",\n                        \"phone_number\": \"+81 3-1234-5678\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"RCOFGLHL4I\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507900,\n            \"name\": \"Dell, C2423H, 24\\\", 1920 x 1080 Full HD, IPS, Monitors\",\n            \"category\": {\n                \"id\": 99,\n                \"name\": \"Monitors\",\n                \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27644,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"London Office\",\n                    \"address\": {\n                        \"address_line_1\": \"221B Baker Street\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"NW1 6XE\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"London\",\n                        \"region\": \"Greater London\",\n                        \"email\": \"john.smith@example.co.uk\",\n                        \"phone_number\": \"+44 20-7946-0958\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"NUOVNEASJA\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507901,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, QWERTY - UK, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27645,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Washington Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1600 Pennsylvania Avenue\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"20500\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Washington\",\n                        \"region\": \"Dc\",\n                        \"email\": \"michael.johnson@example.com\",\n                        \"phone_number\": \"+1 212-555-1234\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"LW94RRERFI\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507902,\n            \"name\": \"HP, EliteBook 840 G9, Intel Core i7 - 1255U, 2024, 14\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137083,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Howard\",\n                    \"last_name\": \"Blanda\",\n                    \"address\": {\n                        \"address_line_1\": \"Whitney Field\",\n                        \"address_line_2\": \"9260\",\n                        \"postal_code\": \"09981\",\n                        \"additional_address_line\": \"Plains\",\n                        \"city\": \"Lake Margarettville\",\n                        \"region\": \"Illinois\",\n                        \"email\": \"howard.blanda@democompany.com\",\n                        \"phone_number\": \"734-833-5931\"\n                    },\n                    \"team\": \"IT\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"A9FWD4MUDR\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507903,\n            \"name\": \"HP, EliteBook 840 G10, Intel Core i7, 2023, 14\\\", 32GB RAM, 1TB SSD, UK QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 2,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"XKD4URNHKV\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507904,\n            \"name\": \"HP, EliteBook 840 G11, Intel Core Ultra 7 155U, 2024, 14\\\", 32GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137084,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Helmer\",\n                    \"last_name\": \"Morar\",\n                    \"address\": {\n                        \"address_line_1\": \"Hayes Rest\",\n                        \"address_line_2\": \"482\",\n                        \"postal_code\": \"90841-5883\",\n                        \"additional_address_line\": \"Drive\",\n                        \"city\": \"East Mossietown\",\n                        \"region\": \"Washington\",\n                        \"email\": \"helmer.morar@democompany.com\",\n                        \"phone_number\": \"+1-305-714-4539\"\n                    },\n                    \"team\": \"Operations\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"NHHP8Q8L3Y\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507905,\n            \"name\": \"HP Probook 440 G8 (i5 8GB/256GB)\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"OQNUPCXF2J\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507906,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, Irish QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27647,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Tokyo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1-1 Chiyoda\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"100-0001\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Tokyo\",\n                        \"region\": \"Tokyo Metropolis\",\n                        \"email\": \"taro.yamada@example.jp\",\n                        \"phone_number\": \"+81 3-1234-5678\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"RB0GM5T1UW\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507907,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 1TB SSD, QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 6,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"9J4JPV7Y9M\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507908,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, French AZERTY, Space Grey, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137085,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Walter\",\n                    \"last_name\": \"Rempel\",\n                    \"address\": {\n                        \"address_line_1\": \"Kaya Mill\",\n                        \"address_line_2\": \"49071\",\n                        \"postal_code\": \"36984\",\n                        \"additional_address_line\": \"Station\",\n                        \"city\": \"Ebertburgh\",\n                        \"region\": \"Nevada\",\n                        \"email\": \"walter.rempel@democompany.com\",\n                        \"phone_number\": \"(276) 337-6350\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"7XVRUAB9P6\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507909,\n            \"name\": \"HP, 230 Wireless, QWERTY-United Kingdom, Keyboard & Mouse Combos\",\n            \"category\": {\n                \"id\": 272,\n                \"name\": \"Keyboard & Mouse Combos\",\n                \"created_at\": \"2023-07-04T06:44:40.000000Z\",\n                \"updated_at\": \"2023-07-04T06:44:40.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"XK3WDZTDJQ\",\n            \"invoice_price\": 39.88,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507910,\n            \"name\": \"HP, Poly Blackwire 8225 M USB-C/A, Wired, Binaural, Headphones\",\n            \"category\": {\n                \"id\": 94,\n                \"name\": \"Headphones\",\n                \"created_at\": \"2021-05-05T17:58:54.000000Z\",\n                \"updated_at\": \"2021-05-05T17:58:54.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"KSIC9V08LE\",\n            \"invoice_price\": 114.53,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507911,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27647,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Tokyo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1-1 Chiyoda\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"100-0001\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Tokyo\",\n                        \"region\": \"Tokyo Metropolis\",\n                        \"email\": \"taro.yamada@example.jp\",\n                        \"phone_number\": \"+81 3-1234-5678\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"QQTTYWTVKW\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507912,\n            \"name\": \"Dell, C2423H, 24\\\", 1920 x 1080 Full HD, IPS, Monitors\",\n            \"category\": {\n                \"id\": 99,\n                \"name\": \"Monitors\",\n                \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"WNNCNZGHOS\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507913,\n            \"name\": \"HP, EliteBook 840 G9, Intel Core i7 - 1255U, 2024, 14\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137086,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Arlene\",\n                    \"last_name\": \"Bechtelar\",\n                    \"address\": {\n                        \"address_line_1\": \"Brooke Place\",\n                        \"address_line_2\": \"696\",\n                        \"postal_code\": \"59473-2473\",\n                        \"additional_address_line\": \"Ways\",\n                        \"city\": \"Marjoryborough\",\n                        \"region\": \"Wisconsin\",\n                        \"email\": \"arlene.bechtelar@democompany.com\",\n                        \"phone_number\": \"(712) 227-8721\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"GJKF31QWSW\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507914,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.3\\\", 16GB RAM, 256GB SSD, QWERTY- US, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 2,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"QT4TTGAIMS\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507915,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 1880.11,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507916,\n            \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n            \"category\": {\n                \"id\": 225,\n                \"name\": \"Webcams\",\n                \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 123.19,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507917,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 1880.11,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507918,\n            \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n            \"category\": {\n                \"id\": 225,\n                \"name\": \"Webcams\",\n                \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 123.19,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://127.0.0.1:8000/api/public/assets?page=1\",\n        \"last\": \"http://127.0.0.1:8000/api/public/assets?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/assets?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://127.0.0.1:8000/api/public/assets\",\n        \"per_page\": 200,\n        \"to\": 31,\n        \"total\": 31\n    }\n}"}],"_postman_id":"7bffb350-447f-4069-919c-1ed4bec76d16"},{"name":"Get Asset History","id":"015b3fa4-6382-4626-abf9-58e286ffbf19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/assets/{{assetId}}/history","description":"<p>Get the asset history. Due to system limitations, you cannot pre-load this on the list of assets, but rather get it per asset bases.</p>\n","urlObject":{"path":["assets","{{assetId}}","history"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"7c42c920-1b7c-4650-b0b4-d57ababd03fb","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/assets","host":[""],"path":["assets"],"query":[{"key":"per_page","value":"200","description":"Sets the number of assets per page - Default 200","disabled":true},{"key":"page","value":"1","description":"Sets the page number if there is any","disabled":true},{"key":"filter[employeeId]","value":null,"description":"Find assets base on employee ID. Sample code: ?filter[employeeId]=42","disabled":true},{"key":"filter[employeeEmail]","value":null,"description":"Find assets base on employee email. Sample code: ?filter[employeeEmail]=abc@test.com ","disabled":true},{"key":"filter[country_availability]","value":null,"description":"Filter assets by country ISO2 or country ID. Sample code: ?filter[country_availability]=NL,US","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 13:38:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 66507888,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, AZERTY French, Silver, Laptops\",\n            \"category\": null,\n            \"location\": {\n                \"location_id\": 137077,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"address\": {\n                        \"address_line_1\": null,\n                        \"address_line_2\": null,\n                        \"postal_code\": null,\n                        \"additional_address_line\": null,\n                        \"city\": null,\n                        \"region\": null,\n                        \"email\": null,\n                        \"phone_number\": null\n                    },\n                    \"team\": \"IT\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"2IMICKT3GG\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507889,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - UK, Space Grey, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137078,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Brown\",\n                    \"last_name\": \"Schroeder\",\n                    \"address\": {\n                        \"address_line_1\": \"Schuster Drive\",\n                        \"address_line_2\": \"977\",\n                        \"postal_code\": \"39356\",\n                        \"additional_address_line\": \"Route\",\n                        \"city\": \"Vonfurt\",\n                        \"region\": \"South Carolina\",\n                        \"email\": \"brown.schroeder@democompany.com\",\n                        \"phone_number\": \"+1-445-976-9749\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"EUCENMBBCX\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"in_repair\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507890,\n            \"name\": \"Dell, P2423DE, 24\\\", QHD, IPS, Monitors\",\n            \"category\": {\n                \"id\": 99,\n                \"name\": \"Monitors\",\n                \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 1,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"L5I2N4ECLI\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507891,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 256GB SSD, QWERTY - US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137078,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Brown\",\n                    \"last_name\": \"Schroeder\",\n                    \"address\": {\n                        \"address_line_1\": \"Schuster Drive\",\n                        \"address_line_2\": \"977\",\n                        \"postal_code\": \"39356\",\n                        \"additional_address_line\": \"Route\",\n                        \"city\": \"Vonfurt\",\n                        \"region\": \"South Carolina\",\n                        \"email\": \"brown.schroeder@democompany.com\",\n                        \"phone_number\": \"+1-445-976-9749\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"TIBWDPMBJ4\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507892,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, QWERTY - UK, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 11,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"IANM0GHTBT\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507893,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 15\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137080,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Leland\",\n                    \"last_name\": \"Brekke\",\n                    \"address\": {\n                        \"address_line_1\": \"Veum Drive\",\n                        \"address_line_2\": \"12091\",\n                        \"postal_code\": \"65560-4182\",\n                        \"additional_address_line\": \"Port\",\n                        \"city\": \"Faheyborough\",\n                        \"region\": \"Tennessee\",\n                        \"email\": \"leland.brekke@democompany.com\",\n                        \"phone_number\": \"1-805-377-8865\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"YE8MJNJOAQ\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507894,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, French AZERTY, Space Grey, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"ADG8CST7E0\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507895,\n            \"name\": \"HP, USB-C Dock G5, Docking Stations & USB Hubs\",\n            \"category\": {\n                \"id\": 92,\n                \"name\": \"Docking Stations & USB Hubs\",\n                \"created_at\": \"2021-05-05T17:58:53.000000Z\",\n                \"updated_at\": \"2021-05-05T17:58:53.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137081,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Lysanne\",\n                    \"last_name\": \"Cruickshank\",\n                    \"address\": {\n                        \"address_line_1\": \"Kuvalis Mews\",\n                        \"address_line_2\": \"557\",\n                        \"postal_code\": \"00433\",\n                        \"additional_address_line\": \"Crossing\",\n                        \"city\": \"Diegoview\",\n                        \"region\": \"Oklahoma\",\n                        \"email\": \"lysanne.cruickshank@democompany.com\",\n                        \"phone_number\": \"(978) 952-4539\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"RGMTB4BR0J\",\n            \"invoice_price\": 145.42,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507896,\n            \"name\": \"HP, EliteBook 840 G10, Intel® Core™ i7-1360P, 2023, 14\\\", 16GB RAM, 512GB SSD, QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"3GRAEZCUON\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507897,\n            \"name\": \"Logitech, C925e, Full HD, Webcams\",\n            \"category\": {\n                \"id\": 225,\n                \"name\": \"Webcams\",\n                \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 10,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"LISQM0FYUK\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507898,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, Spanish QWERTY, Space Gray, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 7,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"63BWVXVTOL\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507899,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY Spanish, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27647,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Tokyo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1-1 Chiyoda\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"100-0001\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Tokyo\",\n                        \"region\": \"Tokyo Metropolis\",\n                        \"email\": \"taro.yamada@example.jp\",\n                        \"phone_number\": \"+81 3-1234-5678\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"RCOFGLHL4I\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507900,\n            \"name\": \"Dell, C2423H, 24\\\", 1920 x 1080 Full HD, IPS, Monitors\",\n            \"category\": {\n                \"id\": 99,\n                \"name\": \"Monitors\",\n                \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27644,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"London Office\",\n                    \"address\": {\n                        \"address_line_1\": \"221B Baker Street\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"NW1 6XE\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"London\",\n                        \"region\": \"Greater London\",\n                        \"email\": \"john.smith@example.co.uk\",\n                        \"phone_number\": \"+44 20-7946-0958\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"NUOVNEASJA\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507901,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, QWERTY - UK, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27645,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Washington Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1600 Pennsylvania Avenue\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"20500\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Washington\",\n                        \"region\": \"Dc\",\n                        \"email\": \"michael.johnson@example.com\",\n                        \"phone_number\": \"+1 212-555-1234\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"LW94RRERFI\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507902,\n            \"name\": \"HP, EliteBook 840 G9, Intel Core i7 - 1255U, 2024, 14\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137083,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Howard\",\n                    \"last_name\": \"Blanda\",\n                    \"address\": {\n                        \"address_line_1\": \"Whitney Field\",\n                        \"address_line_2\": \"9260\",\n                        \"postal_code\": \"09981\",\n                        \"additional_address_line\": \"Plains\",\n                        \"city\": \"Lake Margarettville\",\n                        \"region\": \"Illinois\",\n                        \"email\": \"howard.blanda@democompany.com\",\n                        \"phone_number\": \"734-833-5931\"\n                    },\n                    \"team\": \"IT\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"A9FWD4MUDR\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507903,\n            \"name\": \"HP, EliteBook 840 G10, Intel Core i7, 2023, 14\\\", 32GB RAM, 1TB SSD, UK QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 2,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"XKD4URNHKV\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507904,\n            \"name\": \"HP, EliteBook 840 G11, Intel Core Ultra 7 155U, 2024, 14\\\", 32GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137084,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Helmer\",\n                    \"last_name\": \"Morar\",\n                    \"address\": {\n                        \"address_line_1\": \"Hayes Rest\",\n                        \"address_line_2\": \"482\",\n                        \"postal_code\": \"90841-5883\",\n                        \"additional_address_line\": \"Drive\",\n                        \"city\": \"East Mossietown\",\n                        \"region\": \"Washington\",\n                        \"email\": \"helmer.morar@democompany.com\",\n                        \"phone_number\": \"+1-305-714-4539\"\n                    },\n                    \"team\": \"Operations\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"NHHP8Q8L3Y\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507905,\n            \"name\": \"HP Probook 440 G8 (i5 8GB/256GB)\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"OQNUPCXF2J\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507906,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, Irish QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27647,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Tokyo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1-1 Chiyoda\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"100-0001\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Tokyo\",\n                        \"region\": \"Tokyo Metropolis\",\n                        \"email\": \"taro.yamada@example.jp\",\n                        \"phone_number\": \"+81 3-1234-5678\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"RB0GM5T1UW\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507907,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 1TB SSD, QWERTY, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 6,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"9J4JPV7Y9M\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507908,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, French AZERTY, Space Grey, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137085,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Walter\",\n                    \"last_name\": \"Rempel\",\n                    \"address\": {\n                        \"address_line_1\": \"Kaya Mill\",\n                        \"address_line_2\": \"49071\",\n                        \"postal_code\": \"36984\",\n                        \"additional_address_line\": \"Station\",\n                        \"city\": \"Ebertburgh\",\n                        \"region\": \"Nevada\",\n                        \"email\": \"walter.rempel@democompany.com\",\n                        \"phone_number\": \"(276) 337-6350\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"7XVRUAB9P6\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507909,\n            \"name\": \"HP, 230 Wireless, QWERTY-United Kingdom, Keyboard & Mouse Combos\",\n            \"category\": {\n                \"id\": 272,\n                \"name\": \"Keyboard & Mouse Combos\",\n                \"created_at\": \"2023-07-04T06:44:40.000000Z\",\n                \"updated_at\": \"2023-07-04T06:44:40.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"XK3WDZTDJQ\",\n            \"invoice_price\": 39.88,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507910,\n            \"name\": \"HP, Poly Blackwire 8225 M USB-C/A, Wired, Binaural, Headphones\",\n            \"category\": {\n                \"id\": 94,\n                \"name\": \"Headphones\",\n                \"created_at\": \"2021-05-05T17:58:54.000000Z\",\n                \"updated_at\": \"2021-05-05T17:58:54.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"KSIC9V08LE\",\n            \"invoice_price\": 114.53,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507911,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY - US, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27647,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Tokyo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"1-1 Chiyoda\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"100-0001\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Tokyo\",\n                        \"region\": \"Tokyo Metropolis\",\n                        \"email\": \"taro.yamada@example.jp\",\n                        \"phone_number\": \"+81 3-1234-5678\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"QQTTYWTVKW\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507912,\n            \"name\": \"Dell, C2423H, 24\\\", 1920 x 1080 Full HD, IPS, Monitors\",\n            \"category\": {\n                \"id\": 99,\n                \"name\": \"Monitors\",\n                \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n                \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27646,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"São Paulo Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Avenida Paulista, 1000\",\n                        \"address_line_2\": \"Apt 101\",\n                        \"postal_code\": \"01310-000\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"São Paulo\",\n                        \"region\": \"Sp\",\n                        \"email\": \"carlos.silva@example.com.br\",\n                        \"phone_number\": \"+55 11-98765-4321\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"WNNCNZGHOS\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507913,\n            \"name\": \"HP, EliteBook 840 G9, Intel Core i7 - 1255U, 2024, 14\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 137086,\n                \"location_type\": \"employee\",\n                \"location_detail\": {\n                    \"first_name\": \"Arlene\",\n                    \"last_name\": \"Bechtelar\",\n                    \"address\": {\n                        \"address_line_1\": \"Brooke Place\",\n                        \"address_line_2\": \"696\",\n                        \"postal_code\": \"59473-2473\",\n                        \"additional_address_line\": \"Ways\",\n                        \"city\": \"Marjoryborough\",\n                        \"region\": \"Wisconsin\",\n                        \"email\": \"arlene.bechtelar@democompany.com\",\n                        \"phone_number\": \"(712) 227-8721\"\n                    },\n                    \"team\": \"Sales\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"GJKF31QWSW\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507914,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13.3\\\", 16GB RAM, 256GB SSD, QWERTY- US, Midnight, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 2,\n                \"location_type\": \"warehouse\",\n                \"location_detail\": {\n                    \"name\": \"Logistics Plus\"\n                }\n            },\n            \"note\": null,\n            \"serial_code\": \"QT4TTGAIMS\",\n            \"invoice_price\": 1,\n            \"invoice_currency\": null,\n            \"external_reference\": null,\n            \"warehouse_status\": \"available\",\n            \"condition\": \"used\"\n        },\n        {\n            \"id\": 66507915,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 1880.11,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507916,\n            \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n            \"category\": {\n                \"id\": 225,\n                \"name\": \"Webcams\",\n                \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 123.19,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507917,\n            \"name\": \"Apple, MacBook Air, M3, 2024, 13\\\", 16GB RAM, 512GB SSD, QWERTY US, Silver, Laptops\",\n            \"category\": {\n                \"id\": 86,\n                \"name\": \"Laptops\",\n                \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 1880.11,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        },\n        {\n            \"id\": 66507918,\n            \"name\": \"Logitech, Webcam C925e, 1080p, Webcams\",\n            \"category\": {\n                \"id\": 225,\n                \"name\": \"Webcams\",\n                \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n                \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n            },\n            \"location\": {\n                \"location_id\": 27643,\n                \"location_type\": \"office\",\n                \"location_detail\": {\n                    \"name\": \"Amsterdam Office\",\n                    \"address\": {\n                        \"address_line_1\": \"Damstraat 1\",\n                        \"address_line_2\": \"\",\n                        \"postal_code\": \"1012JS\",\n                        \"additional_address_line\": \"\",\n                        \"city\": \"Amsterdam\",\n                        \"region\": \"Noord-Holland\",\n                        \"email\": \"jan.devries@example.nl\",\n                        \"phone_number\": \"+31 20-1234567\"\n                    }\n                }\n            },\n            \"note\": null,\n            \"serial_code\": null,\n            \"invoice_price\": 123.19,\n            \"invoice_currency\": \"USD\",\n            \"external_reference\": null,\n            \"warehouse_status\": \"unknown\",\n            \"condition\": \"new\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://127.0.0.1:8000/api/public/assets?page=1\",\n        \"last\": \"http://127.0.0.1:8000/api/public/assets?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/assets?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://127.0.0.1:8000/api/public/assets\",\n        \"per_page\": 200,\n        \"to\": 31,\n        \"total\": 31\n    }\n}"}],"_postman_id":"015b3fa4-6382-4626-abf9-58e286ffbf19"},{"name":"Create An Asset For An Employee","id":"4112f257-c594-49a9-8e0b-ff00025ede09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"test\",\n    \"brand\": \"Apple\",\n    \"model\": \"MacBook Pro\",\n    \"type\": \"Buy\",\n    \"category_id\": 1,\n    \"budget_deduction\": 12,\n    \"date_ordered\": \"2024-01-01\",\n    \"currency\": \"EUR\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/assets","description":"<p>This API allows an <strong>employer</strong> to create an <strong>asset</strong> for an employee. Assets can be either <strong>purchased</strong> or <strong>rented</strong>, and each asset is associated with a category, budget deduction, and other financial details.</p>\n<h3 id=\"fields-explanation\"><strong>Fields Explanation</strong></h3>\n<h4 id=\"asset-information\"><strong>Asset Information</strong></h4>\n<ul>\n<li><p><strong><code>name</code></strong> <em>(required, string)</em> – The name of the asset.</p>\n</li>\n<li><p><strong><code>brand</code></strong> (required, string) – The brand of the asset (e.g., \"Apple\", \"Dell\", \"HP\").</p>\n</li>\n<li><p><strong><code>model</code></strong> (required, string) – The model of the asset (e.g., \"MacBook Pro 16\", \"XPS 13\").</p>\n</li>\n<li><p><strong><code>type</code></strong> <em>(required, string, enum:</em> <code>Buy</code><em>,</em> <code>Rent</code><em>)</em> – Defines whether the asset is purchased or rented.</p>\n</li>\n<li><p><strong><code>category_id</code></strong> <em>(required, integer, exists:categories,id)</em> – The ID of the asset category.</p>\n</li>\n<li><p><strong><code>depreciation_months</code></strong> <em>(conditional, integer)</em> –</p>\n<ul>\n<li><p>Required if <code>type</code> is <strong>Buy</strong> (<code>&gt;= 1 month</code>).</p>\n</li>\n<li><p>Must not be included if <code>type</code> is <strong>Rent</strong>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>budget_deduction</code></strong> <em>(required, numeric)</em> – The amount deducted from the budget for this asset.</p>\n</li>\n<li><p><strong><code>invoice_price</code></strong> <em>(optional, numeric)</em> – The price listed on the invoice.</p>\n</li>\n<li><p><strong><code>date_ordered</code></strong> <em>(required, date format:</em> <code>YYYY-MM-DD</code><em>)</em> – The date when the asset was ordered.</p>\n</li>\n<li><p><strong><code>currency</code></strong> <em>(required, string, ISO 4217 format)</em> – one of EUR, USD, GBP, CAD, AUD, CHF, INR, ZAR, ILS, SGD, AED, CNY, KRW, JPY, UAH, EGP, NGN, RSD, ISK, TRY, SAR, IDR, MYR, VND, PKR, HKD or NZD</p>\n</li>\n<li><p><strong><code>rent_end_date</code></strong> <em>(optional, date, required if</em> <code>type</code> <em>is Rent)</em> – The date when the rental period ends.</p>\n</li>\n<li><p><strong><code>note</code></strong> <em>(optional, string)</em> – Additional comments or notes about the asset.</p>\n</li>\n<li><p><strong><code>tags</code></strong> <em>(optional, array of integers)</em> – A list of tag IDs associated with the asset.</p>\n</li>\n<li><p><strong><code>serial_code</code></strong> <em>(optional, string)</em> – The serial number of the asset.</p>\n</li>\n<li><p><strong><code>image</code></strong> <em>(optional, array)</em> – Array of the URLs for the images</p>\n</li>\n<li><p><strong><code>warehouse_status</code></strong> <em>(optional, enum:</em> <code>Available</code><em>,</em> <code>Reserved</code><em>,</em> <code>Sold</code><em>, etc.)</em> – The current status of the asset in inventory.</p>\n</li>\n</ul>\n","urlObject":{"path":["employees","{{employee_id}}","assets"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"855ccfca-dc66-4472-b0b9-f6f4866c2b52","name":"Successful Reponse","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"test\",\n    \"type\": \"Buy\",\n    \"category_id\": 1,\n    \"budget_deduction\": 12,\n    \"date_ordered\": \"2024-01-01\",\n    \"currency\": \"EUR\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 14:10:19 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"success\": true,\n    \"status\": true,\n    \"message\": null,\n    \"data\": {\n        \"id\": 66507919,\n        \"name\": \"test\",\n        \"category\": {\n            \"id\": 1,\n            \"name\": \"Office supplies\",\n            \"created_at\": \"2020-12-15T09:33:37.000000Z\",\n            \"updated_at\": \"2023-09-18T13:22:11.000000Z\"\n        },\n        \"location\": {\n            \"location_id\": 137088,\n            \"location_type\": \"employee\",\n            \"location_detail\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doee\",\n                \"address\": {\n                    \"address_line_1\": null,\n                    \"address_line_2\": null,\n                    \"postal_code\": null,\n                    \"additional_address_line\": null,\n                    \"city\": null,\n                    \"region\": null,\n                    \"email\": null,\n                    \"phone_number\": null\n                },\n                \"team\": \"IT\"\n            }\n        },\n        \"note\": null,\n        \"serial_code\": null,\n        \"invoice_price\": null,\n        \"invoice_currency\": null,\n        \"external_reference\": null,\n        \"warehouse_status\": null,\n        \"condition\": null\n    },\n    \"links\": {},\n    \"meta\": {},\n    \"errors\": [],\n    \"redirect\": \"\"\n}"}],"_postman_id":"4112f257-c594-49a9-8e0b-ff00025ede09"},{"name":"Create Tag","id":"d7309554-5739-4138-bf4a-e9fc9a92940d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"string (required)\"\n}","options":{"raw":{"language":"json"}}},"url":"/tags","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"path":["tags"],"query":[],"variable":[]}},"response":[{"id":"25e29f34-40aa-4f2c-a2b6-5853d14989c1","name":"Successful Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"string (required)\"\n}","options":{"raw":{"language":"json"}}},"url":"/tags"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1,\n  \"name\": \"Tag Name\"\n}"}],"_postman_id":"d7309554-5739-4138-bf4a-e9fc9a92940d"}],"id":"7eb280c5-f440-4105-8df9-2700286eb46d","description":"<p>Asset management endpoints viewing asset details, and tracking asset history.</p>\n","_postman_id":"7eb280c5-f440-4105-8df9-2700286eb46d","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Offices","item":[{"name":"Get Offices","id":"09aa1413-35df-4a48-84c2-e7ae584f6b83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/offices","urlObject":{"path":["offices"],"host":[""],"query":[{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[{"id":"be8b50a2-903f-43f0-897f-59ece6bf87ce","name":"Successful Reponse","originalRequest":{"method":"GET","header":[],"url":"/offices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 14:32:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 27643,\n            \"name\": \"Amsterdam Office\",\n            \"employer_id\": 490,\n            \"manager_id\": 139558,\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"manager\": {\n                \"id\": 139558,\n                \"name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"phone_number\": \"11111111111\",\n                \"personal_phone_number\": null,\n                \"invite\": {\n                    \"id\": 83079,\n                    \"email\": \"John@goworkwize.com\",\n                    \"status\": \"Accepted\",\n                    \"department_id\": null,\n                    \"invitee_role_id\": 4,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"John Test\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"settings\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Sort By Suppliers\",\n                            \"slug\": \"sort-by-suppliers\",\n                            \"description\": \"\",\n                            \"order_by\": \"asc\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Perks\",\n                            \"slug\": \"perks\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 3,\n                            \"name\": \"Return Product\",\n                            \"slug\": \"return-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 7,\n                            \"name\": \"Cancel Product\",\n                            \"slug\": \"cancel-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 8,\n                            \"name\": \"Offboard Employee\",\n                            \"slug\": \"offboard-employee\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 9,\n                            \"name\": \"Generate Token\",\n                            \"slug\": \"generate-token\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 11,\n                            \"name\": \"Warehouse\",\n                            \"slug\": \"warehouse\",\n                            \"description\": \"Warehouse Features\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"name\": \"Automations\",\n                            \"slug\": \"automations\",\n                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                        },\n                        {\n                            \"id\": 13,\n                            \"name\": \"Decommission\",\n                            \"slug\": \"decommission_feature\",\n                            \"description\": \"Decommission feature for employers\"\n                        }\n                    ],\n                    \"total_orders\": 12,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"employee\": {\n                    \"id\": 137077,\n                    \"available_rent_budget\": 10000,\n                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"total_rent_budget\": 10000,\n                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_rent_budget\": 10000,\n                    \"available_purchase_budget\": 9999,\n                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                    \"total_purchase_budget\": 10000,\n                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_purchase_budget\": 9999,\n                    \"department_id\": 19448,\n                    \"manual_sync\": false,\n                    \"department\": {\n                        \"id\": 19448,\n                        \"employer_id\": 490,\n                        \"name\": \"IT\",\n                        \"rent_budget\": 10000,\n                        \"purchase_budget\": 10000,\n                        \"custom\": 0,\n                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"employees_count\": 3,\n                        \"budget_type\": \"fixed\",\n                        \"budgets\": [\n                            {\n                                \"id\": 8909,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"purchase\"\n                            },\n                            {\n                                \"id\": 8910,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"rental\"\n                            }\n                        ],\n                        \"auto_approve_orders\": true,\n                        \"auto_offboarding\": false,\n                        \"user_id\": null\n                    },\n                    \"employer\": {\n                        \"id\": 490,\n                        \"company_name\": \"John Test\",\n                        \"city\": null,\n                        \"total_employees\": 11,\n                        \"address_line_1\": null,\n                        \"warehouse_storage_code\": null,\n                        \"postcode\": null,\n                        \"catalog_id\": 801,\n                        \"currency_id\": 2,\n                        \"message\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                        \"synced_asset\": 1,\n                        \"org_id\": null,\n                        \"announcement\": 0,\n                        \"total_orders\": 12,\n                        \"account_type\": \"sales_demo\",\n                        \"total_pending_requests\": 2\n                    },\n                    \"currency\": {\n                        \"id\": 2,\n                        \"icon\": \"€\",\n                        \"name\": \"EUR\",\n                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                    },\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"entity\": null,\n                    \"invitation_accepted\": true,\n                    \"status\": \"added\",\n                    \"balances\": [\n                        {\n                            \"id\": 249332,\n                            \"budget_id\": 8909,\n                            \"bugdet_balance_type\": \"purchase\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        },\n                        {\n                            \"id\": 249333,\n                            \"budget_id\": 8910,\n                            \"bugdet_balance_type\": \"rental\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        }\n                    ],\n                    \"address\": null,\n                    \"employment_start_date\": null,\n                    \"employment_end_date\": null,\n                    \"tax_identification_number\": null\n                },\n                \"email\": \"John@goworkwize.com\",\n                \"personal_email\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                \"role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"original_role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"sub\": null,\n                \"read_privacy\": 0,\n                \"hasAsset\": false,\n                \"status\": \"Accepted\",\n                \"display_name\": \"John Doe\",\n                \"is_deactivated\": false\n            },\n            \"address\": {\n                \"id\": 136667,\n                \"city\": \"Amsterdam\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Damstraat 1\",\n                \"address_line_2\": \"\",\n                \"region\": \"Noord-Holland\",\n                \"postcode\": \"1012JS\",\n                \"postal_code\": \"1012JS\",\n                \"additional_address_line\": \"\",\n                \"name\": \"Jan\",\n                \"first_name\": \"Jan\",\n                \"last_name\": \"De Vries\",\n                \"email\": \"jan.devries@example.nl\",\n                \"phone_number\": \"+31 20-1234567\"\n            }\n        },\n        {\n            \"id\": 27644,\n            \"name\": \"London Office\",\n            \"employer_id\": 490,\n            \"manager_id\": 139558,\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"manager\": {\n                \"id\": 139558,\n                \"name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"phone_number\": \"11111111111\",\n                \"personal_phone_number\": null,\n                \"invite\": {\n                    \"id\": 83079,\n                    \"email\": \"John@goworkwize.com\",\n                    \"status\": \"Accepted\",\n                    \"department_id\": null,\n                    \"invitee_role_id\": 4,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"John Test\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"settings\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Sort By Suppliers\",\n                            \"slug\": \"sort-by-suppliers\",\n                            \"description\": \"\",\n                            \"order_by\": \"asc\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Perks\",\n                            \"slug\": \"perks\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 3,\n                            \"name\": \"Return Product\",\n                            \"slug\": \"return-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 7,\n                            \"name\": \"Cancel Product\",\n                            \"slug\": \"cancel-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 8,\n                            \"name\": \"Offboard Employee\",\n                            \"slug\": \"offboard-employee\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 9,\n                            \"name\": \"Generate Token\",\n                            \"slug\": \"generate-token\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 11,\n                            \"name\": \"Warehouse\",\n                            \"slug\": \"warehouse\",\n                            \"description\": \"Warehouse Features\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"name\": \"Automations\",\n                            \"slug\": \"automations\",\n                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                        },\n                        {\n                            \"id\": 13,\n                            \"name\": \"Decommission\",\n                            \"slug\": \"decommission_feature\",\n                            \"description\": \"Decommission feature for employers\"\n                        }\n                    ],\n                    \"total_orders\": 12,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"employee\": {\n                    \"id\": 137077,\n                    \"available_rent_budget\": 10000,\n                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"total_rent_budget\": 10000,\n                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_rent_budget\": 10000,\n                    \"available_purchase_budget\": 9999,\n                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                    \"total_purchase_budget\": 10000,\n                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_purchase_budget\": 9999,\n                    \"department_id\": 19448,\n                    \"manual_sync\": false,\n                    \"user\": {\n                        \"id\": 139558,\n                        \"name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"phone_number\": \"11111111111\",\n                        \"personal_phone_number\": null,\n                        \"invite\": {\n                            \"id\": 83079,\n                            \"email\": \"John@goworkwize.com\",\n                            \"status\": \"Accepted\",\n                            \"department_id\": null,\n                            \"invitee_role_id\": 4,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                        },\n                        \"employer\": {\n                            \"id\": 490,\n                            \"company_name\": \"John Test\",\n                            \"city\": null,\n                            \"total_employees\": 11,\n                            \"address_line_1\": null,\n                            \"warehouse_storage_code\": null,\n                            \"postcode\": null,\n                            \"catalog_id\": 801,\n                            \"currency_id\": 2,\n                            \"message\": null,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                            \"synced_asset\": 1,\n                            \"org_id\": null,\n                            \"announcement\": 0,\n                            \"settings\": [\n                                {\n                                    \"id\": 1,\n                                    \"name\": \"Sort By Suppliers\",\n                                    \"slug\": \"sort-by-suppliers\",\n                                    \"description\": \"\",\n                                    \"order_by\": \"asc\"\n                                },\n                                {\n                                    \"id\": 2,\n                                    \"name\": \"Perks\",\n                                    \"slug\": \"perks\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 3,\n                                    \"name\": \"Return Product\",\n                                    \"slug\": \"return-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 7,\n                                    \"name\": \"Cancel Product\",\n                                    \"slug\": \"cancel-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"Offboard Employee\",\n                                    \"slug\": \"offboard-employee\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"Generate Token\",\n                                    \"slug\": \"generate-token\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 11,\n                                    \"name\": \"Warehouse\",\n                                    \"slug\": \"warehouse\",\n                                    \"description\": \"Warehouse Features\"\n                                },\n                                {\n                                    \"id\": 12,\n                                    \"name\": \"Automations\",\n                                    \"slug\": \"automations\",\n                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                },\n                                {\n                                    \"id\": 13,\n                                    \"name\": \"Decommission\",\n                                    \"slug\": \"decommission_feature\",\n                                    \"description\": \"Decommission feature for employers\"\n                                }\n                            ],\n                            \"total_orders\": 12,\n                            \"account_type\": \"sales_demo\",\n                            \"total_pending_requests\": 2\n                        },\n                        \"employee\": {\n                            \"id\": 137077,\n                            \"available_rent_budget\": 10000,\n                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"total_rent_budget\": 10000,\n                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_rent_budget\": 10000,\n                            \"available_purchase_budget\": 9999,\n                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                            \"total_purchase_budget\": 10000,\n                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_purchase_budget\": 9999,\n                            \"department_id\": 19448,\n                            \"manual_sync\": false,\n                            \"department\": {\n                                \"id\": 19448,\n                                \"employer_id\": 490,\n                                \"name\": \"IT\",\n                                \"rent_budget\": 10000,\n                                \"purchase_budget\": 10000,\n                                \"custom\": 0,\n                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"employees_count\": 3,\n                                \"budget_type\": \"fixed\",\n                                \"budgets\": [\n                                    {\n                                        \"id\": 8909,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"purchase\"\n                                    },\n                                    {\n                                        \"id\": 8910,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"rental\"\n                                    }\n                                ],\n                                \"auto_approve_orders\": true,\n                                \"auto_offboarding\": false,\n                                \"user_id\": null\n                            },\n                            \"employer\": {\n                                \"id\": 490,\n                                \"company_name\": \"John Test\",\n                                \"city\": null,\n                                \"total_employees\": 11,\n                                \"address_line_1\": null,\n                                \"warehouse_storage_code\": null,\n                                \"postcode\": null,\n                                \"catalog_id\": 801,\n                                \"currency_id\": 2,\n                                \"message\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                \"synced_asset\": 1,\n                                \"org_id\": null,\n                                \"announcement\": 0,\n                                \"total_orders\": 12,\n                                \"account_type\": \"sales_demo\",\n                                \"total_pending_requests\": 2\n                            },\n                            \"currency\": {\n                                \"id\": 2,\n                                \"icon\": \"€\",\n                                \"name\": \"EUR\",\n                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                            },\n                            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"entity\": null,\n                            \"invitation_accepted\": true,\n                            \"status\": \"added\",\n                            \"balances\": [\n                                {\n                                    \"id\": 249332,\n                                    \"budget_id\": 8909,\n                                    \"bugdet_balance_type\": \"purchase\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                },\n                                {\n                                    \"id\": 249333,\n                                    \"budget_id\": 8910,\n                                    \"bugdet_balance_type\": \"rental\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                }\n                            ],\n                            \"address\": null,\n                            \"employment_start_date\": null,\n                            \"employment_end_date\": null,\n                            \"tax_identification_number\": null\n                        },\n                        \"email\": \"John@goworkwize.com\",\n                        \"personal_email\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                        \"role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"original_role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"sub\": null,\n                        \"read_privacy\": 0,\n                        \"hasAsset\": false,\n                        \"status\": \"Accepted\",\n                        \"display_name\": \"John Doe\",\n                        \"is_deactivated\": false\n                    },\n                    \"name\": \"John Doe\",\n                    \"department\": {\n                        \"id\": 19448,\n                        \"employer_id\": 490,\n                        \"name\": \"IT\",\n                        \"rent_budget\": 10000,\n                        \"purchase_budget\": 10000,\n                        \"custom\": 0,\n                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"employees_count\": 3,\n                        \"budget_type\": \"fixed\",\n                        \"budgets\": [\n                            {\n                                \"id\": 8909,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"purchase\"\n                            },\n                            {\n                                \"id\": 8910,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"rental\"\n                            }\n                        ],\n                        \"auto_approve_orders\": true,\n                        \"auto_offboarding\": false,\n                        \"user_id\": null\n                    },\n                    \"employer\": {\n                        \"id\": 490,\n                        \"company_name\": \"John Test\",\n                        \"city\": null,\n                        \"total_employees\": 11,\n                        \"address_line_1\": null,\n                        \"warehouse_storage_code\": null,\n                        \"postcode\": null,\n                        \"catalog_id\": 801,\n                        \"currency_id\": 2,\n                        \"message\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                        \"synced_asset\": 1,\n                        \"org_id\": null,\n                        \"announcement\": 0,\n                        \"total_orders\": 12,\n                        \"account_type\": \"sales_demo\",\n                        \"total_pending_requests\": 2\n                    },\n                    \"currency\": {\n                        \"id\": 2,\n                        \"icon\": \"€\",\n                        \"name\": \"EUR\",\n                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                    },\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"entity\": null,\n                    \"invitation_accepted\": true,\n                    \"status\": \"added\",\n                    \"balances\": [\n                        {\n                            \"id\": 249332,\n                            \"budget_id\": 8909,\n                            \"bugdet_balance_type\": \"purchase\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        },\n                        {\n                            \"id\": 249333,\n                            \"budget_id\": 8910,\n                            \"bugdet_balance_type\": \"rental\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        }\n                    ],\n                    \"address\": null,\n                    \"employment_start_date\": null,\n                    \"employment_end_date\": null,\n                    \"tax_identification_number\": null\n                },\n                \"email\": \"John@goworkwize.com\",\n                \"personal_email\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                \"role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"original_role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"sub\": null,\n                \"read_privacy\": 0,\n                \"hasAsset\": false,\n                \"status\": \"Accepted\",\n                \"display_name\": \"John Doe\",\n                \"is_deactivated\": false\n            },\n            \"address\": {\n                \"id\": 136668,\n                \"city\": \"London\",\n                \"country\": {\n                    \"id\": 15,\n                    \"name\": \"United Kingdom\",\n                    \"code\": \"GB\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 15,\n                \"address_line_1\": \"221B Baker Street\",\n                \"address_line_2\": \"\",\n                \"region\": \"Greater London\",\n                \"postcode\": \"NW1 6XE\",\n                \"postal_code\": \"NW1 6XE\",\n                \"additional_address_line\": \"\",\n                \"name\": \"John\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Smith\",\n                \"email\": \"john.smith@example.co.uk\",\n                \"phone_number\": \"+44 20-7946-0958\"\n            }\n        },\n        {\n            \"id\": 27645,\n            \"name\": \"Washington Office\",\n            \"employer_id\": 490,\n            \"manager_id\": 139558,\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"manager\": {\n                \"id\": 139558,\n                \"name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"phone_number\": \"11111111111\",\n                \"personal_phone_number\": null,\n                \"invite\": {\n                    \"id\": 83079,\n                    \"email\": \"John@goworkwize.com\",\n                    \"status\": \"Accepted\",\n                    \"department_id\": null,\n                    \"invitee_role_id\": 4,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"John Test\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"settings\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Sort By Suppliers\",\n                            \"slug\": \"sort-by-suppliers\",\n                            \"description\": \"\",\n                            \"order_by\": \"asc\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Perks\",\n                            \"slug\": \"perks\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 3,\n                            \"name\": \"Return Product\",\n                            \"slug\": \"return-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 7,\n                            \"name\": \"Cancel Product\",\n                            \"slug\": \"cancel-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 8,\n                            \"name\": \"Offboard Employee\",\n                            \"slug\": \"offboard-employee\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 9,\n                            \"name\": \"Generate Token\",\n                            \"slug\": \"generate-token\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 11,\n                            \"name\": \"Warehouse\",\n                            \"slug\": \"warehouse\",\n                            \"description\": \"Warehouse Features\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"name\": \"Automations\",\n                            \"slug\": \"automations\",\n                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                        },\n                        {\n                            \"id\": 13,\n                            \"name\": \"Decommission\",\n                            \"slug\": \"decommission_feature\",\n                            \"description\": \"Decommission feature for employers\"\n                        }\n                    ],\n                    \"total_orders\": 12,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"employee\": {\n                    \"id\": 137077,\n                    \"available_rent_budget\": 10000,\n                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"total_rent_budget\": 10000,\n                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_rent_budget\": 10000,\n                    \"available_purchase_budget\": 9999,\n                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                    \"total_purchase_budget\": 10000,\n                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_purchase_budget\": 9999,\n                    \"department_id\": 19448,\n                    \"manual_sync\": false,\n                    \"user\": {\n                        \"id\": 139558,\n                        \"name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"phone_number\": \"11111111111\",\n                        \"personal_phone_number\": null,\n                        \"invite\": {\n                            \"id\": 83079,\n                            \"email\": \"John@goworkwize.com\",\n                            \"status\": \"Accepted\",\n                            \"department_id\": null,\n                            \"invitee_role_id\": 4,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                        },\n                        \"employer\": {\n                            \"id\": 490,\n                            \"company_name\": \"John Test\",\n                            \"city\": null,\n                            \"total_employees\": 11,\n                            \"address_line_1\": null,\n                            \"warehouse_storage_code\": null,\n                            \"postcode\": null,\n                            \"catalog_id\": 801,\n                            \"currency_id\": 2,\n                            \"message\": null,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                            \"synced_asset\": 1,\n                            \"org_id\": null,\n                            \"announcement\": 0,\n                            \"settings\": [\n                                {\n                                    \"id\": 1,\n                                    \"name\": \"Sort By Suppliers\",\n                                    \"slug\": \"sort-by-suppliers\",\n                                    \"description\": \"\",\n                                    \"order_by\": \"asc\"\n                                },\n                                {\n                                    \"id\": 2,\n                                    \"name\": \"Perks\",\n                                    \"slug\": \"perks\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 3,\n                                    \"name\": \"Return Product\",\n                                    \"slug\": \"return-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 7,\n                                    \"name\": \"Cancel Product\",\n                                    \"slug\": \"cancel-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"Offboard Employee\",\n                                    \"slug\": \"offboard-employee\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"Generate Token\",\n                                    \"slug\": \"generate-token\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 11,\n                                    \"name\": \"Warehouse\",\n                                    \"slug\": \"warehouse\",\n                                    \"description\": \"Warehouse Features\"\n                                },\n                                {\n                                    \"id\": 12,\n                                    \"name\": \"Automations\",\n                                    \"slug\": \"automations\",\n                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                },\n                                {\n                                    \"id\": 13,\n                                    \"name\": \"Decommission\",\n                                    \"slug\": \"decommission_feature\",\n                                    \"description\": \"Decommission feature for employers\"\n                                }\n                            ],\n                            \"total_orders\": 12,\n                            \"account_type\": \"sales_demo\",\n                            \"total_pending_requests\": 2\n                        },\n                        \"employee\": {\n                            \"id\": 137077,\n                            \"available_rent_budget\": 10000,\n                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"total_rent_budget\": 10000,\n                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_rent_budget\": 10000,\n                            \"available_purchase_budget\": 9999,\n                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                            \"total_purchase_budget\": 10000,\n                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_purchase_budget\": 9999,\n                            \"department_id\": 19448,\n                            \"manual_sync\": false,\n                            \"user\": {\n                                \"id\": 139558,\n                                \"name\": \"John\",\n                                \"last_name\": \"Doe\",\n                                \"phone_number\": \"11111111111\",\n                                \"personal_phone_number\": null,\n                                \"invite\": {\n                                    \"id\": 83079,\n                                    \"email\": \"John@goworkwize.com\",\n                                    \"status\": \"Accepted\",\n                                    \"department_id\": null,\n                                    \"invitee_role_id\": 4,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                                },\n                                \"employer\": {\n                                    \"id\": 490,\n                                    \"company_name\": \"John Test\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 801,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"settings\": [\n                                        {\n                                            \"id\": 1,\n                                            \"name\": \"Sort By Suppliers\",\n                                            \"slug\": \"sort-by-suppliers\",\n                                            \"description\": \"\",\n                                            \"order_by\": \"asc\"\n                                        },\n                                        {\n                                            \"id\": 2,\n                                            \"name\": \"Perks\",\n                                            \"slug\": \"perks\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 3,\n                                            \"name\": \"Return Product\",\n                                            \"slug\": \"return-product\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 7,\n                                            \"name\": \"Cancel Product\",\n                                            \"slug\": \"cancel-product\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 8,\n                                            \"name\": \"Offboard Employee\",\n                                            \"slug\": \"offboard-employee\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 9,\n                                            \"name\": \"Generate Token\",\n                                            \"slug\": \"generate-token\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 11,\n                                            \"name\": \"Warehouse\",\n                                            \"slug\": \"warehouse\",\n                                            \"description\": \"Warehouse Features\"\n                                        },\n                                        {\n                                            \"id\": 12,\n                                            \"name\": \"Automations\",\n                                            \"slug\": \"automations\",\n                                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                                        },\n                                        {\n                                            \"id\": 13,\n                                            \"name\": \"Decommission\",\n                                            \"slug\": \"decommission_feature\",\n                                            \"description\": \"Decommission feature for employers\"\n                                        }\n                                    ],\n                                    \"total_orders\": 12,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"employee\": {\n                                    \"id\": 137077,\n                                    \"available_rent_budget\": 10000,\n                                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_rent_budget\": 10000,\n                                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_rent_budget\": 10000,\n                                    \"available_purchase_budget\": 9999,\n                                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                    \"total_purchase_budget\": 10000,\n                                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_purchase_budget\": 9999,\n                                    \"department_id\": 19448,\n                                    \"manual_sync\": false,\n                                    \"department\": {\n                                        \"id\": 19448,\n                                        \"employer_id\": 490,\n                                        \"name\": \"IT\",\n                                        \"rent_budget\": 10000,\n                                        \"purchase_budget\": 10000,\n                                        \"custom\": 0,\n                                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                        \"employees_count\": 3,\n                                        \"budget_type\": \"fixed\",\n                                        \"budgets\": [\n                                            {\n                                                \"id\": 8909,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"purchase\"\n                                            },\n                                            {\n                                                \"id\": 8910,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"rental\"\n                                            }\n                                        ],\n                                        \"auto_approve_orders\": true,\n                                        \"auto_offboarding\": false,\n                                        \"user_id\": null\n                                    },\n                                    \"employer\": {\n                                        \"id\": 490,\n                                        \"company_name\": \"John Test\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 801,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 12,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"currency\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                    \"entity\": null,\n                                    \"invitation_accepted\": true,\n                                    \"status\": \"added\",\n                                    \"balances\": [\n                                        {\n                                            \"id\": 249332,\n                                            \"budget_id\": 8909,\n                                            \"bugdet_balance_type\": \"purchase\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        },\n                                        {\n                                            \"id\": 249333,\n                                            \"budget_id\": 8910,\n                                            \"bugdet_balance_type\": \"rental\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        }\n                                    ],\n                                    \"address\": null,\n                                    \"employment_start_date\": null,\n                                    \"employment_end_date\": null,\n                                    \"tax_identification_number\": null\n                                },\n                                \"email\": \"John@goworkwize.com\",\n                                \"personal_email\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                                \"role\": {\n                                    \"id\": 4,\n                                    \"display_name\": \"Employer Admin\",\n                                    \"name\": \"employer-admin\"\n                                },\n                                \"original_role\": {\n                                    \"id\": 4,\n                                    \"display_name\": \"Employer Admin\",\n                                    \"name\": \"employer-admin\"\n                                },\n                                \"sub\": null,\n                                \"read_privacy\": 0,\n                                \"hasAsset\": false,\n                                \"status\": \"Accepted\",\n                                \"display_name\": \"John Doe\",\n                                \"is_deactivated\": false\n                            },\n                            \"name\": \"John Doe\",\n                            \"department\": {\n                                \"id\": 19448,\n                                \"employer_id\": 490,\n                                \"name\": \"IT\",\n                                \"rent_budget\": 10000,\n                                \"purchase_budget\": 10000,\n                                \"custom\": 0,\n                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"employees_count\": 3,\n                                \"budget_type\": \"fixed\",\n                                \"budgets\": [\n                                    {\n                                        \"id\": 8909,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"purchase\"\n                                    },\n                                    {\n                                        \"id\": 8910,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"rental\"\n                                    }\n                                ],\n                                \"auto_approve_orders\": true,\n                                \"auto_offboarding\": false,\n                                \"user_id\": null\n                            },\n                            \"employer\": {\n                                \"id\": 490,\n                                \"company_name\": \"John Test\",\n                                \"city\": null,\n                                \"total_employees\": 11,\n                                \"address_line_1\": null,\n                                \"warehouse_storage_code\": null,\n                                \"postcode\": null,\n                                \"catalog_id\": 801,\n                                \"currency_id\": 2,\n                                \"message\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                \"synced_asset\": 1,\n                                \"org_id\": null,\n                                \"announcement\": 0,\n                                \"total_orders\": 12,\n                                \"account_type\": \"sales_demo\",\n                                \"total_pending_requests\": 2\n                            },\n                            \"currency\": {\n                                \"id\": 2,\n                                \"icon\": \"€\",\n                                \"name\": \"EUR\",\n                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                            },\n                            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"entity\": null,\n                            \"invitation_accepted\": true,\n                            \"status\": \"added\",\n                            \"balances\": [\n                                {\n                                    \"id\": 249332,\n                                    \"budget_id\": 8909,\n                                    \"bugdet_balance_type\": \"purchase\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                },\n                                {\n                                    \"id\": 249333,\n                                    \"budget_id\": 8910,\n                                    \"bugdet_balance_type\": \"rental\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                }\n                            ],\n                            \"address\": null,\n                            \"employment_start_date\": null,\n                            \"employment_end_date\": null,\n                            \"tax_identification_number\": null\n                        },\n                        \"email\": \"John@goworkwize.com\",\n                        \"personal_email\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                        \"role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"original_role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"sub\": null,\n                        \"read_privacy\": 0,\n                        \"hasAsset\": false,\n                        \"status\": \"Accepted\",\n                        \"display_name\": \"John Doe\",\n                        \"is_deactivated\": false\n                    },\n                    \"name\": \"John Doe\",\n                    \"department\": {\n                        \"id\": 19448,\n                        \"employer_id\": 490,\n                        \"name\": \"IT\",\n                        \"rent_budget\": 10000,\n                        \"purchase_budget\": 10000,\n                        \"custom\": 0,\n                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"employees_count\": 3,\n                        \"budget_type\": \"fixed\",\n                        \"budgets\": [\n                            {\n                                \"id\": 8909,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"purchase\"\n                            },\n                            {\n                                \"id\": 8910,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"rental\"\n                            }\n                        ],\n                        \"auto_approve_orders\": true,\n                        \"auto_offboarding\": false,\n                        \"user_id\": null\n                    },\n                    \"employer\": {\n                        \"id\": 490,\n                        \"company_name\": \"John Test\",\n                        \"city\": null,\n                        \"total_employees\": 11,\n                        \"address_line_1\": null,\n                        \"warehouse_storage_code\": null,\n                        \"postcode\": null,\n                        \"catalog_id\": 801,\n                        \"currency_id\": 2,\n                        \"message\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                        \"synced_asset\": 1,\n                        \"org_id\": null,\n                        \"announcement\": 0,\n                        \"total_orders\": 12,\n                        \"account_type\": \"sales_demo\",\n                        \"total_pending_requests\": 2\n                    },\n                    \"currency\": {\n                        \"id\": 2,\n                        \"icon\": \"€\",\n                        \"name\": \"EUR\",\n                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                    },\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"entity\": null,\n                    \"invitation_accepted\": true,\n                    \"status\": \"added\",\n                    \"balances\": [\n                        {\n                            \"id\": 249332,\n                            \"budget_id\": 8909,\n                            \"bugdet_balance_type\": \"purchase\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        },\n                        {\n                            \"id\": 249333,\n                            \"budget_id\": 8910,\n                            \"bugdet_balance_type\": \"rental\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        }\n                    ],\n                    \"address\": null,\n                    \"employment_start_date\": null,\n                    \"employment_end_date\": null,\n                    \"tax_identification_number\": null\n                },\n                \"email\": \"John@goworkwize.com\",\n                \"personal_email\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                \"role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"original_role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"sub\": null,\n                \"read_privacy\": 0,\n                \"hasAsset\": false,\n                \"status\": \"Accepted\",\n                \"display_name\": \"John Doe\",\n                \"is_deactivated\": false\n            },\n            \"address\": {\n                \"id\": 136669,\n                \"city\": \"Washington\",\n                \"country\": {\n                    \"id\": 46,\n                    \"name\": \"United States\",\n                    \"code\": \"US\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 46,\n                \"address_line_1\": \"1600 Pennsylvania Avenue\",\n                \"address_line_2\": \"\",\n                \"region\": \"Dc\",\n                \"postcode\": \"20500\",\n                \"postal_code\": \"20500\",\n                \"additional_address_line\": \"\",\n                \"name\": \"Michael\",\n                \"first_name\": \"Michael\",\n                \"last_name\": \"Johnson\",\n                \"email\": \"michael.johnson@example.com\",\n                \"phone_number\": \"+1 212-555-1234\"\n            }\n        },\n        {\n            \"id\": 27646,\n            \"name\": \"São Paulo Office\",\n            \"employer_id\": 490,\n            \"manager_id\": 139558,\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"manager\": {\n                \"id\": 139558,\n                \"name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"phone_number\": \"11111111111\",\n                \"personal_phone_number\": null,\n                \"invite\": {\n                    \"id\": 83079,\n                    \"email\": \"John@goworkwize.com\",\n                    \"status\": \"Accepted\",\n                    \"department_id\": null,\n                    \"invitee_role_id\": 4,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"John Test\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"settings\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Sort By Suppliers\",\n                            \"slug\": \"sort-by-suppliers\",\n                            \"description\": \"\",\n                            \"order_by\": \"asc\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Perks\",\n                            \"slug\": \"perks\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 3,\n                            \"name\": \"Return Product\",\n                            \"slug\": \"return-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 7,\n                            \"name\": \"Cancel Product\",\n                            \"slug\": \"cancel-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 8,\n                            \"name\": \"Offboard Employee\",\n                            \"slug\": \"offboard-employee\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 9,\n                            \"name\": \"Generate Token\",\n                            \"slug\": \"generate-token\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 11,\n                            \"name\": \"Warehouse\",\n                            \"slug\": \"warehouse\",\n                            \"description\": \"Warehouse Features\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"name\": \"Automations\",\n                            \"slug\": \"automations\",\n                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                        },\n                        {\n                            \"id\": 13,\n                            \"name\": \"Decommission\",\n                            \"slug\": \"decommission_feature\",\n                            \"description\": \"Decommission feature for employers\"\n                        }\n                    ],\n                    \"total_orders\": 12,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"employee\": {\n                    \"id\": 137077,\n                    \"available_rent_budget\": 10000,\n                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"total_rent_budget\": 10000,\n                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_rent_budget\": 10000,\n                    \"available_purchase_budget\": 9999,\n                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                    \"total_purchase_budget\": 10000,\n                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_purchase_budget\": 9999,\n                    \"department_id\": 19448,\n                    \"manual_sync\": false,\n                    \"user\": {\n                        \"id\": 139558,\n                        \"name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"phone_number\": \"11111111111\",\n                        \"personal_phone_number\": null,\n                        \"invite\": {\n                            \"id\": 83079,\n                            \"email\": \"John@goworkwize.com\",\n                            \"status\": \"Accepted\",\n                            \"department_id\": null,\n                            \"invitee_role_id\": 4,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                        },\n                        \"employer\": {\n                            \"id\": 490,\n                            \"company_name\": \"John Test\",\n                            \"city\": null,\n                            \"total_employees\": 11,\n                            \"address_line_1\": null,\n                            \"warehouse_storage_code\": null,\n                            \"postcode\": null,\n                            \"catalog_id\": 801,\n                            \"currency_id\": 2,\n                            \"message\": null,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                            \"synced_asset\": 1,\n                            \"org_id\": null,\n                            \"announcement\": 0,\n                            \"settings\": [\n                                {\n                                    \"id\": 1,\n                                    \"name\": \"Sort By Suppliers\",\n                                    \"slug\": \"sort-by-suppliers\",\n                                    \"description\": \"\",\n                                    \"order_by\": \"asc\"\n                                },\n                                {\n                                    \"id\": 2,\n                                    \"name\": \"Perks\",\n                                    \"slug\": \"perks\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 3,\n                                    \"name\": \"Return Product\",\n                                    \"slug\": \"return-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 7,\n                                    \"name\": \"Cancel Product\",\n                                    \"slug\": \"cancel-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"Offboard Employee\",\n                                    \"slug\": \"offboard-employee\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"Generate Token\",\n                                    \"slug\": \"generate-token\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 11,\n                                    \"name\": \"Warehouse\",\n                                    \"slug\": \"warehouse\",\n                                    \"description\": \"Warehouse Features\"\n                                },\n                                {\n                                    \"id\": 12,\n                                    \"name\": \"Automations\",\n                                    \"slug\": \"automations\",\n                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                },\n                                {\n                                    \"id\": 13,\n                                    \"name\": \"Decommission\",\n                                    \"slug\": \"decommission_feature\",\n                                    \"description\": \"Decommission feature for employers\"\n                                }\n                            ],\n                            \"total_orders\": 12,\n                            \"account_type\": \"sales_demo\",\n                            \"total_pending_requests\": 2\n                        },\n                        \"employee\": {\n                            \"id\": 137077,\n                            \"available_rent_budget\": 10000,\n                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"total_rent_budget\": 10000,\n                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_rent_budget\": 10000,\n                            \"available_purchase_budget\": 9999,\n                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                            \"total_purchase_budget\": 10000,\n                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_purchase_budget\": 9999,\n                            \"department_id\": 19448,\n                            \"manual_sync\": false,\n                            \"user\": {\n                                \"id\": 139558,\n                                \"name\": \"John\",\n                                \"last_name\": \"Doe\",\n                                \"phone_number\": \"11111111111\",\n                                \"personal_phone_number\": null,\n                                \"invite\": {\n                                    \"id\": 83079,\n                                    \"email\": \"John@goworkwize.com\",\n                                    \"status\": \"Accepted\",\n                                    \"department_id\": null,\n                                    \"invitee_role_id\": 4,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                                },\n                                \"employer\": {\n                                    \"id\": 490,\n                                    \"company_name\": \"John Test\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 801,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"settings\": [\n                                        {\n                                            \"id\": 1,\n                                            \"name\": \"Sort By Suppliers\",\n                                            \"slug\": \"sort-by-suppliers\",\n                                            \"description\": \"\",\n                                            \"order_by\": \"asc\"\n                                        },\n                                        {\n                                            \"id\": 2,\n                                            \"name\": \"Perks\",\n                                            \"slug\": \"perks\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 3,\n                                            \"name\": \"Return Product\",\n                                            \"slug\": \"return-product\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 7,\n                                            \"name\": \"Cancel Product\",\n                                            \"slug\": \"cancel-product\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 8,\n                                            \"name\": \"Offboard Employee\",\n                                            \"slug\": \"offboard-employee\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 9,\n                                            \"name\": \"Generate Token\",\n                                            \"slug\": \"generate-token\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 11,\n                                            \"name\": \"Warehouse\",\n                                            \"slug\": \"warehouse\",\n                                            \"description\": \"Warehouse Features\"\n                                        },\n                                        {\n                                            \"id\": 12,\n                                            \"name\": \"Automations\",\n                                            \"slug\": \"automations\",\n                                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                                        },\n                                        {\n                                            \"id\": 13,\n                                            \"name\": \"Decommission\",\n                                            \"slug\": \"decommission_feature\",\n                                            \"description\": \"Decommission feature for employers\"\n                                        }\n                                    ],\n                                    \"total_orders\": 12,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"employee\": {\n                                    \"id\": 137077,\n                                    \"available_rent_budget\": 10000,\n                                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_rent_budget\": 10000,\n                                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_rent_budget\": 10000,\n                                    \"available_purchase_budget\": 9999,\n                                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                    \"total_purchase_budget\": 10000,\n                                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_purchase_budget\": 9999,\n                                    \"department_id\": 19448,\n                                    \"manual_sync\": false,\n                                    \"user\": {\n                                        \"id\": 139558,\n                                        \"name\": \"John\",\n                                        \"last_name\": \"Doe\",\n                                        \"phone_number\": \"11111111111\",\n                                        \"personal_phone_number\": null,\n                                        \"invite\": {\n                                            \"id\": 83079,\n                                            \"email\": \"John@goworkwize.com\",\n                                            \"status\": \"Accepted\",\n                                            \"department_id\": null,\n                                            \"invitee_role_id\": 4,\n                                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                            \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                                        },\n                                        \"employer\": {\n                                            \"id\": 490,\n                                            \"company_name\": \"John Test\",\n                                            \"city\": null,\n                                            \"total_employees\": 11,\n                                            \"address_line_1\": null,\n                                            \"warehouse_storage_code\": null,\n                                            \"postcode\": null,\n                                            \"catalog_id\": 801,\n                                            \"currency_id\": 2,\n                                            \"message\": null,\n                                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                            \"synced_asset\": 1,\n                                            \"org_id\": null,\n                                            \"announcement\": 0,\n                                            \"settings\": [\n                                                {\n                                                    \"id\": 1,\n                                                    \"name\": \"Sort By Suppliers\",\n                                                    \"slug\": \"sort-by-suppliers\",\n                                                    \"description\": \"\",\n                                                    \"order_by\": \"asc\"\n                                                },\n                                                {\n                                                    \"id\": 2,\n                                                    \"name\": \"Perks\",\n                                                    \"slug\": \"perks\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 3,\n                                                    \"name\": \"Return Product\",\n                                                    \"slug\": \"return-product\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 7,\n                                                    \"name\": \"Cancel Product\",\n                                                    \"slug\": \"cancel-product\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 8,\n                                                    \"name\": \"Offboard Employee\",\n                                                    \"slug\": \"offboard-employee\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 9,\n                                                    \"name\": \"Generate Token\",\n                                                    \"slug\": \"generate-token\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 11,\n                                                    \"name\": \"Warehouse\",\n                                                    \"slug\": \"warehouse\",\n                                                    \"description\": \"Warehouse Features\"\n                                                },\n                                                {\n                                                    \"id\": 12,\n                                                    \"name\": \"Automations\",\n                                                    \"slug\": \"automations\",\n                                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                                },\n                                                {\n                                                    \"id\": 13,\n                                                    \"name\": \"Decommission\",\n                                                    \"slug\": \"decommission_feature\",\n                                                    \"description\": \"Decommission feature for employers\"\n                                                }\n                                            ],\n                                            \"total_orders\": 12,\n                                            \"account_type\": \"sales_demo\",\n                                            \"total_pending_requests\": 2\n                                        },\n                                        \"employee\": {\n                                            \"id\": 137077,\n                                            \"available_rent_budget\": 10000,\n                                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                            \"total_rent_budget\": 10000,\n                                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                            \"negative_available_rent_budget\": 10000,\n                                            \"available_purchase_budget\": 9999,\n                                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                            \"total_purchase_budget\": 10000,\n                                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                            \"negative_available_purchase_budget\": 9999,\n                                            \"department_id\": 19448,\n                                            \"manual_sync\": false,\n                                            \"department\": {\n                                                \"id\": 19448,\n                                                \"employer_id\": 490,\n                                                \"name\": \"IT\",\n                                                \"rent_budget\": 10000,\n                                                \"purchase_budget\": 10000,\n                                                \"custom\": 0,\n                                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                \"employees_count\": 3,\n                                                \"budget_type\": \"fixed\",\n                                                \"budgets\": [\n                                                    {\n                                                        \"id\": 8909,\n                                                        \"name\": null,\n                                                        \"icon\": null,\n                                                        \"amount\": 10000,\n                                                        \"formatted_amount\": \"€ 10000.00\",\n                                                        \"currency\": \"EUR\",\n                                                        \"type\": \"purchase\"\n                                                    },\n                                                    {\n                                                        \"id\": 8910,\n                                                        \"name\": null,\n                                                        \"icon\": null,\n                                                        \"amount\": 10000,\n                                                        \"formatted_amount\": \"€ 10000.00\",\n                                                        \"currency\": \"EUR\",\n                                                        \"type\": \"rental\"\n                                                    }\n                                                ],\n                                                \"auto_approve_orders\": true,\n                                                \"auto_offboarding\": false,\n                                                \"user_id\": null\n                                            },\n                                            \"employer\": {\n                                                \"id\": 490,\n                                                \"company_name\": \"John Test\",\n                                                \"city\": null,\n                                                \"total_employees\": 11,\n                                                \"address_line_1\": null,\n                                                \"warehouse_storage_code\": null,\n                                                \"postcode\": null,\n                                                \"catalog_id\": 801,\n                                                \"currency_id\": 2,\n                                                \"message\": null,\n                                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                                \"synced_asset\": 1,\n                                                \"org_id\": null,\n                                                \"announcement\": 0,\n                                                \"total_orders\": 12,\n                                                \"account_type\": \"sales_demo\",\n                                                \"total_pending_requests\": 2\n                                            },\n                                            \"currency\": {\n                                                \"id\": 2,\n                                                \"icon\": \"€\",\n                                                \"name\": \"EUR\",\n                                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                            },\n                                            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                            \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                            \"entity\": null,\n                                            \"invitation_accepted\": true,\n                                            \"status\": \"added\",\n                                            \"balances\": [\n                                                {\n                                                    \"id\": 249332,\n                                                    \"budget_id\": 8909,\n                                                    \"bugdet_balance_type\": \"purchase\",\n                                                    \"available_balance\": 10000,\n                                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                                },\n                                                {\n                                                    \"id\": 249333,\n                                                    \"budget_id\": 8910,\n                                                    \"bugdet_balance_type\": \"rental\",\n                                                    \"available_balance\": 10000,\n                                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                                }\n                                            ],\n                                            \"address\": null,\n                                            \"employment_start_date\": null,\n                                            \"employment_end_date\": null,\n                                            \"tax_identification_number\": null\n                                        },\n                                        \"email\": \"John@goworkwize.com\",\n                                        \"personal_email\": null,\n                                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                                        \"role\": {\n                                            \"id\": 4,\n                                            \"display_name\": \"Employer Admin\",\n                                            \"name\": \"employer-admin\"\n                                        },\n                                        \"original_role\": {\n                                            \"id\": 4,\n                                            \"display_name\": \"Employer Admin\",\n                                            \"name\": \"employer-admin\"\n                                        },\n                                        \"sub\": null,\n                                        \"read_privacy\": 0,\n                                        \"hasAsset\": false,\n                                        \"status\": \"Accepted\",\n                                        \"display_name\": \"John Doe\",\n                                        \"is_deactivated\": false\n                                    },\n                                    \"name\": \"John Doe\",\n                                    \"department\": {\n                                        \"id\": 19448,\n                                        \"employer_id\": 490,\n                                        \"name\": \"IT\",\n                                        \"rent_budget\": 10000,\n                                        \"purchase_budget\": 10000,\n                                        \"custom\": 0,\n                                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                        \"employees_count\": 3,\n                                        \"budget_type\": \"fixed\",\n                                        \"budgets\": [\n                                            {\n                                                \"id\": 8909,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"purchase\"\n                                            },\n                                            {\n                                                \"id\": 8910,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"rental\"\n                                            }\n                                        ],\n                                        \"auto_approve_orders\": true,\n                                        \"auto_offboarding\": false,\n                                        \"user_id\": null\n                                    },\n                                    \"employer\": {\n                                        \"id\": 490,\n                                        \"company_name\": \"John Test\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 801,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 12,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"currency\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                    \"entity\": null,\n                                    \"invitation_accepted\": true,\n                                    \"status\": \"added\",\n                                    \"balances\": [\n                                        {\n                                            \"id\": 249332,\n                                            \"budget_id\": 8909,\n                                            \"bugdet_balance_type\": \"purchase\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        },\n                                        {\n                                            \"id\": 249333,\n                                            \"budget_id\": 8910,\n                                            \"bugdet_balance_type\": \"rental\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        }\n                                    ],\n                                    \"address\": null,\n                                    \"employment_start_date\": null,\n                                    \"employment_end_date\": null,\n                                    \"tax_identification_number\": null\n                                },\n                                \"email\": \"John@goworkwize.com\",\n                                \"personal_email\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                                \"role\": {\n                                    \"id\": 4,\n                                    \"display_name\": \"Employer Admin\",\n                                    \"name\": \"employer-admin\"\n                                },\n                                \"original_role\": {\n                                    \"id\": 4,\n                                    \"display_name\": \"Employer Admin\",\n                                    \"name\": \"employer-admin\"\n                                },\n                                \"sub\": null,\n                                \"read_privacy\": 0,\n                                \"hasAsset\": false,\n                                \"status\": \"Accepted\",\n                                \"display_name\": \"John Doe\",\n                                \"is_deactivated\": false\n                            },\n                            \"name\": \"John Doe\",\n                            \"department\": {\n                                \"id\": 19448,\n                                \"employer_id\": 490,\n                                \"name\": \"IT\",\n                                \"rent_budget\": 10000,\n                                \"purchase_budget\": 10000,\n                                \"custom\": 0,\n                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"employees_count\": 3,\n                                \"budget_type\": \"fixed\",\n                                \"budgets\": [\n                                    {\n                                        \"id\": 8909,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"purchase\"\n                                    },\n                                    {\n                                        \"id\": 8910,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"rental\"\n                                    }\n                                ],\n                                \"auto_approve_orders\": true,\n                                \"auto_offboarding\": false,\n                                \"user_id\": null\n                            },\n                            \"employer\": {\n                                \"id\": 490,\n                                \"company_name\": \"John Test\",\n                                \"city\": null,\n                                \"total_employees\": 11,\n                                \"address_line_1\": null,\n                                \"warehouse_storage_code\": null,\n                                \"postcode\": null,\n                                \"catalog_id\": 801,\n                                \"currency_id\": 2,\n                                \"message\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                \"synced_asset\": 1,\n                                \"org_id\": null,\n                                \"announcement\": 0,\n                                \"total_orders\": 12,\n                                \"account_type\": \"sales_demo\",\n                                \"total_pending_requests\": 2\n                            },\n                            \"currency\": {\n                                \"id\": 2,\n                                \"icon\": \"€\",\n                                \"name\": \"EUR\",\n                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                            },\n                            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"entity\": null,\n                            \"invitation_accepted\": true,\n                            \"status\": \"added\",\n                            \"balances\": [\n                                {\n                                    \"id\": 249332,\n                                    \"budget_id\": 8909,\n                                    \"bugdet_balance_type\": \"purchase\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                },\n                                {\n                                    \"id\": 249333,\n                                    \"budget_id\": 8910,\n                                    \"bugdet_balance_type\": \"rental\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                }\n                            ],\n                            \"address\": null,\n                            \"employment_start_date\": null,\n                            \"employment_end_date\": null,\n                            \"tax_identification_number\": null\n                        },\n                        \"email\": \"John@goworkwize.com\",\n                        \"personal_email\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                        \"role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"original_role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"sub\": null,\n                        \"read_privacy\": 0,\n                        \"hasAsset\": false,\n                        \"status\": \"Accepted\",\n                        \"display_name\": \"John Doe\",\n                        \"is_deactivated\": false\n                    },\n                    \"name\": \"John Doe\",\n                    \"department\": {\n                        \"id\": 19448,\n                        \"employer_id\": 490,\n                        \"name\": \"IT\",\n                        \"rent_budget\": 10000,\n                        \"purchase_budget\": 10000,\n                        \"custom\": 0,\n                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"employees_count\": 3,\n                        \"budget_type\": \"fixed\",\n                        \"budgets\": [\n                            {\n                                \"id\": 8909,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"purchase\"\n                            },\n                            {\n                                \"id\": 8910,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"rental\"\n                            }\n                        ],\n                        \"auto_approve_orders\": true,\n                        \"auto_offboarding\": false,\n                        \"user_id\": null\n                    },\n                    \"employer\": {\n                        \"id\": 490,\n                        \"company_name\": \"John Test\",\n                        \"city\": null,\n                        \"total_employees\": 11,\n                        \"address_line_1\": null,\n                        \"warehouse_storage_code\": null,\n                        \"postcode\": null,\n                        \"catalog_id\": 801,\n                        \"currency_id\": 2,\n                        \"message\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                        \"synced_asset\": 1,\n                        \"org_id\": null,\n                        \"announcement\": 0,\n                        \"total_orders\": 12,\n                        \"account_type\": \"sales_demo\",\n                        \"total_pending_requests\": 2\n                    },\n                    \"currency\": {\n                        \"id\": 2,\n                        \"icon\": \"€\",\n                        \"name\": \"EUR\",\n                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                    },\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"entity\": null,\n                    \"invitation_accepted\": true,\n                    \"status\": \"added\",\n                    \"balances\": [\n                        {\n                            \"id\": 249332,\n                            \"budget_id\": 8909,\n                            \"bugdet_balance_type\": \"purchase\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        },\n                        {\n                            \"id\": 249333,\n                            \"budget_id\": 8910,\n                            \"bugdet_balance_type\": \"rental\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        }\n                    ],\n                    \"address\": null,\n                    \"employment_start_date\": null,\n                    \"employment_end_date\": null,\n                    \"tax_identification_number\": null\n                },\n                \"email\": \"John@goworkwize.com\",\n                \"personal_email\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                \"role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"original_role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"sub\": null,\n                \"read_privacy\": 0,\n                \"hasAsset\": false,\n                \"status\": \"Accepted\",\n                \"display_name\": \"John Doe\",\n                \"is_deactivated\": false\n            },\n            \"address\": {\n                \"id\": 136670,\n                \"city\": \"São Paulo\",\n                \"country\": {\n                    \"id\": 273,\n                    \"name\": \"Brazil\",\n                    \"code\": \"BR\",\n                    \"requires_tin\": true\n                },\n                \"company_name\": null,\n                \"country_id\": 273,\n                \"address_line_1\": \"Avenida Paulista, 1000\",\n                \"address_line_2\": \"Apt 101\",\n                \"region\": \"Sp\",\n                \"postcode\": \"01310-000\",\n                \"postal_code\": \"01310-000\",\n                \"additional_address_line\": \"\",\n                \"name\": \"Carlos\",\n                \"first_name\": \"Carlos\",\n                \"last_name\": \"Silva\",\n                \"email\": \"carlos.silva@example.com.br\",\n                \"phone_number\": \"+55 11-98765-4321\"\n            }\n        },\n        {\n            \"id\": 27647,\n            \"name\": \"Tokyo Office\",\n            \"employer_id\": 490,\n            \"manager_id\": 139558,\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"manager\": {\n                \"id\": 139558,\n                \"name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"phone_number\": \"11111111111\",\n                \"personal_phone_number\": null,\n                \"invite\": {\n                    \"id\": 83079,\n                    \"email\": \"John@goworkwize.com\",\n                    \"status\": \"Accepted\",\n                    \"department_id\": null,\n                    \"invitee_role_id\": 4,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"John Test\",\n                    \"city\": null,\n                    \"total_employees\": 11,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"settings\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Sort By Suppliers\",\n                            \"slug\": \"sort-by-suppliers\",\n                            \"description\": \"\",\n                            \"order_by\": \"asc\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Perks\",\n                            \"slug\": \"perks\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 3,\n                            \"name\": \"Return Product\",\n                            \"slug\": \"return-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 7,\n                            \"name\": \"Cancel Product\",\n                            \"slug\": \"cancel-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 8,\n                            \"name\": \"Offboard Employee\",\n                            \"slug\": \"offboard-employee\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 9,\n                            \"name\": \"Generate Token\",\n                            \"slug\": \"generate-token\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 11,\n                            \"name\": \"Warehouse\",\n                            \"slug\": \"warehouse\",\n                            \"description\": \"Warehouse Features\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"name\": \"Automations\",\n                            \"slug\": \"automations\",\n                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                        },\n                        {\n                            \"id\": 13,\n                            \"name\": \"Decommission\",\n                            \"slug\": \"decommission_feature\",\n                            \"description\": \"Decommission feature for employers\"\n                        }\n                    ],\n                    \"total_orders\": 12,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"employee\": {\n                    \"id\": 137077,\n                    \"available_rent_budget\": 10000,\n                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"total_rent_budget\": 10000,\n                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_rent_budget\": 10000,\n                    \"available_purchase_budget\": 9999,\n                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                    \"total_purchase_budget\": 10000,\n                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_purchase_budget\": 9999,\n                    \"department_id\": 19448,\n                    \"manual_sync\": false,\n                    \"user\": {\n                        \"id\": 139558,\n                        \"name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"phone_number\": \"11111111111\",\n                        \"personal_phone_number\": null,\n                        \"invite\": {\n                            \"id\": 83079,\n                            \"email\": \"John@goworkwize.com\",\n                            \"status\": \"Accepted\",\n                            \"department_id\": null,\n                            \"invitee_role_id\": 4,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                        },\n                        \"employer\": {\n                            \"id\": 490,\n                            \"company_name\": \"John Test\",\n                            \"city\": null,\n                            \"total_employees\": 11,\n                            \"address_line_1\": null,\n                            \"warehouse_storage_code\": null,\n                            \"postcode\": null,\n                            \"catalog_id\": 801,\n                            \"currency_id\": 2,\n                            \"message\": null,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                            \"synced_asset\": 1,\n                            \"org_id\": null,\n                            \"announcement\": 0,\n                            \"settings\": [\n                                {\n                                    \"id\": 1,\n                                    \"name\": \"Sort By Suppliers\",\n                                    \"slug\": \"sort-by-suppliers\",\n                                    \"description\": \"\",\n                                    \"order_by\": \"asc\"\n                                },\n                                {\n                                    \"id\": 2,\n                                    \"name\": \"Perks\",\n                                    \"slug\": \"perks\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 3,\n                                    \"name\": \"Return Product\",\n                                    \"slug\": \"return-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 7,\n                                    \"name\": \"Cancel Product\",\n                                    \"slug\": \"cancel-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"Offboard Employee\",\n                                    \"slug\": \"offboard-employee\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"Generate Token\",\n                                    \"slug\": \"generate-token\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 11,\n                                    \"name\": \"Warehouse\",\n                                    \"slug\": \"warehouse\",\n                                    \"description\": \"Warehouse Features\"\n                                },\n                                {\n                                    \"id\": 12,\n                                    \"name\": \"Automations\",\n                                    \"slug\": \"automations\",\n                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                },\n                                {\n                                    \"id\": 13,\n                                    \"name\": \"Decommission\",\n                                    \"slug\": \"decommission_feature\",\n                                    \"description\": \"Decommission feature for employers\"\n                                }\n                            ],\n                            \"total_orders\": 12,\n                            \"account_type\": \"sales_demo\",\n                            \"total_pending_requests\": 2\n                        },\n                        \"employee\": {\n                            \"id\": 137077,\n                            \"available_rent_budget\": 10000,\n                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"total_rent_budget\": 10000,\n                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_rent_budget\": 10000,\n                            \"available_purchase_budget\": 9999,\n                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                            \"total_purchase_budget\": 10000,\n                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_purchase_budget\": 9999,\n                            \"department_id\": 19448,\n                            \"manual_sync\": false,\n                            \"user\": {\n                                \"id\": 139558,\n                                \"name\": \"John\",\n                                \"last_name\": \"Doe\",\n                                \"phone_number\": \"11111111111\",\n                                \"personal_phone_number\": null,\n                                \"invite\": {\n                                    \"id\": 83079,\n                                    \"email\": \"John@goworkwize.com\",\n                                    \"status\": \"Accepted\",\n                                    \"department_id\": null,\n                                    \"invitee_role_id\": 4,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                                },\n                                \"employer\": {\n                                    \"id\": 490,\n                                    \"company_name\": \"John Test\",\n                                    \"city\": null,\n                                    \"total_employees\": 11,\n                                    \"address_line_1\": null,\n                                    \"warehouse_storage_code\": null,\n                                    \"postcode\": null,\n                                    \"catalog_id\": 801,\n                                    \"currency_id\": 2,\n                                    \"message\": null,\n                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                    \"synced_asset\": 1,\n                                    \"org_id\": null,\n                                    \"announcement\": 0,\n                                    \"settings\": [\n                                        {\n                                            \"id\": 1,\n                                            \"name\": \"Sort By Suppliers\",\n                                            \"slug\": \"sort-by-suppliers\",\n                                            \"description\": \"\",\n                                            \"order_by\": \"asc\"\n                                        },\n                                        {\n                                            \"id\": 2,\n                                            \"name\": \"Perks\",\n                                            \"slug\": \"perks\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 3,\n                                            \"name\": \"Return Product\",\n                                            \"slug\": \"return-product\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 7,\n                                            \"name\": \"Cancel Product\",\n                                            \"slug\": \"cancel-product\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 8,\n                                            \"name\": \"Offboard Employee\",\n                                            \"slug\": \"offboard-employee\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 9,\n                                            \"name\": \"Generate Token\",\n                                            \"slug\": \"generate-token\",\n                                            \"description\": \"\"\n                                        },\n                                        {\n                                            \"id\": 11,\n                                            \"name\": \"Warehouse\",\n                                            \"slug\": \"warehouse\",\n                                            \"description\": \"Warehouse Features\"\n                                        },\n                                        {\n                                            \"id\": 12,\n                                            \"name\": \"Automations\",\n                                            \"slug\": \"automations\",\n                                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                                        },\n                                        {\n                                            \"id\": 13,\n                                            \"name\": \"Decommission\",\n                                            \"slug\": \"decommission_feature\",\n                                            \"description\": \"Decommission feature for employers\"\n                                        }\n                                    ],\n                                    \"total_orders\": 12,\n                                    \"account_type\": \"sales_demo\",\n                                    \"total_pending_requests\": 2\n                                },\n                                \"employee\": {\n                                    \"id\": 137077,\n                                    \"available_rent_budget\": 10000,\n                                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"total_rent_budget\": 10000,\n                                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_rent_budget\": 10000,\n                                    \"available_purchase_budget\": 9999,\n                                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                    \"total_purchase_budget\": 10000,\n                                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                    \"negative_available_purchase_budget\": 9999,\n                                    \"department_id\": 19448,\n                                    \"manual_sync\": false,\n                                    \"user\": {\n                                        \"id\": 139558,\n                                        \"name\": \"John\",\n                                        \"last_name\": \"Doe\",\n                                        \"phone_number\": \"11111111111\",\n                                        \"personal_phone_number\": null,\n                                        \"invite\": {\n                                            \"id\": 83079,\n                                            \"email\": \"John@goworkwize.com\",\n                                            \"status\": \"Accepted\",\n                                            \"department_id\": null,\n                                            \"invitee_role_id\": 4,\n                                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                            \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                                        },\n                                        \"employer\": {\n                                            \"id\": 490,\n                                            \"company_name\": \"John Test\",\n                                            \"city\": null,\n                                            \"total_employees\": 11,\n                                            \"address_line_1\": null,\n                                            \"warehouse_storage_code\": null,\n                                            \"postcode\": null,\n                                            \"catalog_id\": 801,\n                                            \"currency_id\": 2,\n                                            \"message\": null,\n                                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                            \"synced_asset\": 1,\n                                            \"org_id\": null,\n                                            \"announcement\": 0,\n                                            \"settings\": [\n                                                {\n                                                    \"id\": 1,\n                                                    \"name\": \"Sort By Suppliers\",\n                                                    \"slug\": \"sort-by-suppliers\",\n                                                    \"description\": \"\",\n                                                    \"order_by\": \"asc\"\n                                                },\n                                                {\n                                                    \"id\": 2,\n                                                    \"name\": \"Perks\",\n                                                    \"slug\": \"perks\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 3,\n                                                    \"name\": \"Return Product\",\n                                                    \"slug\": \"return-product\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 7,\n                                                    \"name\": \"Cancel Product\",\n                                                    \"slug\": \"cancel-product\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 8,\n                                                    \"name\": \"Offboard Employee\",\n                                                    \"slug\": \"offboard-employee\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 9,\n                                                    \"name\": \"Generate Token\",\n                                                    \"slug\": \"generate-token\",\n                                                    \"description\": \"\"\n                                                },\n                                                {\n                                                    \"id\": 11,\n                                                    \"name\": \"Warehouse\",\n                                                    \"slug\": \"warehouse\",\n                                                    \"description\": \"Warehouse Features\"\n                                                },\n                                                {\n                                                    \"id\": 12,\n                                                    \"name\": \"Automations\",\n                                                    \"slug\": \"automations\",\n                                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                                },\n                                                {\n                                                    \"id\": 13,\n                                                    \"name\": \"Decommission\",\n                                                    \"slug\": \"decommission_feature\",\n                                                    \"description\": \"Decommission feature for employers\"\n                                                }\n                                            ],\n                                            \"total_orders\": 12,\n                                            \"account_type\": \"sales_demo\",\n                                            \"total_pending_requests\": 2\n                                        },\n                                        \"employee\": {\n                                            \"id\": 137077,\n                                            \"available_rent_budget\": 10000,\n                                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                            \"total_rent_budget\": 10000,\n                                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                            \"negative_available_rent_budget\": 10000,\n                                            \"available_purchase_budget\": 9999,\n                                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                            \"total_purchase_budget\": 10000,\n                                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                            \"negative_available_purchase_budget\": 9999,\n                                            \"department_id\": 19448,\n                                            \"manual_sync\": false,\n                                            \"user\": {\n                                                \"id\": 139558,\n                                                \"name\": \"John\",\n                                                \"last_name\": \"Doe\",\n                                                \"phone_number\": \"11111111111\",\n                                                \"personal_phone_number\": null,\n                                                \"invite\": {\n                                                    \"id\": 83079,\n                                                    \"email\": \"John@goworkwize.com\",\n                                                    \"status\": \"Accepted\",\n                                                    \"department_id\": null,\n                                                    \"invitee_role_id\": 4,\n                                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                                    \"updated_at\": \"2025-02-06T09:12:34.000000Z\"\n                                                },\n                                                \"employer\": {\n                                                    \"id\": 490,\n                                                    \"company_name\": \"John Test\",\n                                                    \"city\": null,\n                                                    \"total_employees\": 11,\n                                                    \"address_line_1\": null,\n                                                    \"warehouse_storage_code\": null,\n                                                    \"postcode\": null,\n                                                    \"catalog_id\": 801,\n                                                    \"currency_id\": 2,\n                                                    \"message\": null,\n                                                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                                    \"synced_asset\": 1,\n                                                    \"org_id\": null,\n                                                    \"announcement\": 0,\n                                                    \"settings\": [\n                                                        {\n                                                            \"id\": 1,\n                                                            \"name\": \"Sort By Suppliers\",\n                                                            \"slug\": \"sort-by-suppliers\",\n                                                            \"description\": \"\",\n                                                            \"order_by\": \"asc\"\n                                                        },\n                                                        {\n                                                            \"id\": 2,\n                                                            \"name\": \"Perks\",\n                                                            \"slug\": \"perks\",\n                                                            \"description\": \"\"\n                                                        },\n                                                        {\n                                                            \"id\": 3,\n                                                            \"name\": \"Return Product\",\n                                                            \"slug\": \"return-product\",\n                                                            \"description\": \"\"\n                                                        },\n                                                        {\n                                                            \"id\": 7,\n                                                            \"name\": \"Cancel Product\",\n                                                            \"slug\": \"cancel-product\",\n                                                            \"description\": \"\"\n                                                        },\n                                                        {\n                                                            \"id\": 8,\n                                                            \"name\": \"Offboard Employee\",\n                                                            \"slug\": \"offboard-employee\",\n                                                            \"description\": \"\"\n                                                        },\n                                                        {\n                                                            \"id\": 9,\n                                                            \"name\": \"Generate Token\",\n                                                            \"slug\": \"generate-token\",\n                                                            \"description\": \"\"\n                                                        },\n                                                        {\n                                                            \"id\": 11,\n                                                            \"name\": \"Warehouse\",\n                                                            \"slug\": \"warehouse\",\n                                                            \"description\": \"Warehouse Features\"\n                                                        },\n                                                        {\n                                                            \"id\": 12,\n                                                            \"name\": \"Automations\",\n                                                            \"slug\": \"automations\",\n                                                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                                                        },\n                                                        {\n                                                            \"id\": 13,\n                                                            \"name\": \"Decommission\",\n                                                            \"slug\": \"decommission_feature\",\n                                                            \"description\": \"Decommission feature for employers\"\n                                                        }\n                                                    ],\n                                                    \"total_orders\": 12,\n                                                    \"account_type\": \"sales_demo\",\n                                                    \"total_pending_requests\": 2\n                                                },\n                                                \"employee\": {\n                                                    \"id\": 137077,\n                                                    \"available_rent_budget\": 10000,\n                                                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                                                    \"total_rent_budget\": 10000,\n                                                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                                                    \"negative_available_rent_budget\": 10000,\n                                                    \"available_purchase_budget\": 9999,\n                                                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                                                    \"total_purchase_budget\": 10000,\n                                                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                                                    \"negative_available_purchase_budget\": 9999,\n                                                    \"department_id\": 19448,\n                                                    \"manual_sync\": false,\n                                                    \"department\": {\n                                                        \"id\": 19448,\n                                                        \"employer_id\": 490,\n                                                        \"name\": \"IT\",\n                                                        \"rent_budget\": 10000,\n                                                        \"purchase_budget\": 10000,\n                                                        \"custom\": 0,\n                                                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                        \"employees_count\": 3,\n                                                        \"budget_type\": \"fixed\",\n                                                        \"budgets\": [\n                                                            {\n                                                                \"id\": 8909,\n                                                                \"name\": null,\n                                                                \"icon\": null,\n                                                                \"amount\": 10000,\n                                                                \"formatted_amount\": \"€ 10000.00\",\n                                                                \"currency\": \"EUR\",\n                                                                \"type\": \"purchase\"\n                                                            },\n                                                            {\n                                                                \"id\": 8910,\n                                                                \"name\": null,\n                                                                \"icon\": null,\n                                                                \"amount\": 10000,\n                                                                \"formatted_amount\": \"€ 10000.00\",\n                                                                \"currency\": \"EUR\",\n                                                                \"type\": \"rental\"\n                                                            }\n                                                        ],\n                                                        \"auto_approve_orders\": true,\n                                                        \"auto_offboarding\": false,\n                                                        \"user_id\": null\n                                                    },\n                                                    \"employer\": {\n                                                        \"id\": 490,\n                                                        \"company_name\": \"John Test\",\n                                                        \"city\": null,\n                                                        \"total_employees\": 11,\n                                                        \"address_line_1\": null,\n                                                        \"warehouse_storage_code\": null,\n                                                        \"postcode\": null,\n                                                        \"catalog_id\": 801,\n                                                        \"currency_id\": 2,\n                                                        \"message\": null,\n                                                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                                        \"synced_asset\": 1,\n                                                        \"org_id\": null,\n                                                        \"announcement\": 0,\n                                                        \"total_orders\": 12,\n                                                        \"account_type\": \"sales_demo\",\n                                                        \"total_pending_requests\": 2\n                                                    },\n                                                    \"currency\": {\n                                                        \"id\": 2,\n                                                        \"icon\": \"€\",\n                                                        \"name\": \"EUR\",\n                                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                                    },\n                                                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                    \"entity\": null,\n                                                    \"invitation_accepted\": true,\n                                                    \"status\": \"added\",\n                                                    \"balances\": [\n                                                        {\n                                                            \"id\": 249332,\n                                                            \"budget_id\": 8909,\n                                                            \"bugdet_balance_type\": \"purchase\",\n                                                            \"available_balance\": 10000,\n                                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                                        },\n                                                        {\n                                                            \"id\": 249333,\n                                                            \"budget_id\": 8910,\n                                                            \"bugdet_balance_type\": \"rental\",\n                                                            \"available_balance\": 10000,\n                                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                                        }\n                                                    ],\n                                                    \"address\": null,\n                                                    \"employment_start_date\": null,\n                                                    \"employment_end_date\": null,\n                                                    \"tax_identification_number\": null\n                                                },\n                                                \"email\": \"John@goworkwize.com\",\n                                                \"personal_email\": null,\n                                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                                                \"role\": {\n                                                    \"id\": 4,\n                                                    \"display_name\": \"Employer Admin\",\n                                                    \"name\": \"employer-admin\"\n                                                },\n                                                \"original_role\": {\n                                                    \"id\": 4,\n                                                    \"display_name\": \"Employer Admin\",\n                                                    \"name\": \"employer-admin\"\n                                                },\n                                                \"sub\": null,\n                                                \"read_privacy\": 0,\n                                                \"hasAsset\": false,\n                                                \"status\": \"Accepted\",\n                                                \"display_name\": \"John Doe\",\n                                                \"is_deactivated\": false\n                                            },\n                                            \"name\": \"John Doe\",\n                                            \"department\": {\n                                                \"id\": 19448,\n                                                \"employer_id\": 490,\n                                                \"name\": \"IT\",\n                                                \"rent_budget\": 10000,\n                                                \"purchase_budget\": 10000,\n                                                \"custom\": 0,\n                                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                                \"employees_count\": 3,\n                                                \"budget_type\": \"fixed\",\n                                                \"budgets\": [\n                                                    {\n                                                        \"id\": 8909,\n                                                        \"name\": null,\n                                                        \"icon\": null,\n                                                        \"amount\": 10000,\n                                                        \"formatted_amount\": \"€ 10000.00\",\n                                                        \"currency\": \"EUR\",\n                                                        \"type\": \"purchase\"\n                                                    },\n                                                    {\n                                                        \"id\": 8910,\n                                                        \"name\": null,\n                                                        \"icon\": null,\n                                                        \"amount\": 10000,\n                                                        \"formatted_amount\": \"€ 10000.00\",\n                                                        \"currency\": \"EUR\",\n                                                        \"type\": \"rental\"\n                                                    }\n                                                ],\n                                                \"auto_approve_orders\": true,\n                                                \"auto_offboarding\": false,\n                                                \"user_id\": null\n                                            },\n                                            \"employer\": {\n                                                \"id\": 490,\n                                                \"company_name\": \"John Test\",\n                                                \"city\": null,\n                                                \"total_employees\": 11,\n                                                \"address_line_1\": null,\n                                                \"warehouse_storage_code\": null,\n                                                \"postcode\": null,\n                                                \"catalog_id\": 801,\n                                                \"currency_id\": 2,\n                                                \"message\": null,\n                                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                                \"synced_asset\": 1,\n                                                \"org_id\": null,\n                                                \"announcement\": 0,\n                                                \"total_orders\": 12,\n                                                \"account_type\": \"sales_demo\",\n                                                \"total_pending_requests\": 2\n                                            },\n                                            \"currency\": {\n                                                \"id\": 2,\n                                                \"icon\": \"€\",\n                                                \"name\": \"EUR\",\n                                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                            },\n                                            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                            \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                            \"entity\": null,\n                                            \"invitation_accepted\": true,\n                                            \"status\": \"added\",\n                                            \"balances\": [\n                                                {\n                                                    \"id\": 249332,\n                                                    \"budget_id\": 8909,\n                                                    \"bugdet_balance_type\": \"purchase\",\n                                                    \"available_balance\": 10000,\n                                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                                },\n                                                {\n                                                    \"id\": 249333,\n                                                    \"budget_id\": 8910,\n                                                    \"bugdet_balance_type\": \"rental\",\n                                                    \"available_balance\": 10000,\n                                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                                }\n                                            ],\n                                            \"address\": null,\n                                            \"employment_start_date\": null,\n                                            \"employment_end_date\": null,\n                                            \"tax_identification_number\": null\n                                        },\n                                        \"email\": \"John@goworkwize.com\",\n                                        \"personal_email\": null,\n                                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                                        \"role\": {\n                                            \"id\": 4,\n                                            \"display_name\": \"Employer Admin\",\n                                            \"name\": \"employer-admin\"\n                                        },\n                                        \"original_role\": {\n                                            \"id\": 4,\n                                            \"display_name\": \"Employer Admin\",\n                                            \"name\": \"employer-admin\"\n                                        },\n                                        \"sub\": null,\n                                        \"read_privacy\": 0,\n                                        \"hasAsset\": false,\n                                        \"status\": \"Accepted\",\n                                        \"display_name\": \"John Doe\",\n                                        \"is_deactivated\": false\n                                    },\n                                    \"name\": \"John Doe\",\n                                    \"department\": {\n                                        \"id\": 19448,\n                                        \"employer_id\": 490,\n                                        \"name\": \"IT\",\n                                        \"rent_budget\": 10000,\n                                        \"purchase_budget\": 10000,\n                                        \"custom\": 0,\n                                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                        \"employees_count\": 3,\n                                        \"budget_type\": \"fixed\",\n                                        \"budgets\": [\n                                            {\n                                                \"id\": 8909,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"purchase\"\n                                            },\n                                            {\n                                                \"id\": 8910,\n                                                \"name\": null,\n                                                \"icon\": null,\n                                                \"amount\": 10000,\n                                                \"formatted_amount\": \"€ 10000.00\",\n                                                \"currency\": \"EUR\",\n                                                \"type\": \"rental\"\n                                            }\n                                        ],\n                                        \"auto_approve_orders\": true,\n                                        \"auto_offboarding\": false,\n                                        \"user_id\": null\n                                    },\n                                    \"employer\": {\n                                        \"id\": 490,\n                                        \"company_name\": \"John Test\",\n                                        \"city\": null,\n                                        \"total_employees\": 11,\n                                        \"address_line_1\": null,\n                                        \"warehouse_storage_code\": null,\n                                        \"postcode\": null,\n                                        \"catalog_id\": 801,\n                                        \"currency_id\": 2,\n                                        \"message\": null,\n                                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                        \"synced_asset\": 1,\n                                        \"org_id\": null,\n                                        \"announcement\": 0,\n                                        \"total_orders\": 12,\n                                        \"account_type\": \"sales_demo\",\n                                        \"total_pending_requests\": 2\n                                    },\n                                    \"currency\": {\n                                        \"id\": 2,\n                                        \"icon\": \"€\",\n                                        \"name\": \"EUR\",\n                                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                                    },\n                                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                    \"entity\": null,\n                                    \"invitation_accepted\": true,\n                                    \"status\": \"added\",\n                                    \"balances\": [\n                                        {\n                                            \"id\": 249332,\n                                            \"budget_id\": 8909,\n                                            \"bugdet_balance_type\": \"purchase\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        },\n                                        {\n                                            \"id\": 249333,\n                                            \"budget_id\": 8910,\n                                            \"bugdet_balance_type\": \"rental\",\n                                            \"available_balance\": 10000,\n                                            \"formatted_available_balance\": \"€ 10000.00\"\n                                        }\n                                    ],\n                                    \"address\": null,\n                                    \"employment_start_date\": null,\n                                    \"employment_end_date\": null,\n                                    \"tax_identification_number\": null\n                                },\n                                \"email\": \"John@goworkwize.com\",\n                                \"personal_email\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                                \"role\": {\n                                    \"id\": 4,\n                                    \"display_name\": \"Employer Admin\",\n                                    \"name\": \"employer-admin\"\n                                },\n                                \"original_role\": {\n                                    \"id\": 4,\n                                    \"display_name\": \"Employer Admin\",\n                                    \"name\": \"employer-admin\"\n                                },\n                                \"sub\": null,\n                                \"read_privacy\": 0,\n                                \"hasAsset\": false,\n                                \"status\": \"Accepted\",\n                                \"display_name\": \"John Doe\",\n                                \"is_deactivated\": false\n                            },\n                            \"name\": \"John Doe\",\n                            \"department\": {\n                                \"id\": 19448,\n                                \"employer_id\": 490,\n                                \"name\": \"IT\",\n                                \"rent_budget\": 10000,\n                                \"purchase_budget\": 10000,\n                                \"custom\": 0,\n                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"employees_count\": 3,\n                                \"budget_type\": \"fixed\",\n                                \"budgets\": [\n                                    {\n                                        \"id\": 8909,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"purchase\"\n                                    },\n                                    {\n                                        \"id\": 8910,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"rental\"\n                                    }\n                                ],\n                                \"auto_approve_orders\": true,\n                                \"auto_offboarding\": false,\n                                \"user_id\": null\n                            },\n                            \"employer\": {\n                                \"id\": 490,\n                                \"company_name\": \"John Test\",\n                                \"city\": null,\n                                \"total_employees\": 11,\n                                \"address_line_1\": null,\n                                \"warehouse_storage_code\": null,\n                                \"postcode\": null,\n                                \"catalog_id\": 801,\n                                \"currency_id\": 2,\n                                \"message\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                \"synced_asset\": 1,\n                                \"org_id\": null,\n                                \"announcement\": 0,\n                                \"total_orders\": 12,\n                                \"account_type\": \"sales_demo\",\n                                \"total_pending_requests\": 2\n                            },\n                            \"currency\": {\n                                \"id\": 2,\n                                \"icon\": \"€\",\n                                \"name\": \"EUR\",\n                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                            },\n                            \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                            \"entity\": null,\n                            \"invitation_accepted\": true,\n                            \"status\": \"added\",\n                            \"balances\": [\n                                {\n                                    \"id\": 249332,\n                                    \"budget_id\": 8909,\n                                    \"bugdet_balance_type\": \"purchase\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                },\n                                {\n                                    \"id\": 249333,\n                                    \"budget_id\": 8910,\n                                    \"bugdet_balance_type\": \"rental\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                }\n                            ],\n                            \"address\": null,\n                            \"employment_start_date\": null,\n                            \"employment_end_date\": null,\n                            \"tax_identification_number\": null\n                        },\n                        \"email\": \"John@goworkwize.com\",\n                        \"personal_email\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                        \"role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"original_role\": {\n                            \"id\": 4,\n                            \"display_name\": \"Employer Admin\",\n                            \"name\": \"employer-admin\"\n                        },\n                        \"sub\": null,\n                        \"read_privacy\": 0,\n                        \"hasAsset\": false,\n                        \"status\": \"Accepted\",\n                        \"display_name\": \"John Doe\",\n                        \"is_deactivated\": false\n                    },\n                    \"name\": \"John Doe\",\n                    \"department\": {\n                        \"id\": 19448,\n                        \"employer_id\": 490,\n                        \"name\": \"IT\",\n                        \"rent_budget\": 10000,\n                        \"purchase_budget\": 10000,\n                        \"custom\": 0,\n                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"employees_count\": 3,\n                        \"budget_type\": \"fixed\",\n                        \"budgets\": [\n                            {\n                                \"id\": 8909,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"purchase\"\n                            },\n                            {\n                                \"id\": 8910,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"rental\"\n                            }\n                        ],\n                        \"auto_approve_orders\": true,\n                        \"auto_offboarding\": false,\n                        \"user_id\": null\n                    },\n                    \"employer\": {\n                        \"id\": 490,\n                        \"company_name\": \"John Test\",\n                        \"city\": null,\n                        \"total_employees\": 11,\n                        \"address_line_1\": null,\n                        \"warehouse_storage_code\": null,\n                        \"postcode\": null,\n                        \"catalog_id\": 801,\n                        \"currency_id\": 2,\n                        \"message\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                        \"synced_asset\": 1,\n                        \"org_id\": null,\n                        \"announcement\": 0,\n                        \"total_orders\": 12,\n                        \"account_type\": \"sales_demo\",\n                        \"total_pending_requests\": 2\n                    },\n                    \"currency\": {\n                        \"id\": 2,\n                        \"icon\": \"€\",\n                        \"name\": \"EUR\",\n                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                    },\n                    \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                    \"entity\": null,\n                    \"invitation_accepted\": true,\n                    \"status\": \"added\",\n                    \"balances\": [\n                        {\n                            \"id\": 249332,\n                            \"budget_id\": 8909,\n                            \"bugdet_balance_type\": \"purchase\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        },\n                        {\n                            \"id\": 249333,\n                            \"budget_id\": 8910,\n                            \"bugdet_balance_type\": \"rental\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        }\n                    ],\n                    \"address\": null,\n                    \"employment_start_date\": null,\n                    \"employment_end_date\": null,\n                    \"tax_identification_number\": null\n                },\n                \"email\": \"John@goworkwize.com\",\n                \"personal_email\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n                \"role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"original_role\": {\n                    \"id\": 4,\n                    \"display_name\": \"Employer Admin\",\n                    \"name\": \"employer-admin\"\n                },\n                \"sub\": null,\n                \"read_privacy\": 0,\n                \"hasAsset\": false,\n                \"status\": \"Accepted\",\n                \"display_name\": \"John Doe\",\n                \"is_deactivated\": false\n            },\n            \"address\": {\n                \"id\": 136671,\n                \"city\": \"Tokyo\",\n                \"country\": {\n                    \"id\": 336,\n                    \"name\": \"Japan\",\n                    \"code\": \"JP\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 336,\n                \"address_line_1\": \"1-1 Chiyoda\",\n                \"address_line_2\": \"\",\n                \"region\": \"Tokyo Metropolis\",\n                \"postcode\": \"100-0001\",\n                \"postal_code\": \"100-0001\",\n                \"additional_address_line\": \"\",\n                \"name\": \"Taro\",\n                \"first_name\": \"Taro\",\n                \"last_name\": \"Yamada\",\n                \"email\": \"taro.yamada@example.jp\",\n                \"phone_number\": \"+81 3-1234-5678\"\n            }\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://127.0.0.1:8000/api/public/offices?page=1\",\n        \"last\": \"http://127.0.0.1:8000/api/public/offices?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/offices?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://127.0.0.1:8000/api/public/offices\",\n        \"per_page\": 20,\n        \"to\": 5,\n        \"total\": 5\n    }\n}"}],"_postman_id":"09aa1413-35df-4a48-84c2-e7ae584f6b83"}],"id":"fbe4c86e-3143-433c-8605-d19550083b6e","description":"<p>Location management endpoints for retrieving office information.</p>\n","_postman_id":"fbe4c86e-3143-433c-8605-d19550083b6e","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Warehouses","item":[{"name":"Get Warehouses","id":"f32edea0-aabd-4cc9-be24-3c3ed5559e0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/warehouses","description":"<p>Get a list of warehouse available as an offboard destination</p>\n","urlObject":{"path":["warehouses"],"host":[""],"query":[{"disabled":true,"key":"include","value":"countries"}],"variable":[]}},"response":[{"id":"c65e6ab7-54d2-438a-961d-c4d485df7f16","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/warehouses?include=countries","host":[""],"path":["warehouses"],"query":[{"key":"include","value":"countries"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 14:45:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"LDW\",\n        \"created_at\": \"2023-06-22T13:39:37.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 15,\n                \"name\": \"United Kingdom\",\n                \"code\": \"GB\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 337,\n                \"name\": \"Jersey\",\n                \"code\": \"JE\",\n                \"requires_tin\": false\n            }\n        ]\n    },\n    {\n        \"id\": 2,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"ER3\",\n        \"created_at\": \"2023-06-22T13:39:37.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 46,\n                \"name\": \"United States\",\n                \"code\": \"US\",\n                \"requires_tin\": false\n            }\n        ]\n    },\n    {\n        \"id\": 4,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"VEW\",\n        \"created_at\": \"2023-08-23T10:51:57.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 3,\n                \"name\": \"Austria\",\n                \"code\": \"AT\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 5,\n                \"name\": \"Belgium\",\n                \"code\": \"BE\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 6,\n                \"name\": \"Bulgaria\",\n                \"code\": \"BG\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 8,\n                \"name\": \"Czech Republic\",\n                \"code\": \"CZ\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 9,\n                \"name\": \"Germany\",\n                \"code\": \"DE\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 10,\n                \"name\": \"Denmark\",\n                \"code\": \"DK\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 11,\n                \"name\": \"Estonia\",\n                \"code\": \"EE\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 12,\n                \"name\": \"Spain\",\n                \"code\": \"ES\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 13,\n                \"name\": \"Finland\",\n                \"code\": \"FI\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 14,\n                \"name\": \"France\",\n                \"code\": \"FR\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 18,\n                \"name\": \"Greece\",\n                \"code\": \"GR\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 19,\n                \"name\": \"Croatia\",\n                \"code\": \"HR\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 20,\n                \"name\": \"Hungary\",\n                \"code\": \"HU\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 21,\n                \"name\": \"Ireland\",\n                \"code\": \"IE\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 22,\n                \"name\": \"Italy\",\n                \"code\": \"IT\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 23,\n                \"name\": \"Lithuania\",\n                \"code\": \"LT\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 24,\n                \"name\": \"Luxembourg\",\n                \"code\": \"LU\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 25,\n                \"name\": \"Latvia\",\n                \"code\": \"LV\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 31,\n                \"name\": \"Malta\",\n                \"code\": \"MT\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 32,\n                \"name\": \"Netherlands\",\n                \"code\": \"NL\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 34,\n                \"name\": \"Poland\",\n                \"code\": \"PL\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 35,\n                \"name\": \"Portugal\",\n                \"code\": \"PT\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 36,\n                \"name\": \"Romania\",\n                \"code\": \"RO\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 39,\n                \"name\": \"Sweden\",\n                \"code\": \"SE\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 40,\n                \"name\": \"Slovenia\",\n                \"code\": \"SI\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 41,\n                \"name\": \"Slovakia\",\n                \"code\": \"SK\",\n                \"requires_tin\": false\n            },\n            {\n                \"id\": 297,\n                \"name\": \"Cyprus\",\n                \"code\": \"CY\",\n                \"requires_tin\": false\n            }\n        ]\n    },\n    {\n        \"id\": 6,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"LPB\",\n        \"created_at\": \"2024-02-12T09:15:27.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 329,\n                \"name\": \"India\",\n                \"code\": \"IN\",\n                \"requires_tin\": true\n            }\n        ]\n    },\n    {\n        \"id\": 7,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"LBZ\",\n        \"created_at\": \"2024-02-12T09:15:27.000000Z\",\n        \"updated_at\": \"2025-01-10T09:27:48.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 273,\n                \"name\": \"Brazil\",\n                \"code\": \"BR\",\n                \"requires_tin\": true\n            }\n        ]\n    },\n    {\n        \"id\": 8,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"YYZ\",\n        \"created_at\": \"2024-07-17T08:08:55.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 47,\n                \"name\": \"Canada\",\n                \"code\": \"CA\",\n                \"requires_tin\": false\n            }\n        ]\n    },\n    {\n        \"id\": 9,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"SYD\",\n        \"created_at\": \"2024-07-17T08:08:55.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 259,\n                \"name\": \"Australia\",\n                \"code\": \"AU\",\n                \"requires_tin\": false\n            }\n        ]\n    },\n    {\n        \"id\": 10,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"LPP\",\n        \"created_at\": \"2024-09-23T07:50:02.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 387,\n                \"name\": \"Philippines\",\n                \"code\": \"PH\",\n                \"requires_tin\": false\n            }\n        ]\n    },\n    {\n        \"id\": 11,\n        \"warehouse_provider\": \"logistic_plus\",\n        \"name\": \"Logistics Plus\",\n        \"warehouse_code\": \"MXW\",\n        \"created_at\": \"2024-10-21T10:45:02.000000Z\",\n        \"updated_at\": \"2024-12-20T07:47:46.000000Z\",\n        \"countries\": [\n            {\n                \"id\": 361,\n                \"name\": \"Mexico\",\n                \"code\": \"MX\",\n                \"requires_tin\": false\n            }\n        ]\n    }\n]"}],"_postman_id":"f32edea0-aabd-4cc9-be24-3c3ed5559e0b"}],"id":"eb36000d-0b12-4a80-9a19-c625df261273","description":"<p>Location management endpoints for retrieving warehouse information.</p>\n","_postman_id":"eb36000d-0b12-4a80-9a19-c625df261273","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Users","item":[{"name":"Create User","id":"c79f6a1f-b97d-4045-87b6-c522ed4b3617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 266,\n    \"given_name\": \"given_name\",\n    \"family_name\": \"family_name\",\n    \"full_name\": \"given_name family_name\",\n    \"email\": \"test123@email.com\",\n    \"phone_number\": \"1234567890\",\n    \"created_at\": \"2024-10-10T08:33:20.000000Z\",\n    \"updated_at\": \"2024-10-10T08:33:20.000000Z\"\n}","options":{"raw":{"language":"json"}}},"url":"/users","description":"<p>This endpoint allows for a user to be created</p>\n","urlObject":{"path":["users"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"4747f218-aabc-421a-9976-95c6373144dc","name":"Successful Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 266,\n    \"given_name\": \"given_name\",\n    \"family_name\": \"family_name\",\n    \"full_name\": \"given_name family_name\",\n    \"email\": \"test123@email.com\",\n    \"phone_number\": \"1234567890\",\n    \"created_at\": \"2024-10-10T08:33:20.000000Z\",\n    \"updated_at\": \"2024-10-10T08:33:20.000000Z\"\n}","options":{"raw":{"language":"json"}}},"url":"/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 15:06:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 139716,\n    \"given_name\": \"given_name\",\n    \"family_name\": \"family_name\",\n    \"full_name\": \"given_name family_name\",\n    \"email\": \"test123@email.com\",\n    \"phone_number\": \"1234567890\",\n    \"personal_email\": null,\n    \"personal_phone_number\": null,\n    \"created_at\": \"2025-02-07T15:06:29.000000Z\",\n    \"updated_at\": \"2025-02-07T15:06:29.000000Z\",\n    \"address\": null\n}"}],"_postman_id":"c79f6a1f-b97d-4045-87b6-c522ed4b3617"},{"name":"Get Authenticated User","id":"2388775c-76f6-410a-8231-d3eec1edab96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/self","description":"<p>This endpoint returns the authenticated user.</p>\n","urlObject":{"path":["self"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"bbf7364a-818c-45fe-8bea-a6e65cd83593","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":"/self"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 12:12:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 139558,\n    \"name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"gender\": \"0\",\n    \"first_login\": 0,\n    \"email\": \"john@goworkwize.com\",\n    \"personal_email\": null,\n    \"phone_number\": \"11111111111\",\n    \"personal_phone_number\": null,\n    \"email_verified_at\": null,\n    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n    \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n    \"sub\": null,\n    \"read_privacy\": 0,\n    \"prefix\": null,\n    \"deleted_at\": null,\n    \"deactivated_at\": null,\n    \"invite\": {\n        \"id\": 83079,\n        \"email\": \"john@goworkwize.com\",\n        \"token\": \"T2LpPexRmGRf7fPhQ5LE\",\n        \"status\": \"Accepted\",\n        \"invited_by\": 1,\n        \"department_id\": null,\n        \"invitee_role_id\": 4,\n        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n        \"updated_at\": \"2025-02-06T09:12:34.000000Z\",\n        \"queue_status\": 1\n    },\n    \"roles\": [\n        {\n            \"id\": 4,\n            \"created_at\": \"2021-12-23T14:59:09.000000Z\",\n            \"updated_at\": \"2021-12-23T14:59:09.000000Z\",\n            \"name\": \"Employer Admin\",\n            \"pivot\": {\n                \"user_id\": 139558,\n                \"role_id\": 4\n            }\n        }\n    ]\n}"}],"_postman_id":"2388775c-76f6-410a-8231-d3eec1edab96"}],"id":"8c8b2c4d-9f22-442e-a480-4f505f11fa09","description":"<p>User account management endpoints for creating user accounts.</p>\n","_postman_id":"8c8b2c4d-9f22-442e-a480-4f505f11fa09","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Addresses","item":[{"name":"Get Employee Address","id":"1ce0f641-309a-484f-90f7-b035984b0dbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/employees/{{employee_id}}/addresses","description":"<p>Get employee address</p>\n","urlObject":{"path":["employees","{{employee_id}}","addresses"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"89adef3a-3bdc-41f0-871b-88df498bb097","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":"/employees/{{employee_id}}/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 15:33:42 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"success\": true,\n    \"status\": true,\n    \"message\": null,\n    \"data\": {\n        \"id\": 136657,\n        \"city\": \"Vonfurt\",\n        \"country\": {\n            \"id\": 32,\n            \"name\": \"Netherlands\",\n            \"code\": \"NL\",\n            \"requires_tin\": false\n        },\n        \"company_name\": null,\n        \"country_id\": 32,\n        \"address_line_1\": \"Schuster Drive\",\n        \"address_line_2\": \"977\",\n        \"region\": \"South Carolina\",\n        \"postcode\": \"39356\",\n        \"postal_code\": \"39356\",\n        \"additional_address_line\": \"Route\",\n        \"name\": \"Brown\",\n        \"first_name\": \"Brown\",\n        \"last_name\": \"Schroeder\",\n        \"email\": \"brown.schroeder@omartest.com\",\n        \"phone_number\": \"+1-445-976-9749\"\n    },\n    \"links\": {},\n    \"meta\": {},\n    \"errors\": [],\n    \"redirect\": \"\"\n}"}],"_postman_id":"1ce0f641-309a-484f-90f7-b035984b0dbb"},{"name":"Create Employee Address","id":"4fae729d-7081-471a-a9ec-b06029be7008","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"address_line_2\": \"string\",\n    \"region\": \"string\",\n    \"additional_address_line\": \"string\",\n    \"city\": \"string\",\n    \"address_line_1\": \"string\",\n    \"postal_code\": \"string\",\n    \"country_id\": \"integer\",\n    \"phone_number\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/addresses","description":"<p>This API allows <strong>employers</strong> to add a new <strong>address</strong> for an <strong>employee</strong>. The added address is stored as the employee’s <strong>shipping address</strong> and can be updated later.</p>\n<h4 id=\"request-parameters\"><strong>Request Parameters:</strong></h4>\n<ul>\n<li><p><strong>Address Information</strong></p>\n<ul>\n<li><p><code>address_line_1</code> (optional, string) – The first line of the street address.</p>\n</li>\n<li><p><code>address_line_2</code> (optional, string) – The second line of the street address (e.g., apartment, suite number).</p>\n</li>\n<li><p><code>additional_address_line</code> (optional, string) - Any additional address line that you would like to add</p>\n</li>\n<li><p><code>city</code> (required, string) – The city of the address.</p>\n</li>\n<li><p><code>postal_code</code> (required, string) – The postal code or zip code of the address.</p>\n</li>\n<li><p><code>country_id</code> (required, integer) – The ID of the country for the address. This field is used for creating the main address.</p>\n</li>\n<li><p><code>region</code> (optional, string) - The region of the address. This field is derived from <code>country_id</code> and used for shipping addresses.</p>\n</li>\n<li><p><code>phone_number</code> (optional, string) – The phone number associated with the address. If not provided, and the <code>addressOwner</code> has a user associated, the user's phone number will be used.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"country-ids-and-alpha2-codes\">Country IDs and Alpha2 codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>id</th>\n<th>code</th>\n<th>name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>AL</td>\n<td>Albania</td>\n</tr>\n<tr>\n<td>2</td>\n<td>AN</td>\n<td>Netherlands Antilles</td>\n</tr>\n<tr>\n<td>3</td>\n<td>AT</td>\n<td>Austria</td>\n</tr>\n<tr>\n<td>4</td>\n<td>BA</td>\n<td>Bosnia and Herzegovina</td>\n</tr>\n<tr>\n<td>5</td>\n<td>BE</td>\n<td>Belgium</td>\n</tr>\n<tr>\n<td>6</td>\n<td>BG</td>\n<td>Bulgaria</td>\n</tr>\n<tr>\n<td>7</td>\n<td>CH</td>\n<td>Switzerland</td>\n</tr>\n<tr>\n<td>8</td>\n<td>CZ</td>\n<td>Czech Republic</td>\n</tr>\n<tr>\n<td>9</td>\n<td>DE</td>\n<td>Germany</td>\n</tr>\n<tr>\n<td>10</td>\n<td>DK</td>\n<td>Denmark</td>\n</tr>\n<tr>\n<td>11</td>\n<td>EE</td>\n<td>Estonia</td>\n</tr>\n<tr>\n<td>12</td>\n<td>ES</td>\n<td>Spain</td>\n</tr>\n<tr>\n<td>13</td>\n<td>FI</td>\n<td>Finland</td>\n</tr>\n<tr>\n<td>14</td>\n<td>FR</td>\n<td>France</td>\n</tr>\n<tr>\n<td>15</td>\n<td>GB</td>\n<td>United Kingdom</td>\n</tr>\n<tr>\n<td>16</td>\n<td>GE</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>17</td>\n<td>GL</td>\n<td>Greenland</td>\n</tr>\n<tr>\n<td>18</td>\n<td>GR</td>\n<td>Greece</td>\n</tr>\n<tr>\n<td>19</td>\n<td>HR</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>20</td>\n<td>HU</td>\n<td>Hungary</td>\n</tr>\n<tr>\n<td>21</td>\n<td>IE</td>\n<td>Ireland</td>\n</tr>\n<tr>\n<td>22</td>\n<td>IT</td>\n<td>Italy</td>\n</tr>\n<tr>\n<td>23</td>\n<td>LT</td>\n<td>Lithuania</td>\n</tr>\n<tr>\n<td>24</td>\n<td>LU</td>\n<td>Luxembourg</td>\n</tr>\n<tr>\n<td>25</td>\n<td>LV</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>26</td>\n<td>MA</td>\n<td>Morocco</td>\n</tr>\n<tr>\n<td>27</td>\n<td>MC</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>28</td>\n<td>MD</td>\n<td>Moldova</td>\n</tr>\n<tr>\n<td>29</td>\n<td>ME</td>\n<td>Montenegro</td>\n</tr>\n<tr>\n<td>30</td>\n<td>MK</td>\n<td>Macedonia</td>\n</tr>\n<tr>\n<td>31</td>\n<td>MT</td>\n<td>Malta</td>\n</tr>\n<tr>\n<td>32</td>\n<td>NL</td>\n<td>Netherlands</td>\n</tr>\n<tr>\n<td>33</td>\n<td>NO</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>34</td>\n<td>PL</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>35</td>\n<td>PT</td>\n<td>Portugal</td>\n</tr>\n<tr>\n<td>36</td>\n<td>RO</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>37</td>\n<td>RS</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>38</td>\n<td>RU</td>\n<td>Russian Federation</td>\n</tr>\n<tr>\n<td>39</td>\n<td>SE</td>\n<td>Sweden</td>\n</tr>\n<tr>\n<td>40</td>\n<td>SI</td>\n<td>Slovenia</td>\n</tr>\n<tr>\n<td>41</td>\n<td>SK</td>\n<td>Slovakia</td>\n</tr>\n<tr>\n<td>42</td>\n<td>SM</td>\n<td>San Marino</td>\n</tr>\n<tr>\n<td>43</td>\n<td>TR</td>\n<td>Turkey</td>\n</tr>\n<tr>\n<td>44</td>\n<td>UA</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>45</td>\n<td>VA</td>\n<td>Vatican City</td>\n</tr>\n<tr>\n<td>46</td>\n<td>US</td>\n<td>United States</td>\n</tr>\n<tr>\n<td>47</td>\n<td>CA</td>\n<td>Canada</td>\n</tr>\n<tr>\n<td>247</td>\n<td>AF</td>\n<td>Afghanistan</td>\n</tr>\n<tr>\n<td>248</td>\n<td>AX</td>\n<td>Aland Islands</td>\n</tr>\n<tr>\n<td>249</td>\n<td>DZ</td>\n<td>Algeria</td>\n</tr>\n<tr>\n<td>250</td>\n<td>AS</td>\n<td>American Samoa</td>\n</tr>\n<tr>\n<td>251</td>\n<td>AD</td>\n<td>Andorra</td>\n</tr>\n<tr>\n<td>252</td>\n<td>AO</td>\n<td>Angola</td>\n</tr>\n<tr>\n<td>253</td>\n<td>AI</td>\n<td>Anguilla</td>\n</tr>\n<tr>\n<td>254</td>\n<td>AQ</td>\n<td>Antarctica</td>\n</tr>\n<tr>\n<td>255</td>\n<td>AG</td>\n<td>Antigua and Barbuda</td>\n</tr>\n<tr>\n<td>256</td>\n<td>AR</td>\n<td>Argentina</td>\n</tr>\n<tr>\n<td>257</td>\n<td>AM</td>\n<td>Armenia</td>\n</tr>\n<tr>\n<td>258</td>\n<td>AW</td>\n<td>Aruba</td>\n</tr>\n<tr>\n<td>259</td>\n<td>AU</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>260</td>\n<td>AZ</td>\n<td>Azerbaijan</td>\n</tr>\n<tr>\n<td>261</td>\n<td>BS</td>\n<td>Bahamas</td>\n</tr>\n<tr>\n<td>262</td>\n<td>BH</td>\n<td>Bahrain</td>\n</tr>\n<tr>\n<td>263</td>\n<td>BD</td>\n<td>Bangladesh</td>\n</tr>\n<tr>\n<td>264</td>\n<td>BB</td>\n<td>Barbados</td>\n</tr>\n<tr>\n<td>265</td>\n<td>BY</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>266</td>\n<td>BZ</td>\n<td>Belize</td>\n</tr>\n<tr>\n<td>267</td>\n<td>BJ</td>\n<td>Benin</td>\n</tr>\n<tr>\n<td>268</td>\n<td>BM</td>\n<td>Bermuda</td>\n</tr>\n<tr>\n<td>269</td>\n<td>BT</td>\n<td>Bhutan</td>\n</tr>\n<tr>\n<td>270</td>\n<td>BO</td>\n<td>Bolivia</td>\n</tr>\n<tr>\n<td>271</td>\n<td>BW</td>\n<td>Botswana</td>\n</tr>\n<tr>\n<td>272</td>\n<td>BV</td>\n<td>Bouvet Island</td>\n</tr>\n<tr>\n<td>273</td>\n<td>BR</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>274</td>\n<td>IO</td>\n<td>British Indian Ocean Territory</td>\n</tr>\n<tr>\n<td>275</td>\n<td>VG</td>\n<td>British Virgin Islands</td>\n</tr>\n<tr>\n<td>276</td>\n<td>BN</td>\n<td>Brunei Darussalam</td>\n</tr>\n<tr>\n<td>277</td>\n<td>BF</td>\n<td>Burkina Faso</td>\n</tr>\n<tr>\n<td>278</td>\n<td>BI</td>\n<td>Burundi</td>\n</tr>\n<tr>\n<td>279</td>\n<td>KH</td>\n<td>Cambodia</td>\n</tr>\n<tr>\n<td>280</td>\n<td>CM</td>\n<td>Cameroon</td>\n</tr>\n<tr>\n<td>281</td>\n<td>CV</td>\n<td>Cape Verde</td>\n</tr>\n<tr>\n<td>282</td>\n<td>KY</td>\n<td>Cayman Islands</td>\n</tr>\n<tr>\n<td>283</td>\n<td>CF</td>\n<td>Central African Republic</td>\n</tr>\n<tr>\n<td>284</td>\n<td>TD</td>\n<td>Chad</td>\n</tr>\n<tr>\n<td>285</td>\n<td>CL</td>\n<td>Chile</td>\n</tr>\n<tr>\n<td>286</td>\n<td>CN</td>\n<td>China</td>\n</tr>\n<tr>\n<td>287</td>\n<td>CX</td>\n<td>Christmas Island</td>\n</tr>\n<tr>\n<td>288</td>\n<td>CC</td>\n<td>Cocos (Keeling) Islands</td>\n</tr>\n<tr>\n<td>289</td>\n<td>CO</td>\n<td>Colombia</td>\n</tr>\n<tr>\n<td>290</td>\n<td>KM</td>\n<td>Comoros</td>\n</tr>\n<tr>\n<td>291</td>\n<td>CG</td>\n<td>Congo (Brazzaville)</td>\n</tr>\n<tr>\n<td>292</td>\n<td>CD</td>\n<td>\"Congo</td>\n</tr>\n<tr>\n<td>293</td>\n<td>CK</td>\n<td>Cook Islands</td>\n</tr>\n<tr>\n<td>294</td>\n<td>CR</td>\n<td>Costa Rica</td>\n</tr>\n<tr>\n<td>295</td>\n<td>CI</td>\n<td>Côte d'Ivoire</td>\n</tr>\n<tr>\n<td>296</td>\n<td>CU</td>\n<td>Cuba</td>\n</tr>\n<tr>\n<td>297</td>\n<td>CY</td>\n<td>Cyprus</td>\n</tr>\n<tr>\n<td>298</td>\n<td>DJ</td>\n<td>Djibouti</td>\n</tr>\n<tr>\n<td>299</td>\n<td>DM</td>\n<td>Dominica</td>\n</tr>\n<tr>\n<td>300</td>\n<td>DO</td>\n<td>Dominican Republic</td>\n</tr>\n<tr>\n<td>301</td>\n<td>EC</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>302</td>\n<td>SV</td>\n<td>El Salvador</td>\n</tr>\n<tr>\n<td>303</td>\n<td>GQ</td>\n<td>Equatorial Guinea</td>\n</tr>\n<tr>\n<td>304</td>\n<td>ER</td>\n<td>Eritrea</td>\n</tr>\n<tr>\n<td>305</td>\n<td>ET</td>\n<td>Ethiopia</td>\n</tr>\n<tr>\n<td>306</td>\n<td>FK</td>\n<td>Falkland Islands (Malvinas)</td>\n</tr>\n<tr>\n<td>307</td>\n<td>FO</td>\n<td>Faroe Islands</td>\n</tr>\n<tr>\n<td>308</td>\n<td>FJ</td>\n<td>Fiji</td>\n</tr>\n<tr>\n<td>309</td>\n<td>GF</td>\n<td>French Guiana</td>\n</tr>\n<tr>\n<td>310</td>\n<td>PF</td>\n<td>French Polynesia</td>\n</tr>\n<tr>\n<td>311</td>\n<td>TF</td>\n<td>French Southern Territories</td>\n</tr>\n<tr>\n<td>312</td>\n<td>GA</td>\n<td>Gabon</td>\n</tr>\n<tr>\n<td>313</td>\n<td>GM</td>\n<td>Gambia</td>\n</tr>\n<tr>\n<td>314</td>\n<td>GH</td>\n<td>Ghana</td>\n</tr>\n<tr>\n<td>315</td>\n<td>GI</td>\n<td>Gibraltar</td>\n</tr>\n<tr>\n<td>316</td>\n<td>GD</td>\n<td>Grenada</td>\n</tr>\n<tr>\n<td>317</td>\n<td>GP</td>\n<td>Guadeloupe</td>\n</tr>\n<tr>\n<td>318</td>\n<td>GU</td>\n<td>Guam</td>\n</tr>\n<tr>\n<td>319</td>\n<td>GT</td>\n<td>Guatemala</td>\n</tr>\n<tr>\n<td>320</td>\n<td>GG</td>\n<td>Guernsey</td>\n</tr>\n<tr>\n<td>321</td>\n<td>GN</td>\n<td>Guinea</td>\n</tr>\n<tr>\n<td>322</td>\n<td>GW</td>\n<td>Guinea-Bissau</td>\n</tr>\n<tr>\n<td>323</td>\n<td>GY</td>\n<td>Guyana</td>\n</tr>\n<tr>\n<td>324</td>\n<td>HT</td>\n<td>Haiti</td>\n</tr>\n<tr>\n<td>325</td>\n<td>HM</td>\n<td>Heard and Mcdonald Islands</td>\n</tr>\n<tr>\n<td>326</td>\n<td>HN</td>\n<td>Honduras</td>\n</tr>\n<tr>\n<td>327</td>\n<td>HK</td>\n<td>\"Hong Kong</td>\n</tr>\n<tr>\n<td>328</td>\n<td>IS</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>329</td>\n<td>IN</td>\n<td>India</td>\n</tr>\n<tr>\n<td>330</td>\n<td>ID</td>\n<td>Indonesia</td>\n</tr>\n<tr>\n<td>331</td>\n<td>IR</td>\n<td>\"Iran</td>\n</tr>\n<tr>\n<td>332</td>\n<td>IQ</td>\n<td>Iraq</td>\n</tr>\n<tr>\n<td>333</td>\n<td>IM</td>\n<td>Isle of Man</td>\n</tr>\n<tr>\n<td>334</td>\n<td>IL</td>\n<td>Israel</td>\n</tr>\n<tr>\n<td>335</td>\n<td>JM</td>\n<td>Jamaica</td>\n</tr>\n<tr>\n<td>336</td>\n<td>JP</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>337</td>\n<td>JE</td>\n<td>Jersey</td>\n</tr>\n<tr>\n<td>338</td>\n<td>JO</td>\n<td>Jordan</td>\n</tr>\n<tr>\n<td>339</td>\n<td>KZ</td>\n<td>Kazakhstan</td>\n</tr>\n<tr>\n<td>340</td>\n<td>KE</td>\n<td>Kenya</td>\n</tr>\n<tr>\n<td>341</td>\n<td>KI</td>\n<td>Kiribati</td>\n</tr>\n<tr>\n<td>342</td>\n<td>KW</td>\n<td>Kuwait</td>\n</tr>\n<tr>\n<td>343</td>\n<td>KG</td>\n<td>Kyrgyzstan</td>\n</tr>\n<tr>\n<td>344</td>\n<td>LA</td>\n<td>Lao PDR</td>\n</tr>\n<tr>\n<td>345</td>\n<td>LB</td>\n<td>Lebanon</td>\n</tr>\n<tr>\n<td>346</td>\n<td>LS</td>\n<td>Lesotho</td>\n</tr>\n<tr>\n<td>347</td>\n<td>LR</td>\n<td>Liberia</td>\n</tr>\n<tr>\n<td>348</td>\n<td>LY</td>\n<td>Libya</td>\n</tr>\n<tr>\n<td>349</td>\n<td>LI</td>\n<td>Liechtenstein</td>\n</tr>\n<tr>\n<td>350</td>\n<td>MO</td>\n<td>\"Macao</td>\n</tr>\n<tr>\n<td>351</td>\n<td>MG</td>\n<td>Madagascar</td>\n</tr>\n<tr>\n<td>352</td>\n<td>MW</td>\n<td>Malawi</td>\n</tr>\n<tr>\n<td>353</td>\n<td>MY</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>354</td>\n<td>MV</td>\n<td>Maldives</td>\n</tr>\n<tr>\n<td>355</td>\n<td>ML</td>\n<td>Mali</td>\n</tr>\n<tr>\n<td>356</td>\n<td>MH</td>\n<td>Marshall Islands</td>\n</tr>\n<tr>\n<td>357</td>\n<td>MQ</td>\n<td>Martinique</td>\n</tr>\n<tr>\n<td>358</td>\n<td>MR</td>\n<td>Mauritania</td>\n</tr>\n<tr>\n<td>359</td>\n<td>MU</td>\n<td>Mauritius</td>\n</tr>\n<tr>\n<td>360</td>\n<td>YT</td>\n<td>Mayotte</td>\n</tr>\n<tr>\n<td>361</td>\n<td>MX</td>\n<td>Mexico</td>\n</tr>\n<tr>\n<td>362</td>\n<td>FM</td>\n<td>Micronesia</td>\n</tr>\n<tr>\n<td>363</td>\n<td>MN</td>\n<td>Mongolia</td>\n</tr>\n<tr>\n<td>364</td>\n<td>MS</td>\n<td>Montserrat</td>\n</tr>\n<tr>\n<td>365</td>\n<td>MZ</td>\n<td>Mozambique</td>\n</tr>\n<tr>\n<td>366</td>\n<td>MM</td>\n<td>Myanmar</td>\n</tr>\n<tr>\n<td>367</td>\n<td>NA</td>\n<td>Namibia</td>\n</tr>\n<tr>\n<td>368</td>\n<td>NR</td>\n<td>Nauru</td>\n</tr>\n<tr>\n<td>369</td>\n<td>NP</td>\n<td>Nepal</td>\n</tr>\n<tr>\n<td>370</td>\n<td>NC</td>\n<td>New Caledonia</td>\n</tr>\n<tr>\n<td>371</td>\n<td>NZ</td>\n<td>New Zealand</td>\n</tr>\n<tr>\n<td>372</td>\n<td>NI</td>\n<td>Nicaragua</td>\n</tr>\n<tr>\n<td>373</td>\n<td>NE</td>\n<td>Niger</td>\n</tr>\n<tr>\n<td>374</td>\n<td>NG</td>\n<td>Nigeria</td>\n</tr>\n<tr>\n<td>375</td>\n<td>NU</td>\n<td>Niue</td>\n</tr>\n<tr>\n<td>376</td>\n<td>NF</td>\n<td>Norfolk Island</td>\n</tr>\n<tr>\n<td>377</td>\n<td>KP</td>\n<td>North Korea</td>\n</tr>\n<tr>\n<td>378</td>\n<td>MP</td>\n<td>Northern Mariana Islands</td>\n</tr>\n<tr>\n<td>379</td>\n<td>OM</td>\n<td>Oman</td>\n</tr>\n<tr>\n<td>380</td>\n<td>PK</td>\n<td>Pakistan</td>\n</tr>\n<tr>\n<td>381</td>\n<td>PW</td>\n<td>Palau</td>\n</tr>\n<tr>\n<td>382</td>\n<td>PS</td>\n<td>Palestinian Territory</td>\n</tr>\n<tr>\n<td>383</td>\n<td>PA</td>\n<td>Panama</td>\n</tr>\n<tr>\n<td>384</td>\n<td>PG</td>\n<td>Papua New Guinea</td>\n</tr>\n<tr>\n<td>385</td>\n<td>PY</td>\n<td>Paraguay</td>\n</tr>\n<tr>\n<td>386</td>\n<td>PE</td>\n<td>Peru</td>\n</tr>\n<tr>\n<td>387</td>\n<td>PH</td>\n<td>Philippines</td>\n</tr>\n<tr>\n<td>388</td>\n<td>PN</td>\n<td>Pitcairn</td>\n</tr>\n<tr>\n<td>389</td>\n<td>PR</td>\n<td>Puerto Rico</td>\n</tr>\n<tr>\n<td>390</td>\n<td>QA</td>\n<td>Qatar</td>\n</tr>\n<tr>\n<td>391</td>\n<td>RE</td>\n<td>Réunion</td>\n</tr>\n<tr>\n<td>392</td>\n<td>RW</td>\n<td>Rwanda</td>\n</tr>\n<tr>\n<td>393</td>\n<td>SH</td>\n<td>Saint Helena</td>\n</tr>\n<tr>\n<td>394</td>\n<td>KN</td>\n<td>Saint Kitts and Nevis</td>\n</tr>\n<tr>\n<td>395</td>\n<td>LC</td>\n<td>Saint Lucia</td>\n</tr>\n<tr>\n<td>396</td>\n<td>PM</td>\n<td>Saint Pierre and Miquelon</td>\n</tr>\n<tr>\n<td>397</td>\n<td>VC</td>\n<td>Saint Vincent and Grenadines</td>\n</tr>\n<tr>\n<td>398</td>\n<td>BL</td>\n<td>Saint-Barthélemy</td>\n</tr>\n<tr>\n<td>399</td>\n<td>MF</td>\n<td>Saint-Martin (French part)</td>\n</tr>\n<tr>\n<td>400</td>\n<td>WS</td>\n<td>Samoa</td>\n</tr>\n<tr>\n<td>401</td>\n<td>ST</td>\n<td>Sao Tome and Principe</td>\n</tr>\n<tr>\n<td>402</td>\n<td>SA</td>\n<td>Saudi Arabia</td>\n</tr>\n<tr>\n<td>403</td>\n<td>SN</td>\n<td>Senegal</td>\n</tr>\n<tr>\n<td>404</td>\n<td>SC</td>\n<td>Seychelles</td>\n</tr>\n<tr>\n<td>405</td>\n<td>SL</td>\n<td>Sierra Leone</td>\n</tr>\n<tr>\n<td>406</td>\n<td>SG</td>\n<td>Singapore</td>\n</tr>\n<tr>\n<td>407</td>\n<td>SB</td>\n<td>Solomon Islands</td>\n</tr>\n<tr>\n<td>408</td>\n<td>SO</td>\n<td>Somalia</td>\n</tr>\n<tr>\n<td>409</td>\n<td>ZA</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>410</td>\n<td>GS</td>\n<td>South Georgia and the South Sandwich Islands</td>\n</tr>\n<tr>\n<td>411</td>\n<td>KR</td>\n<td>South Korea</td>\n</tr>\n<tr>\n<td>412</td>\n<td>SS</td>\n<td>South Sudan</td>\n</tr>\n<tr>\n<td>413</td>\n<td>LK</td>\n<td>Sri Lanka</td>\n</tr>\n<tr>\n<td>414</td>\n<td>SD</td>\n<td>Sudan</td>\n</tr>\n<tr>\n<td>415</td>\n<td>SR</td>\n<td>Suriname</td>\n</tr>\n<tr>\n<td>416</td>\n<td>SJ</td>\n<td>Svalbard and Jan Mayen Islands</td>\n</tr>\n<tr>\n<td>417</td>\n<td>SZ</td>\n<td>Swaziland</td>\n</tr>\n<tr>\n<td>418</td>\n<td>SY</td>\n<td>Syria</td>\n</tr>\n<tr>\n<td>419</td>\n<td>TW</td>\n<td>Taiwan</td>\n</tr>\n<tr>\n<td>420</td>\n<td>TJ</td>\n<td>Tajikistan</td>\n</tr>\n<tr>\n<td>421</td>\n<td>TZ</td>\n<td>Tanzania</td>\n</tr>\n<tr>\n<td>422</td>\n<td>TH</td>\n<td>Thailand</td>\n</tr>\n<tr>\n<td>423</td>\n<td>TL</td>\n<td>Timor-Leste</td>\n</tr>\n<tr>\n<td>424</td>\n<td>TG</td>\n<td>Togo</td>\n</tr>\n<tr>\n<td>425</td>\n<td>TK</td>\n<td>Tokelau</td>\n</tr>\n<tr>\n<td>426</td>\n<td>TO</td>\n<td>Tonga</td>\n</tr>\n<tr>\n<td>427</td>\n<td>TT</td>\n<td>Trinidad and Tobago</td>\n</tr>\n<tr>\n<td>428</td>\n<td>TN</td>\n<td>Tunisia</td>\n</tr>\n<tr>\n<td>429</td>\n<td>TM</td>\n<td>Turkmenistan</td>\n</tr>\n<tr>\n<td>430</td>\n<td>TC</td>\n<td>Turks and Caicos Islands</td>\n</tr>\n<tr>\n<td>431</td>\n<td>TV</td>\n<td>Tuvalu</td>\n</tr>\n<tr>\n<td>432</td>\n<td>UG</td>\n<td>Uganda</td>\n</tr>\n<tr>\n<td>433</td>\n<td>AE</td>\n<td>United Arab Emirates</td>\n</tr>\n<tr>\n<td>434</td>\n<td>UY</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>435</td>\n<td>UM</td>\n<td>US Minor Outlying Islands</td>\n</tr>\n<tr>\n<td>436</td>\n<td>UZ</td>\n<td>Uzbekistan</td>\n</tr>\n<tr>\n<td>437</td>\n<td>VU</td>\n<td>Vanuatu</td>\n</tr>\n<tr>\n<td>438</td>\n<td>VE</td>\n<td>Venezuela</td>\n</tr>\n<tr>\n<td>439</td>\n<td>VN</td>\n<td>Viet Nam</td>\n</tr>\n<tr>\n<td>440</td>\n<td>VI</td>\n<td>\"Virgin Islands</td>\n</tr>\n<tr>\n<td>441</td>\n<td>WF</td>\n<td>Wallis and Futuna Islands</td>\n</tr>\n<tr>\n<td>442</td>\n<td>EH</td>\n<td>Western Sahara</td>\n</tr>\n<tr>\n<td>443</td>\n<td>YE</td>\n<td>Yemen</td>\n</tr>\n<tr>\n<td>444</td>\n<td>ZM</td>\n<td>Zambia</td>\n</tr>\n<tr>\n<td>445</td>\n<td>ZW</td>\n<td>Zimbabwe</td>\n</tr>\n<tr>\n<td>446</td>\n<td>EG</td>\n<td>Egypt</td>\n</tr>\n<tr>\n<td>447</td>\n<td>IC</td>\n<td>Canary Islands</td>\n</tr>\n<tr>\n<td>448</td>\n<td>EA</td>\n<td>Ceuta and Melilla</td>\n</tr>\n<tr>\n<td>449</td>\n<td>PM</td>\n<td>Balearic Islands</td>\n</tr>\n<tr>\n<td>450</td>\n<td>AZ</td>\n<td>Azores and Madeira</td>\n</tr>\n<tr>\n<td>451</td>\n<td>SO</td>\n<td>\"Shetland Islands</td>\n</tr>\n<tr>\n<td>452</td>\n<td>GI</td>\n<td>Greek Islands</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["employees","{{employee_id}}","addresses"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"6b980f78-d0ed-423f-a99c-98b4d500bd0e","name":"Successful Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"address_line_2\": \"test line 2\",\n    \"region\": \"test region\",\n    \"additional_address_line\": \"test addtl line\",\n    \"city\": \"test city\",\n    \"address_line_1\": \"test line 1\",\n    \"postal_code\": \"test post\",\n    \"country_id\": 1,\n    \"phone_number\": \"test phone\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 07 Feb 2025 15:41:56 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"success\": true,\n    \"status\": true,\n    \"message\": null,\n    \"data\": {\n        \"id\": 136672,\n        \"city\": \"Test City\",\n        \"country\": {\n            \"id\": 1,\n            \"name\": \"Albania\",\n            \"code\": \"AL\",\n            \"requires_tin\": false\n        },\n        \"company_name\": null,\n        \"country_id\": 1,\n        \"address_line_1\": \"test line 1\",\n        \"address_line_2\": \"test line 2\",\n        \"region\": \"Test Region\",\n        \"postcode\": \"test post\",\n        \"postal_code\": \"test post\",\n        \"additional_address_line\": \"test addtl line\",\n        \"name\": \"Brown\",\n        \"first_name\": \"Brown\",\n        \"last_name\": \"Schroeder\",\n        \"email\": \"brown.schroeder@omartest.com\",\n        \"phone_number\": \"test phone\"\n    },\n    \"links\": {},\n    \"meta\": {},\n    \"errors\": [],\n    \"redirect\": \"\"\n}"}],"_postman_id":"4fae729d-7081-471a-a9ec-b06029be7008"},{"name":"Update Employee Address","id":"c612b91b-6cd3-4a5b-8a2f-82be96f357c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"address_line_2\": \"string\",\n    \"region\": \"string\",\n    \"additional_address_line\": \"string\",\n    \"city\": \"string\",\n    \"address_line_1\": \"string\",\n    \"postal_code\": \"string\",\n    \"country_id\": \"integer\",\n    \"phone_number\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/addresses/{{address_id}}","description":"<p>Update an employee’s address.</p>\n<p>Note that a field with <code>null</code> or <code>\"\"</code> value will be updated to that value.</p>\n<p>Example: payload of <code>{\"region\": \"\"}</code> will result to <code>{\"region\": \"\"}</code> in response.</p>\n<p>To ignore a field, the field must be removed from the payload.</p>\n<p>For example we have👇 as base data</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"region\": \"test region\",\n    \"city\": \"test city\"\n}\n\n</code></pre>\n<p>To ignore the region, the payload must be</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"city\": \"another city\"\n}\n\n</code></pre>\n<p>And will result to</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"region\": \"test region\",\n    \"city\": \"another city\"\n}\n\n</code></pre>\n<h4 id=\"request-parameters\"><strong>Request Parameters:</strong></h4>\n<ul>\n<li><p><strong>Address Information</strong></p>\n<ul>\n<li><p><code>address_line_1</code> (optional, string) – The first line of the street address.</p>\n</li>\n<li><p><code>address_line_2</code> (optional, string) – The second line of the street address (e.g., apartment, suite number).</p>\n</li>\n<li><p><code>additional_address_line</code> (optional, string) - Any additional address line that you would like to add</p>\n</li>\n<li><p><code>city</code> (optional, string) – The city of the address.</p>\n</li>\n<li><p><code>postal_code</code> (optional, string) – The postal code or zip code of the address.</p>\n</li>\n<li><p><code>country_id</code> (optional, integer) – The ID of the country for the address. This field is used for creating the main address.</p>\n</li>\n<li><p><code>region</code> (optional, string) - The region of the address. This field is derived from <code>country_id</code> and used for shipping addresses.</p>\n</li>\n<li><p><code>phone_number</code> (optional, string) – The phone number associated with the address. If not provided, and the <code>addressOwner</code> has a user associated, the user's phone number will be used.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["employees","{{employee_id}}","addresses","{{address_id}}"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"7bca0745-563d-4187-bb7d-fbaf008ebc07","name":"Successful Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"address_line_2\": \"test line 2\",\n    \"region\": \"test region 22\",\n    \"additional_address_line\": \"test addtl line\",\n    \"city\": \"test city\",\n    \"address_line_1\": \"test line 1\",\n    \"postal_code\": \"test post\",\n    \"country_id\": 1,\n    \"phone_number\": \"test phone\"\n}","options":{"raw":{"language":"json"}}},"url":"/employees/{{employee_id}}/addresses/{{address_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 10 Feb 2025 10:42:57 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"success\": true,\n    \"status\": true,\n    \"message\": null,\n    \"data\": {\n        \"id\": 136672,\n        \"city\": \"Test City\",\n        \"country\": {\n            \"id\": 1,\n            \"name\": \"Albania\",\n            \"code\": \"AL\",\n            \"requires_tin\": false\n        },\n        \"company_name\": null,\n        \"country_id\": 1,\n        \"address_line_1\": \"test line 1\",\n        \"address_line_2\": \"test line 2\",\n        \"region\": \"Test Region 22\",\n        \"postcode\": \"test post\",\n        \"postal_code\": \"test post\",\n        \"additional_address_line\": \"test addtl line\",\n        \"name\": \"Brown\",\n        \"first_name\": \"Brown\",\n        \"last_name\": \"Schroeder\",\n        \"email\": \"brown.schroeder@omartest.com\",\n        \"phone_number\": \"test phone\"\n    },\n    \"links\": {},\n    \"meta\": {},\n    \"errors\": [],\n    \"redirect\": \"\"\n}"}],"_postman_id":"c612b91b-6cd3-4a5b-8a2f-82be96f357c5"}],"id":"6b0e3661-43a5-4fba-bb06-8640a373f87a","_postman_id":"6b0e3661-43a5-4fba-bb06-8640a373f87a","description":"","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Offboards","item":[{"name":"Get Offboards","id":"d706b947-5eb3-43ad-a4f1-63a8f00d3a06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/offboards?per_page&page","description":"<p>This API endpoint retrieves a list of offboarding requests. This endpoint supports filtering see the query parameters below.</p>\n","urlObject":{"path":["offboards"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>Filters offboarding requests by the employee's HRIS foreign ID (specifically, the hris_employee_id). Example: 5674-HBFG</p>\n","type":"text/plain"},"key":"filter[employee_foreign_id]","value":""},{"disabled":true,"description":{"content":"<p>Filters offboarding requests by the employee's ID. Example: 234</p>\n","type":"text/plain"},"key":"filter[employee_id]","value":""},{"disabled":true,"description":{"content":"<p>Filters offboarding requests by status. Multiple statuses can be provided, separated by commas. Example: in_transit_to_warehouse</p>\n","type":"text/plain"},"key":"filter[status]","value":""},{"disabled":true,"description":{"content":"<p>A search term to filter offboarding requests. For example you can search by employee first name, last name, company name or ID. Example: John</p>\n","type":"text/plain"},"key":"filter[search]","value":""},{"description":{"content":"<p>The amount of rows per page, used for pagination</p>\n","type":"text/plain"},"key":"per_page","value":null},{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":null}],"variable":[]}},"response":[{"id":"e315ba13-b8bd-448d-b196-eab48afd7c33","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"/offboards","host":[""],"path":["offboards"],"query":[{"key":"filter[employee_foreign_id]","value":"5674-HBFG","description":"Filters offboarding requests by the employee's HRIS foreign ID (specifically, the hris_employee_id).","disabled":true},{"key":"filter[employee_id]","value":"234","description":"Filters offboarding requests by the employee's ID.","disabled":true},{"key":"filter[status]","value":"in_transit_to_warehouse","description":"Filters offboarding requests by status. Multiple statuses can be provided, separated by commas.\n","disabled":true},{"key":"filter[search]","value":"Brekke","description":"A search term to filter offboarding requests. For example you can search by employee first name, last name, company name or ID","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 10 Feb 2025 11:28:49 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"success\": true,\n    \"status\": true,\n    \"message\": null,\n    \"data\": [\n        {\n            \"assets_count\": 2866,\n            \"id\": \"17388382082864\",\n            \"employee_id\": \"137080\",\n            \"employee_name\": \"Leland Brekke\",\n            \"name\": \"Leland Brekke\",\n            \"city\": \"Faheyborough\",\n            \"address_line_1\": \"Veum Drive\",\n            \"postal_code\": \"65560-4182\",\n            \"address_line_2\": \"12091\",\n            \"region\": \"Tennessee\",\n            \"country_id\": 32,\n            \"country\": {\n                \"id\": 32,\n                \"name\": \"Netherlands\",\n                \"code\": \"NL\",\n                \"requires_tin\": false\n            },\n            \"extra_info\": \"Molestiae sint esse quia voluptatibus quia autem quam aut.\",\n            \"email\": \"camila.kirlin@example.org\",\n            \"phone_number\": \"615-310-9507\",\n            \"company_name\": \"Omar Test\",\n            \"approved_at\": null,\n            \"status\": \"in_transit_to_warehouse\",\n            \"type\": null,\n            \"assets\": [\n                {\n                    \"id\": 66507893,\n                    \"name\": \"Apple, MacBook Air, M3, 2024, 15\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n                    \"category\": {\n                        \"id\": 86,\n                        \"name\": \"Laptops\",\n                        \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                        \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n                    },\n                    \"location\": {\n                        \"location_id\": 137080,\n                        \"location_type\": \"employee\",\n                        \"location_detail\": {\n                            \"first_name\": \"Leland\",\n                            \"last_name\": \"Brekke\",\n                            \"address\": {\n                                \"address_line_1\": \"Veum Drive\",\n                                \"address_line_2\": \"12091\",\n                                \"postal_code\": \"65560-4182\",\n                                \"additional_address_line\": \"Port\",\n                                \"city\": \"Faheyborough\",\n                                \"region\": \"Tennessee\",\n                                \"email\": \"leland.brekke@omartest.com\",\n                                \"phone_number\": \"1-805-377-8865\"\n                            },\n                            \"team\": \"Sales\"\n                        }\n                    },\n                    \"note\": null,\n                    \"serial_code\": \"YE8MJNJOAQ\",\n                    \"invoice_price\": 1,\n                    \"invoice_currency\": null,\n                    \"external_reference\": null,\n                    \"warehouse_status\": \"available\",\n                    \"condition\": \"new\"\n                }\n            ],\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"notified_employee_at\": null,\n            \"requestor_id\": 490,\n            \"offboarded_by\": null,\n            \"offboarded_by_name\": null,\n            \"destination_type\": \"warehouse\",\n            \"destination_id\": 7,\n            \"destination_name\": \"Warehouse BR\",\n            \"shipments\": []\n        },\n        {\n            \"assets_count\": 2866,\n            \"id\": \"17388382082865\",\n            \"employee_id\": \"137085\",\n            \"employee_name\": \"Walter Rempel\",\n            \"name\": \"Walter Rempel\",\n            \"city\": \"Ebertburgh\",\n            \"address_line_1\": \"Kaya Mill\",\n            \"postal_code\": \"36984\",\n            \"address_line_2\": \"49071\",\n            \"region\": \"Nevada\",\n            \"country_id\": 32,\n            \"country\": {\n                \"id\": 32,\n                \"name\": \"Netherlands\",\n                \"code\": \"NL\",\n                \"requires_tin\": false\n            },\n            \"extra_info\": \"Omnis magnam non praesentium qui velit laudantium expedita.\",\n            \"email\": \"beulah67@example.com\",\n            \"phone_number\": \"564-593-4070\",\n            \"company_name\": \"Omar Test\",\n            \"approved_at\": null,\n            \"status\": \"details_confirmed\",\n            \"type\": null,\n            \"assets\": [\n                {\n                    \"id\": 66507908,\n                    \"name\": \"Apple, MacBook Air, M3, 2024, 13.6\\\", 16GB RAM, 512GB SSD, French AZERTY, Space Grey, Laptops\",\n                    \"category\": {\n                        \"id\": 86,\n                        \"name\": \"Laptops\",\n                        \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                        \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n                    },\n                    \"location\": {\n                        \"location_id\": 137085,\n                        \"location_type\": \"employee\",\n                        \"location_detail\": {\n                            \"first_name\": \"Walter\",\n                            \"last_name\": \"Rempel\",\n                            \"address\": {\n                                \"address_line_1\": \"Kaya Mill\",\n                                \"address_line_2\": \"49071\",\n                                \"postal_code\": \"36984\",\n                                \"additional_address_line\": \"Station\",\n                                \"city\": \"Ebertburgh\",\n                                \"region\": \"Nevada\",\n                                \"email\": \"walter.rempel@omartest.com\",\n                                \"phone_number\": \"(276) 337-6350\"\n                            },\n                            \"team\": \"Sales\"\n                        }\n                    },\n                    \"note\": null,\n                    \"serial_code\": \"7XVRUAB9P6\",\n                    \"invoice_price\": 1,\n                    \"invoice_currency\": null,\n                    \"external_reference\": null,\n                    \"warehouse_status\": \"available\",\n                    \"condition\": \"new\"\n                }\n            ],\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"notified_employee_at\": null,\n            \"requestor_id\": 490,\n            \"offboarded_by\": null,\n            \"offboarded_by_name\": null,\n            \"destination_type\": \"warehouse\",\n            \"destination_id\": 7,\n            \"destination_name\": \"Warehouse BR\",\n            \"shipments\": []\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://127.0.0.1:8000/api/public/offboards?page=1\",\n        \"last\": \"http://127.0.0.1:8000/api/public/offboards?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://127.0.0.1:8000/api/public/offboards?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://127.0.0.1:8000/api/public/offboards\",\n        \"per_page\": 15,\n        \"to\": 2,\n        \"total\": 2\n    },\n    \"errors\": [],\n    \"redirect\": \"\"\n}"}],"_postman_id":"d706b947-5eb3-43ad-a4f1-63a8f00d3a06"},{"name":"Create Offboard","id":"cc80adeb-02eb-453d-8900-aaf4e1e27b5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": \"\",\n    \"destination_type\": \"\",\n    \"destination_code\": \"\",\n    \"assets\": []\n}","options":{"raw":{"language":"json"}}},"url":"/requests/offboards","description":"<p>This API endpoint creates a new offboarding request.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><code>employee_id</code> (required, integer): The ID of the employee being offboarded.</p>\n</li>\n<li><p><code>assets</code> (required, array, min:1): An array of asset IDs to be included in the offboarding.</p>\n</li>\n<li><p><code>destination_type</code> (required, string, in:warehouse,office): The type of destination for the offboarded assets. Must be either \"warehouse\" or \"office\".</p>\n</li>\n<li><p><code>destination_code</code> (required, string): The code of the destination (either a warehouse or an office). It can be either office ID or warehouse code</p>\n</li>\n</ul>\n<p><strong>Asset Requirements</strong></p>\n<p>All assets included in the <code>assets</code> array must:</p>\n<ul>\n<li><p>Belong to the specified employee</p>\n</li>\n<li><p>Not have an offboard request already in process</p>\n</li>\n<li><p><strong>Have all required category attributes populated</strong> (e.g., Brand and Model if required by the asset's category)</p>\n</li>\n</ul>\n<p>If an asset is missing required attributes, the request will fail with a 422 validation error indicating which attributes are missing.</p>\n","urlObject":{"path":["requests","offboards"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b468fe47-924b-4a14-8c7e-a81924c4494d","name":"Create Offboard","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 137086,\n    \"destination_type\": \"warehouse\",\n    \"destination_code\": \"VEW\",\n    \"assets\": [66507913]\n}","options":{"raw":{"language":"json"}}},"url":"/requests/offboards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 10 Feb 2025 13:59:37 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"success\": false,\n    \"status\": false,\n    \"message\": null,\n    \"data\": {\n        \"assets_count\": 1,\n        \"id\": \"17391959752866\",\n        \"employee_id\": \"137086\",\n        \"employee_name\": \"Arlene Bechtelar\",\n        \"employee\": {\n            \"id\": 137086,\n            \"available_rent_budget\": 10000,\n            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n            \"total_rent_budget\": 10000,\n            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n            \"negative_available_rent_budget\": 10000,\n            \"available_purchase_budget\": 9999,\n            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n            \"total_purchase_budget\": 10000,\n            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n            \"negative_available_purchase_budget\": 9999,\n            \"department_id\": 19449,\n            \"manual_sync\": false,\n            \"user\": {\n                \"id\": 139713,\n                \"name\": \"Arlene\",\n                \"last_name\": \"Bechtelar\",\n                \"phone_number\": \"(712) 227-8721\",\n                \"personal_phone_number\": \"(828) 486-8981\",\n                \"invite\": {\n                    \"id\": 83088,\n                    \"email\": \"arlene.bechtelar@omartest.com\",\n                    \"status\": \"Sent\",\n                    \"department_id\": 19449,\n                    \"invitee_role_id\": 3,\n                    \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:48.000000Z\"\n                },\n                \"employer\": {\n                    \"id\": 490,\n                    \"company_name\": \"Omar Test\",\n                    \"city\": null,\n                    \"total_employees\": 12,\n                    \"address_line_1\": null,\n                    \"warehouse_storage_code\": null,\n                    \"postcode\": null,\n                    \"catalog_id\": 801,\n                    \"currency_id\": 2,\n                    \"message\": null,\n                    \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                    \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                    \"synced_asset\": 1,\n                    \"org_id\": null,\n                    \"announcement\": 0,\n                    \"settings\": [\n                        {\n                            \"id\": 1,\n                            \"name\": \"Sort By Suppliers\",\n                            \"slug\": \"sort-by-suppliers\",\n                            \"description\": \"\",\n                            \"order_by\": \"asc\"\n                        },\n                        {\n                            \"id\": 2,\n                            \"name\": \"Perks\",\n                            \"slug\": \"perks\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 3,\n                            \"name\": \"Return Product\",\n                            \"slug\": \"return-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 7,\n                            \"name\": \"Cancel Product\",\n                            \"slug\": \"cancel-product\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 8,\n                            \"name\": \"Offboard Employee\",\n                            \"slug\": \"offboard-employee\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 9,\n                            \"name\": \"Generate Token\",\n                            \"slug\": \"generate-token\",\n                            \"description\": \"\"\n                        },\n                        {\n                            \"id\": 11,\n                            \"name\": \"Warehouse\",\n                            \"slug\": \"warehouse\",\n                            \"description\": \"Warehouse Features\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"name\": \"Automations\",\n                            \"slug\": \"automations\",\n                            \"description\": \"This will enable automations like auto-off-boarding.\"\n                        },\n                        {\n                            \"id\": 13,\n                            \"name\": \"Decommission\",\n                            \"slug\": \"decommission_feature\",\n                            \"description\": \"Decommission feature for employers\"\n                        }\n                    ],\n                    \"total_orders\": 12,\n                    \"account_type\": \"sales_demo\",\n                    \"total_pending_requests\": 2\n                },\n                \"employee\": {\n                    \"id\": 137086,\n                    \"available_rent_budget\": 10000,\n                    \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"total_rent_budget\": 10000,\n                    \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_rent_budget\": 10000,\n                    \"available_purchase_budget\": 9999,\n                    \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                    \"total_purchase_budget\": 10000,\n                    \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                    \"negative_available_purchase_budget\": 9999,\n                    \"department_id\": 19449,\n                    \"manual_sync\": false,\n                    \"user\": {\n                        \"id\": 139713,\n                        \"name\": \"Arlene\",\n                        \"last_name\": \"Bechtelar\",\n                        \"phone_number\": \"(712) 227-8721\",\n                        \"personal_phone_number\": \"(828) 486-8981\",\n                        \"invite\": {\n                            \"id\": 83088,\n                            \"email\": \"arlene.bechtelar@omartest.com\",\n                            \"status\": \"Sent\",\n                            \"department_id\": 19449,\n                            \"invitee_role_id\": 3,\n                            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n                            \"updated_at\": \"2025-02-06T10:36:48.000000Z\"\n                        },\n                        \"employer\": {\n                            \"id\": 490,\n                            \"company_name\": \"Omar Test\",\n                            \"city\": null,\n                            \"total_employees\": 12,\n                            \"address_line_1\": null,\n                            \"warehouse_storage_code\": null,\n                            \"postcode\": null,\n                            \"catalog_id\": 801,\n                            \"currency_id\": 2,\n                            \"message\": null,\n                            \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                            \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                            \"synced_asset\": 1,\n                            \"org_id\": null,\n                            \"announcement\": 0,\n                            \"settings\": [\n                                {\n                                    \"id\": 1,\n                                    \"name\": \"Sort By Suppliers\",\n                                    \"slug\": \"sort-by-suppliers\",\n                                    \"description\": \"\",\n                                    \"order_by\": \"asc\"\n                                },\n                                {\n                                    \"id\": 2,\n                                    \"name\": \"Perks\",\n                                    \"slug\": \"perks\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 3,\n                                    \"name\": \"Return Product\",\n                                    \"slug\": \"return-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 7,\n                                    \"name\": \"Cancel Product\",\n                                    \"slug\": \"cancel-product\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 8,\n                                    \"name\": \"Offboard Employee\",\n                                    \"slug\": \"offboard-employee\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 9,\n                                    \"name\": \"Generate Token\",\n                                    \"slug\": \"generate-token\",\n                                    \"description\": \"\"\n                                },\n                                {\n                                    \"id\": 11,\n                                    \"name\": \"Warehouse\",\n                                    \"slug\": \"warehouse\",\n                                    \"description\": \"Warehouse Features\"\n                                },\n                                {\n                                    \"id\": 12,\n                                    \"name\": \"Automations\",\n                                    \"slug\": \"automations\",\n                                    \"description\": \"This will enable automations like auto-off-boarding.\"\n                                },\n                                {\n                                    \"id\": 13,\n                                    \"name\": \"Decommission\",\n                                    \"slug\": \"decommission_feature\",\n                                    \"description\": \"Decommission feature for employers\"\n                                }\n                            ],\n                            \"total_orders\": 12,\n                            \"account_type\": \"sales_demo\",\n                            \"total_pending_requests\": 2\n                        },\n                        \"employee\": {\n                            \"id\": 137086,\n                            \"available_rent_budget\": 10000,\n                            \"available_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"total_rent_budget\": 10000,\n                            \"total_rent_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_rent_budget\": 10000,\n                            \"available_purchase_budget\": 9999,\n                            \"available_purchase_budget_formatted\": \"€ 9.999,00\",\n                            \"total_purchase_budget\": 10000,\n                            \"total_purchase_budget_formatted\": \"€ 10.000,00\",\n                            \"negative_available_purchase_budget\": 9999,\n                            \"department_id\": 19449,\n                            \"manual_sync\": false,\n                            \"department\": {\n                                \"id\": 19449,\n                                \"employer_id\": 490,\n                                \"name\": \"Sales\",\n                                \"rent_budget\": 10000,\n                                \"purchase_budget\": 10000,\n                                \"custom\": 0,\n                                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                                \"employees_count\": 5,\n                                \"budget_type\": \"fixed\",\n                                \"budgets\": [\n                                    {\n                                        \"id\": 8911,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"purchase\"\n                                    },\n                                    {\n                                        \"id\": 8912,\n                                        \"name\": null,\n                                        \"icon\": null,\n                                        \"amount\": 10000,\n                                        \"formatted_amount\": \"€ 10000.00\",\n                                        \"currency\": \"EUR\",\n                                        \"type\": \"rental\"\n                                    }\n                                ],\n                                \"auto_approve_orders\": true,\n                                \"auto_offboarding\": false,\n                                \"user_id\": null\n                            },\n                            \"employer\": {\n                                \"id\": 490,\n                                \"company_name\": \"Omar Test\",\n                                \"city\": null,\n                                \"total_employees\": 12,\n                                \"address_line_1\": null,\n                                \"warehouse_storage_code\": null,\n                                \"postcode\": null,\n                                \"catalog_id\": 801,\n                                \"currency_id\": 2,\n                                \"message\": null,\n                                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                                \"synced_asset\": 1,\n                                \"org_id\": null,\n                                \"announcement\": 0,\n                                \"total_orders\": 12,\n                                \"account_type\": \"sales_demo\",\n                                \"total_pending_requests\": 2\n                            },\n                            \"currency\": {\n                                \"id\": 2,\n                                \"icon\": \"€\",\n                                \"name\": \"EUR\",\n                                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                            },\n                            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n                            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n                            \"entity\": null,\n                            \"invitation_accepted\": false,\n                            \"status\": \"added\",\n                            \"balances\": [\n                                {\n                                    \"id\": 249350,\n                                    \"budget_id\": 8911,\n                                    \"bugdet_balance_type\": \"purchase\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                },\n                                {\n                                    \"id\": 249351,\n                                    \"budget_id\": 8912,\n                                    \"bugdet_balance_type\": \"rental\",\n                                    \"available_balance\": 10000,\n                                    \"formatted_available_balance\": \"€ 10000.00\"\n                                }\n                            ],\n                            \"address\": {\n                                \"id\": 136665,\n                                \"city\": \"Marjoryborough\",\n                                \"country\": {\n                                    \"id\": 32,\n                                    \"name\": \"Netherlands\",\n                                    \"code\": \"NL\",\n                                    \"requires_tin\": false\n                                },\n                                \"company_name\": null,\n                                \"country_id\": 32,\n                                \"address_line_1\": \"Brooke Place\",\n                                \"address_line_2\": \"696\",\n                                \"region\": \"Wisconsin\",\n                                \"postcode\": \"59473-2473\",\n                                \"postal_code\": \"59473-2473\",\n                                \"additional_address_line\": \"Ways\",\n                                \"name\": \"Arlene\",\n                                \"first_name\": \"Arlene\",\n                                \"last_name\": \"Bechtelar\",\n                                \"email\": \"arlene.bechtelar@omartest.com\",\n                                \"phone_number\": \"(712) 227-8721\"\n                            },\n                            \"employment_start_date\": null,\n                            \"employment_end_date\": null,\n                            \"tax_identification_number\": null\n                        },\n                        \"email\": \"arlene.bechtelar@omartest.com\",\n                        \"personal_email\": \"sauer.vernie@example.net\",\n                        \"created_at\": \"2025-02-06T10:36:47.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:47.000000Z\",\n                        \"role\": {\n                            \"id\": 3,\n                            \"display_name\": \"Employee\",\n                            \"name\": \"employee\"\n                        },\n                        \"original_role\": {\n                            \"id\": 3,\n                            \"display_name\": \"Employee\",\n                            \"name\": \"employee\"\n                        },\n                        \"sub\": null,\n                        \"read_privacy\": 0,\n                        \"hasAsset\": true,\n                        \"status\": \"Sent\",\n                        \"display_name\": \"Arlene Bechtelar\",\n                        \"is_deactivated\": false\n                    },\n                    \"name\": \"Arlene Bechtelar\",\n                    \"department\": {\n                        \"id\": 19449,\n                        \"employer_id\": 490,\n                        \"name\": \"Sales\",\n                        \"rent_budget\": 10000,\n                        \"purchase_budget\": 10000,\n                        \"custom\": 0,\n                        \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                        \"employees_count\": 5,\n                        \"budget_type\": \"fixed\",\n                        \"budgets\": [\n                            {\n                                \"id\": 8911,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"purchase\"\n                            },\n                            {\n                                \"id\": 8912,\n                                \"name\": null,\n                                \"icon\": null,\n                                \"amount\": 10000,\n                                \"formatted_amount\": \"€ 10000.00\",\n                                \"currency\": \"EUR\",\n                                \"type\": \"rental\"\n                            }\n                        ],\n                        \"auto_approve_orders\": true,\n                        \"auto_offboarding\": false,\n                        \"user_id\": null\n                    },\n                    \"employer\": {\n                        \"id\": 490,\n                        \"company_name\": \"Omar Test\",\n                        \"city\": null,\n                        \"total_employees\": 12,\n                        \"address_line_1\": null,\n                        \"warehouse_storage_code\": null,\n                        \"postcode\": null,\n                        \"catalog_id\": 801,\n                        \"currency_id\": 2,\n                        \"message\": null,\n                        \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                        \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                        \"synced_asset\": 1,\n                        \"org_id\": null,\n                        \"announcement\": 0,\n                        \"total_orders\": 12,\n                        \"account_type\": \"sales_demo\",\n                        \"total_pending_requests\": 2\n                    },\n                    \"currency\": {\n                        \"id\": 2,\n                        \"icon\": \"€\",\n                        \"name\": \"EUR\",\n                        \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                        \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n                    },\n                    \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n                    \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n                    \"entity\": null,\n                    \"invitation_accepted\": false,\n                    \"status\": \"added\",\n                    \"balances\": [\n                        {\n                            \"id\": 249350,\n                            \"budget_id\": 8911,\n                            \"bugdet_balance_type\": \"purchase\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        },\n                        {\n                            \"id\": 249351,\n                            \"budget_id\": 8912,\n                            \"bugdet_balance_type\": \"rental\",\n                            \"available_balance\": 10000,\n                            \"formatted_available_balance\": \"€ 10000.00\"\n                        }\n                    ],\n                    \"address\": {\n                        \"id\": 136665,\n                        \"city\": \"Marjoryborough\",\n                        \"country\": {\n                            \"id\": 32,\n                            \"name\": \"Netherlands\",\n                            \"code\": \"NL\",\n                            \"requires_tin\": false\n                        },\n                        \"company_name\": null,\n                        \"country_id\": 32,\n                        \"address_line_1\": \"Brooke Place\",\n                        \"address_line_2\": \"696\",\n                        \"region\": \"Wisconsin\",\n                        \"postcode\": \"59473-2473\",\n                        \"postal_code\": \"59473-2473\",\n                        \"additional_address_line\": \"Ways\",\n                        \"name\": \"Arlene\",\n                        \"first_name\": \"Arlene\",\n                        \"last_name\": \"Bechtelar\",\n                        \"email\": \"arlene.bechtelar@omartest.com\",\n                        \"phone_number\": \"(712) 227-8721\"\n                    },\n                    \"employment_start_date\": null,\n                    \"employment_end_date\": null,\n                    \"tax_identification_number\": null\n                },\n                \"email\": \"arlene.bechtelar@omartest.com\",\n                \"personal_email\": \"sauer.vernie@example.net\",\n                \"created_at\": \"2025-02-06T10:36:47.000000Z\",\n                \"updated_at\": \"2025-02-06T10:36:47.000000Z\",\n                \"role\": {\n                    \"id\": 3,\n                    \"display_name\": \"Employee\",\n                    \"name\": \"employee\"\n                },\n                \"original_role\": {\n                    \"id\": 3,\n                    \"display_name\": \"Employee\",\n                    \"name\": \"employee\"\n                },\n                \"sub\": null,\n                \"read_privacy\": 0,\n                \"hasAsset\": true,\n                \"status\": \"Sent\",\n                \"display_name\": \"Arlene Bechtelar\",\n                \"is_deactivated\": false\n            },\n            \"name\": \"Arlene Bechtelar\",\n            \"department\": {\n                \"id\": 19449,\n                \"employer_id\": 490,\n                \"name\": \"Sales\",\n                \"rent_budget\": 10000,\n                \"purchase_budget\": 10000,\n                \"custom\": 0,\n                \"created_at\": \"2025-02-06T10:36:45.000000Z\",\n                \"updated_at\": \"2025-02-06T10:36:45.000000Z\",\n                \"employees_count\": 5,\n                \"budget_type\": \"fixed\",\n                \"budgets\": [\n                    {\n                        \"id\": 8911,\n                        \"name\": null,\n                        \"icon\": null,\n                        \"amount\": 10000,\n                        \"formatted_amount\": \"€ 10000.00\",\n                        \"currency\": \"EUR\",\n                        \"type\": \"purchase\"\n                    },\n                    {\n                        \"id\": 8912,\n                        \"name\": null,\n                        \"icon\": null,\n                        \"amount\": 10000,\n                        \"formatted_amount\": \"€ 10000.00\",\n                        \"currency\": \"EUR\",\n                        \"type\": \"rental\"\n                    }\n                ],\n                \"auto_approve_orders\": true,\n                \"auto_offboarding\": false,\n                \"user_id\": null\n            },\n            \"employer\": {\n                \"id\": 490,\n                \"company_name\": \"Omar Test\",\n                \"city\": null,\n                \"total_employees\": 12,\n                \"address_line_1\": null,\n                \"warehouse_storage_code\": null,\n                \"postcode\": null,\n                \"catalog_id\": 801,\n                \"currency_id\": 2,\n                \"message\": null,\n                \"created_at\": \"2025-02-06T09:11:54.000000Z\",\n                \"updated_at\": \"2025-02-06T09:17:09.000000Z\",\n                \"synced_asset\": 1,\n                \"org_id\": null,\n                \"announcement\": 0,\n                \"total_orders\": 12,\n                \"account_type\": \"sales_demo\",\n                \"total_pending_requests\": 2\n            },\n            \"currency\": {\n                \"id\": 2,\n                \"icon\": \"€\",\n                \"name\": \"EUR\",\n                \"created_at\": \"2020-12-25T13:32:23.000000Z\",\n                \"updated_at\": \"2020-12-25T13:32:23.000000Z\"\n            },\n            \"created_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"updated_at\": \"2025-02-06T10:36:48.000000Z\",\n            \"entity\": null,\n            \"invitation_accepted\": false,\n            \"status\": \"added\",\n            \"balances\": [\n                {\n                    \"id\": 249350,\n                    \"budget_id\": 8911,\n                    \"bugdet_balance_type\": \"purchase\",\n                    \"available_balance\": 10000,\n                    \"formatted_available_balance\": \"€ 10000.00\"\n                },\n                {\n                    \"id\": 249351,\n                    \"budget_id\": 8912,\n                    \"bugdet_balance_type\": \"rental\",\n                    \"available_balance\": 10000,\n                    \"formatted_available_balance\": \"€ 10000.00\"\n                }\n            ],\n            \"address\": {\n                \"id\": 136665,\n                \"city\": \"Marjoryborough\",\n                \"country\": {\n                    \"id\": 32,\n                    \"name\": \"Netherlands\",\n                    \"code\": \"NL\",\n                    \"requires_tin\": false\n                },\n                \"company_name\": null,\n                \"country_id\": 32,\n                \"address_line_1\": \"Brooke Place\",\n                \"address_line_2\": \"696\",\n                \"region\": \"Wisconsin\",\n                \"postcode\": \"59473-2473\",\n                \"postal_code\": \"59473-2473\",\n                \"additional_address_line\": \"Ways\",\n                \"name\": \"Arlene\",\n                \"first_name\": \"Arlene\",\n                \"last_name\": \"Bechtelar\",\n                \"email\": \"arlene.bechtelar@omartest.com\",\n                \"phone_number\": \"(712) 227-8721\"\n            },\n            \"employment_start_date\": null,\n            \"employment_end_date\": null,\n            \"tax_identification_number\": null\n        },\n        \"name\": \"Arlene Bechtelar\",\n        \"city\": null,\n        \"address_line_1\": null,\n        \"postal_code\": null,\n        \"address_line_2\": null,\n        \"region\": null,\n        \"country_id\": null,\n        \"country\": null,\n        \"extra_info\": null,\n        \"email\": \"sauer.vernie@example.net\",\n        \"phone_number\": \"(828) 486-8981\",\n        \"company_name\": \"Omar Test\",\n        \"approved_at\": null,\n        \"approved_at_formatted\": \"2025-02-10\",\n        \"status\": \"request_received\",\n        \"type\": null,\n        \"assets\": [\n            {\n                \"id\": 66507913,\n                \"offboard_asset_condition\": null,\n                \"name\": \"HP, EliteBook 840 G9, Intel Core i7 - 1255U, 2024, 14\\\", 16GB RAM, 512GB SSD, QWERTY UK, Silver, Laptops\",\n                \"image\": \"https://workwize-bucket.s3.eu-west-3.amazonaws.com/products/1730198884-vQnoswtbFFv6I8E0PEAlimage1-sq.jpg\",\n                \"serial_code\": \"GJKF31QWSW\",\n                \"category\": {\n                    \"id\": 86,\n                    \"name\": \"Laptops\",\n                    \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n                    \"updated_at\": \"2021-05-05T15:28:06.000000Z\",\n                    \"deleted_at\": null,\n                    \"name_template\": null\n                },\n                \"type\": \"Buy\",\n                \"date_ordered\": \"2024-02-27 11:26:02\",\n                \"date_ordered_formatted\": \"Feb 27, 2024\",\n                \"note\": null,\n                \"tags\": [],\n                \"offboard_asset_notes\": null\n            }\n        ],\n        \"created_at\": \"2025-02-10T13:59:35.000000Z\",\n        \"created_at_formatted\": \"2025-02-10\",\n        \"notified_employee_at\": null,\n        \"notified_employee_at_formatted\": null,\n        \"requestor_id\": 490,\n        \"offboarded_by\": 139558,\n        \"offboarded_by_name\": \"Omar Shehabi\",\n        \"destination_type\": \"warehouse\",\n        \"destination_id\": null,\n        \"destination_name\": \"Warehouse \",\n        \"shipments\": []\n    },\n    \"links\": {},\n    \"meta\": {},\n    \"errors\": [],\n    \"redirect\": \"\"\n}"}],"_postman_id":"cc80adeb-02eb-453d-8900-aaf4e1e27b5a"}],"id":"388ed925-aefd-4586-a680-ac2310b02130","description":"<p>Employee offboarding management endpoints for processing employee departures and managing exit procedures.</p>\n","_postman_id":"388ed925-aefd-4586-a680-ac2310b02130","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Categories","item":[{"name":"Get Categories","id":"65c8e782-8af2-4d7f-a1fe-9c0d93071f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"/categories","description":"<p>Get a list of all available categories.</p>\n","urlObject":{"path":["categories"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"7152be1f-7626-4bf4-a323-02b42b05416d","name":"Successful Response","originalRequest":{"method":"GET","header":[],"url":"/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 10 Feb 2025 14:12:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3,\n            \"name\": \"Non-adjustable Desks\",\n            \"created_at\": \"2020-12-15T09:33:37.000000Z\",\n            \"updated_at\": \"2023-09-18T11:12:13.000000Z\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Accessories\",\n            \"created_at\": \"2021-01-04T15:23:44.000000Z\",\n            \"updated_at\": \"2024-04-11T06:57:37.000000Z\"\n        },\n        {\n            \"id\": 33,\n            \"name\": \"External Hard Drive\",\n            \"created_at\": \"2021-01-21T17:51:57.000000Z\",\n            \"updated_at\": \"2023-09-18T11:18:24.000000Z\"\n        },\n        {\n            \"id\": 42,\n            \"name\": \"Stools & Seating balls\",\n            \"created_at\": \"2021-02-24T16:30:13.000000Z\",\n            \"updated_at\": \"2023-09-18T12:55:14.000000Z\"\n        },\n        {\n            \"id\": 44,\n            \"name\": \"Workstations\",\n            \"created_at\": \"2021-03-04T12:43:18.000000Z\",\n            \"updated_at\": \"2023-09-18T12:55:47.000000Z\"\n        },\n        {\n            \"id\": 81,\n            \"name\": \"Graphic Tablets\",\n            \"created_at\": \"2021-04-22T10:15:00.000000Z\",\n            \"updated_at\": \"2023-09-18T12:58:23.000000Z\"\n        },\n        {\n            \"id\": 82,\n            \"name\": \"Routers\",\n            \"created_at\": \"2021-04-22T10:15:01.000000Z\",\n            \"updated_at\": \"2023-09-18T12:58:35.000000Z\"\n        },\n        {\n            \"id\": 86,\n            \"name\": \"Laptops\",\n            \"created_at\": \"2021-05-05T15:28:06.000000Z\",\n            \"updated_at\": \"2021-05-05T15:28:06.000000Z\"\n        },\n        {\n            \"id\": 92,\n            \"name\": \"Docking Stations & USB Hubs\",\n            \"created_at\": \"2021-05-05T17:58:53.000000Z\",\n            \"updated_at\": \"2021-05-05T17:58:53.000000Z\"\n        },\n        {\n            \"id\": 94,\n            \"name\": \"Headphones\",\n            \"created_at\": \"2021-05-05T17:58:54.000000Z\",\n            \"updated_at\": \"2021-05-05T17:58:54.000000Z\"\n        },\n        {\n            \"id\": 95,\n            \"name\": \"Tablets\",\n            \"created_at\": \"2021-05-05T17:58:54.000000Z\",\n            \"updated_at\": \"2021-05-05T17:58:54.000000Z\"\n        },\n        {\n            \"id\": 99,\n            \"name\": \"Monitors\",\n            \"created_at\": \"2021-05-28T12:57:49.000000Z\",\n            \"updated_at\": \"2021-05-28T12:57:49.000000Z\"\n        },\n        {\n            \"id\": 176,\n            \"name\": \"Footrests\",\n            \"created_at\": \"2021-06-29T14:22:38.000000Z\",\n            \"updated_at\": \"2021-06-29T14:22:38.000000Z\"\n        },\n        {\n            \"id\": 177,\n            \"name\": \"Lamps\",\n            \"created_at\": \"2021-06-29T14:22:38.000000Z\",\n            \"updated_at\": \"2023-08-18T10:42:23.000000Z\"\n        },\n        {\n            \"id\": 178,\n            \"name\": \"Office TVs & Monitors\",\n            \"created_at\": \"2021-06-29T14:22:38.000000Z\",\n            \"updated_at\": \"2023-09-18T13:04:53.000000Z\"\n        },\n        {\n            \"id\": 180,\n            \"name\": \"Keyboards\",\n            \"created_at\": \"2021-06-29T14:22:38.000000Z\",\n            \"updated_at\": \"2021-06-29T14:22:38.000000Z\"\n        },\n        {\n            \"id\": 181,\n            \"name\": \"Mice\",\n            \"created_at\": \"2021-06-29T14:22:38.000000Z\",\n            \"updated_at\": \"2021-06-29T14:22:38.000000Z\"\n        },\n        {\n            \"id\": 186,\n            \"name\": \"Office Chairs\",\n            \"created_at\": \"2021-07-02T11:07:43.000000Z\",\n            \"updated_at\": \"2021-07-02T11:07:43.000000Z\"\n        },\n        {\n            \"id\": 189,\n            \"name\": \"Floor Mats\",\n            \"created_at\": \"2021-07-02T11:07:44.000000Z\",\n            \"updated_at\": \"2021-07-02T11:07:44.000000Z\"\n        },\n        {\n            \"id\": 196,\n            \"name\": \"Monitor Arms\",\n            \"created_at\": \"2021-07-02T11:07:44.000000Z\",\n            \"updated_at\": \"2021-07-02T11:07:44.000000Z\"\n        },\n        {\n            \"id\": 200,\n            \"name\": \"Other Office Supplies\",\n            \"created_at\": \"2021-07-02T11:07:44.000000Z\",\n            \"updated_at\": \"2023-09-18T13:12:04.000000Z\"\n        },\n        {\n            \"id\": 209,\n            \"name\": \"Stationary\",\n            \"created_at\": \"2021-07-27T12:17:21.000000Z\",\n            \"updated_at\": \"2023-09-18T13:10:21.000000Z\"\n        },\n        {\n            \"id\": 216,\n            \"name\": \"Trackpads\",\n            \"created_at\": \"2021-08-13T13:33:06.000000Z\",\n            \"updated_at\": \"2021-08-13T13:33:06.000000Z\"\n        },\n        {\n            \"id\": 225,\n            \"name\": \"Webcams\",\n            \"created_at\": \"2021-09-27T08:57:03.000000Z\",\n            \"updated_at\": \"2021-09-27T08:57:03.000000Z\"\n        },\n        {\n            \"id\": 233,\n            \"name\": \"Company Merchandise\",\n            \"created_at\": \"2021-11-05T11:53:26.000000Z\",\n            \"updated_at\": \"2023-09-18T13:14:32.000000Z\"\n        },\n        {\n            \"id\": 240,\n            \"name\": \"Printers\",\n            \"created_at\": \"2021-11-18T12:23:02.000000Z\",\n            \"updated_at\": \"2021-11-18T12:23:02.000000Z\"\n        },\n        {\n            \"id\": 249,\n            \"name\": \"Phones\",\n            \"created_at\": \"2021-12-23T11:05:16.000000Z\",\n            \"updated_at\": \"2021-12-23T11:05:16.000000Z\"\n        },\n        {\n            \"id\": 265,\n            \"name\": \"Speakers\",\n            \"created_at\": \"2022-12-21T09:55:43.000000Z\",\n            \"updated_at\": \"2022-12-21T09:55:43.000000Z\"\n        },\n        {\n            \"id\": 269,\n            \"name\": \"Adjustable Desk\",\n            \"created_at\": \"2023-06-27T09:43:37.000000Z\",\n            \"updated_at\": \"2023-06-27T09:43:37.000000Z\"\n        },\n        {\n            \"id\": 270,\n            \"name\": \"Laptop & Monitor Stands\",\n            \"created_at\": \"2023-06-27T10:56:19.000000Z\",\n            \"updated_at\": \"2023-06-27T10:56:19.000000Z\"\n        },\n        {\n            \"id\": 271,\n            \"name\": \"Others\",\n            \"created_at\": \"2023-07-04T04:03:17.000000Z\",\n            \"updated_at\": \"2023-07-04T04:03:17.000000Z\"\n        },\n        {\n            \"id\": 272,\n            \"name\": \"Keyboard & Mouse Combos\",\n            \"created_at\": \"2023-07-04T06:44:40.000000Z\",\n            \"updated_at\": \"2023-07-04T06:44:40.000000Z\"\n        },\n        {\n            \"id\": 273,\n            \"name\": \"Adapters & Cables\",\n            \"created_at\": \"2023-07-06T13:53:47.000000Z\",\n            \"updated_at\": \"2023-07-06T13:53:47.000000Z\"\n        },\n        {\n            \"id\": 274,\n            \"name\": \"Privacy & Concentration Screens\",\n            \"created_at\": \"2023-07-07T04:56:09.000000Z\",\n            \"updated_at\": \"2023-07-07T04:56:09.000000Z\"\n        },\n        {\n            \"id\": 275,\n            \"name\": \"Back, Neck and Shoulder Supports\",\n            \"created_at\": \"2023-07-28T10:38:33.000000Z\",\n            \"updated_at\": \"2023-07-28T10:38:33.000000Z\"\n        },\n        {\n            \"id\": 276,\n            \"name\": \"Wifi Extenders\",\n            \"created_at\": \"2023-08-14T09:22:15.000000Z\",\n            \"updated_at\": \"2023-08-14T09:22:15.000000Z\"\n        },\n        {\n            \"id\": 277,\n            \"name\": \"Mouse Pads & Wrist Rests\",\n            \"created_at\": \"2023-08-14T10:35:01.000000Z\",\n            \"updated_at\": \"2023-08-14T10:35:01.000000Z\"\n        },\n        {\n            \"id\": 278,\n            \"name\": \"Laptop Bags, Cases & Sleeves\",\n            \"created_at\": \"2023-08-16T04:40:59.000000Z\",\n            \"updated_at\": \"2023-08-16T04:40:59.000000Z\"\n        },\n        {\n            \"id\": 279,\n            \"name\": \"USB Flash Drives\",\n            \"created_at\": \"2023-08-24T08:47:32.000000Z\",\n            \"updated_at\": \"2023-08-24T08:47:32.000000Z\"\n        },\n        {\n            \"id\": 280,\n            \"name\": \"Desktops\",\n            \"created_at\": \"2023-09-13T08:40:08.000000Z\",\n            \"updated_at\": \"2023-09-13T08:40:08.000000Z\"\n        },\n        {\n            \"id\": 281,\n            \"name\": \"Video Projectors\",\n            \"created_at\": \"2024-03-26T10:39:03.000000Z\",\n            \"updated_at\": \"2024-03-26T10:39:03.000000Z\"\n        },\n        {\n            \"id\": 282,\n            \"name\": \"Gaming Chairs\",\n            \"created_at\": \"2024-11-12T21:00:40.000000Z\",\n            \"updated_at\": \"2024-11-12T21:00:40.000000Z\"\n        },\n        {\n            \"id\": 283,\n            \"name\": \"Scanners\",\n            \"created_at\": \"2024-11-12T21:01:16.000000Z\",\n            \"updated_at\": \"2024-11-12T21:01:16.000000Z\"\n        }\n    ]\n}"}],"_postman_id":"65c8e782-8af2-4d7f-a1fe-9c0d93071f49"}],"id":"9cdca8b9-17ee-4906-8fec-b04a880ab34c","description":"<p>Product and asset categorization endpoints for organizing and filtering items by type, department, or other classification criteria.</p>\n","_postman_id":"9cdca8b9-17ee-4906-8fec-b04a880ab34c","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Invites","item":[{"name":"Send Invite","id":"7455aab8-4065-4bef-9eae-dadccb018f5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"test123@email.com\"\n}","options":{"raw":{"language":"json"}}},"url":"/invites","description":"<p>Sends invites to employees that are already created in the platform.</p>\n","urlObject":{"path":["invites"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"907878ba-4583-4919-bf5e-42423f4d37b4","name":"Successful Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"test123@email.com\"\n}","options":{"raw":{"language":"json"}}},"url":"/invites"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 10 Feb 2025 14:24:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"invitation sent\"\n}"}],"_postman_id":"7455aab8-4065-4bef-9eae-dadccb018f5b"}],"id":"204d9f58-7047-4324-a4d6-18cecb6f10ed","description":"<p>User invitation management endpoints for sending and managing invitations to join the Workwize platform.</p>\n","_postman_id":"204d9f58-7047-4324-a4d6-18cecb6f10ed","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Tags","item":[{"name":"Get all Tags","id":"d6a62dbe-905f-4adf-8694-ece0135086fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI2IiwianRpIjoiNmEzYzk5ZmY0NTA2ZTJlNTIxNjM0NmQ2NWNhNGExZjZjZjBjMTJmMDgxYWI3ZDkwZGQyYTBjYjFhMDhjNDY5ODRmNjdjODNhYTZlZDMyYWQiLCJpYXQiOjE3Mzg3NjQxMjQuODA2MTY0LCJuYmYiOjE3Mzg3NjQxMjQuODA2MTY1LCJleHAiOjE3NTQ0MDI1MjQuNzk3MjM2LCJzdWIiOiI3MTIwMiIsInNjb3BlcyI6W119.PuKkLeKzuNFttMNAcN79zU04myqCKhsLg0g3DYQvBMG0reeH-83aqf3PAfYfo0_zwOa5nGAAdYQB_0bESpbpqP6YG8ypvB6kPmXRKYCj8nfSegGvznTPLOeNZrV3uYmR87wdqcQvMxAVq0VXZKFznRpi5LjpEvyQldtZDcq1oHspBoc-SN2M4CentqbBkEe-yh8mskHFREEtt35QIpeRDUbL1oCWjMqn0K8WxDcFHJ9wvO49ST0DC7NKp7STKzlshlH4_rUVWDvpvtB7YnwGyoS9aJ8-x8gOi8XwEzjVobdc0q8B8HE8YQ27sVgevL5SSch3IXkeMluBX58cbCvCkW-16kPkRziEHtOsYOqZWzaecHiRvJRin1lHzkvdHd-bGWhnnRSV-4ZwV9uodqBn2oTCcI12Oniyv63lh__WgMFK-pQcHA_aG-Pa4e_fpgyqq8buMgvg6thC9Fu5-iMh-Kx3Hy6LMm8Hbs9nVGnH5hNyT0Ly-2ke0brLAOGiv58fSFVqS8i01K4e23EWgdI0Bwo_tE_LlV0spYzHFZB3-ATQi8HmA_BkBigLi_VXHTWR7PzJT7zZKs5vaorUwpAdCO63eQU2gi-i7oiiXiKn6aCJvpCaDupfnMwHd-oSk8RrWQR9JA6j-zBYAQjQNNTpr4KrBCnJ_oVTh9J8W6KAj3w"}],"url":"/tags/","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"path":["tags",""],"host":[""],"query":[],"variable":[]}},"response":[{"id":"cdf1b31b-2fc7-427a-9376-9a353ad1828c","name":"Filter by name","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI2IiwianRpIjoiNmEzYzk5ZmY0NTA2ZTJlNTIxNjM0NmQ2NWNhNGExZjZjZjBjMTJmMDgxYWI3ZDkwZGQyYTBjYjFhMDhjNDY5ODRmNjdjODNhYTZlZDMyYWQiLCJpYXQiOjE3Mzg3NjQxMjQuODA2MTY0LCJuYmYiOjE3Mzg3NjQxMjQuODA2MTY1LCJleHAiOjE3NTQ0MDI1MjQuNzk3MjM2LCJzdWIiOiI3MTIwMiIsInNjb3BlcyI6W119.PuKkLeKzuNFttMNAcN79zU04myqCKhsLg0g3DYQvBMG0reeH-83aqf3PAfYfo0_zwOa5nGAAdYQB_0bESpbpqP6YG8ypvB6kPmXRKYCj8nfSegGvznTPLOeNZrV3uYmR87wdqcQvMxAVq0VXZKFznRpi5LjpEvyQldtZDcq1oHspBoc-SN2M4CentqbBkEe-yh8mskHFREEtt35QIpeRDUbL1oCWjMqn0K8WxDcFHJ9wvO49ST0DC7NKp7STKzlshlH4_rUVWDvpvtB7YnwGyoS9aJ8-x8gOi8XwEzjVobdc0q8B8HE8YQ27sVgevL5SSch3IXkeMluBX58cbCvCkW-16kPkRziEHtOsYOqZWzaecHiRvJRin1lHzkvdHd-bGWhnnRSV-4ZwV9uodqBn2oTCcI12Oniyv63lh__WgMFK-pQcHA_aG-Pa4e_fpgyqq8buMgvg6thC9Fu5-iMh-Kx3Hy6LMm8Hbs9nVGnH5hNyT0Ly-2ke0brLAOGiv58fSFVqS8i01K4e23EWgdI0Bwo_tE_LlV0spYzHFZB3-ATQi8HmA_BkBigLi_VXHTWR7PzJT7zZKs5vaorUwpAdCO63eQU2gi-i7oiiXiKn6aCJvpCaDupfnMwHd-oSk8RrWQR9JA6j-zBYAQjQNNTpr4KrBCnJ_oVTh9J8W6KAj3w"}],"url":{"raw":"/tags/?filter[name]=project","host":[""],"path":["tags",""],"query":[{"key":"filter[name]","value":"project"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d6a62dbe-905f-4adf-8694-ece0135086fc"},{"name":"Get Tag","id":"cb166296-b4c7-4da5-a53e-75c9fcc6b71c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI2IiwianRpIjoiNmEzYzk5ZmY0NTA2ZTJlNTIxNjM0NmQ2NWNhNGExZjZjZjBjMTJmMDgxYWI3ZDkwZGQyYTBjYjFhMDhjNDY5ODRmNjdjODNhYTZlZDMyYWQiLCJpYXQiOjE3Mzg3NjQxMjQuODA2MTY0LCJuYmYiOjE3Mzg3NjQxMjQuODA2MTY1LCJleHAiOjE3NTQ0MDI1MjQuNzk3MjM2LCJzdWIiOiI3MTIwMiIsInNjb3BlcyI6W119.PuKkLeKzuNFttMNAcN79zU04myqCKhsLg0g3DYQvBMG0reeH-83aqf3PAfYfo0_zwOa5nGAAdYQB_0bESpbpqP6YG8ypvB6kPmXRKYCj8nfSegGvznTPLOeNZrV3uYmR87wdqcQvMxAVq0VXZKFznRpi5LjpEvyQldtZDcq1oHspBoc-SN2M4CentqbBkEe-yh8mskHFREEtt35QIpeRDUbL1oCWjMqn0K8WxDcFHJ9wvO49ST0DC7NKp7STKzlshlH4_rUVWDvpvtB7YnwGyoS9aJ8-x8gOi8XwEzjVobdc0q8B8HE8YQ27sVgevL5SSch3IXkeMluBX58cbCvCkW-16kPkRziEHtOsYOqZWzaecHiRvJRin1lHzkvdHd-bGWhnnRSV-4ZwV9uodqBn2oTCcI12Oniyv63lh__WgMFK-pQcHA_aG-Pa4e_fpgyqq8buMgvg6thC9Fu5-iMh-Kx3Hy6LMm8Hbs9nVGnH5hNyT0Ly-2ke0brLAOGiv58fSFVqS8i01K4e23EWgdI0Bwo_tE_LlV0spYzHFZB3-ATQi8HmA_BkBigLi_VXHTWR7PzJT7zZKs5vaorUwpAdCO63eQU2gi-i7oiiXiKn6aCJvpCaDupfnMwHd-oSk8RrWQR9JA6j-zBYAQjQNNTpr4KrBCnJ_oVTh9J8W6KAj3w"}],"url":"/tags/{{tag_id}}","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"path":["tags","{{tag_id}}"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"cb166296-b4c7-4da5-a53e-75c9fcc6b71c"},{"name":"Delete Tag","id":"913b8cc5-6377-4180-b149-624900de1da9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI2IiwianRpIjoiNmEzYzk5ZmY0NTA2ZTJlNTIxNjM0NmQ2NWNhNGExZjZjZjBjMTJmMDgxYWI3ZDkwZGQyYTBjYjFhMDhjNDY5ODRmNjdjODNhYTZlZDMyYWQiLCJpYXQiOjE3Mzg3NjQxMjQuODA2MTY0LCJuYmYiOjE3Mzg3NjQxMjQuODA2MTY1LCJleHAiOjE3NTQ0MDI1MjQuNzk3MjM2LCJzdWIiOiI3MTIwMiIsInNjb3BlcyI6W119.PuKkLeKzuNFttMNAcN79zU04myqCKhsLg0g3DYQvBMG0reeH-83aqf3PAfYfo0_zwOa5nGAAdYQB_0bESpbpqP6YG8ypvB6kPmXRKYCj8nfSegGvznTPLOeNZrV3uYmR87wdqcQvMxAVq0VXZKFznRpi5LjpEvyQldtZDcq1oHspBoc-SN2M4CentqbBkEe-yh8mskHFREEtt35QIpeRDUbL1oCWjMqn0K8WxDcFHJ9wvO49ST0DC7NKp7STKzlshlH4_rUVWDvpvtB7YnwGyoS9aJ8-x8gOi8XwEzjVobdc0q8B8HE8YQ27sVgevL5SSch3IXkeMluBX58cbCvCkW-16kPkRziEHtOsYOqZWzaecHiRvJRin1lHzkvdHd-bGWhnnRSV-4ZwV9uodqBn2oTCcI12Oniyv63lh__WgMFK-pQcHA_aG-Pa4e_fpgyqq8buMgvg6thC9Fu5-iMh-Kx3Hy6LMm8Hbs9nVGnH5hNyT0Ly-2ke0brLAOGiv58fSFVqS8i01K4e23EWgdI0Bwo_tE_LlV0spYzHFZB3-ATQi8HmA_BkBigLi_VXHTWR7PzJT7zZKs5vaorUwpAdCO63eQU2gi-i7oiiXiKn6aCJvpCaDupfnMwHd-oSk8RrWQR9JA6j-zBYAQjQNNTpr4KrBCnJ_oVTh9J8W6KAj3w"}],"url":"/tags/{{tag_id}}","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"path":["tags","{{tag_id}}"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"913b8cc5-6377-4180-b149-624900de1da9"},{"name":"Create Tag","id":"ffd7bc55-a9aa-4cb6-81ad-ef15ab20fb93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI2IiwianRpIjoiNmEzYzk5ZmY0NTA2ZTJlNTIxNjM0NmQ2NWNhNGExZjZjZjBjMTJmMDgxYWI3ZDkwZGQyYTBjYjFhMDhjNDY5ODRmNjdjODNhYTZlZDMyYWQiLCJpYXQiOjE3Mzg3NjQxMjQuODA2MTY0LCJuYmYiOjE3Mzg3NjQxMjQuODA2MTY1LCJleHAiOjE3NTQ0MDI1MjQuNzk3MjM2LCJzdWIiOiI3MTIwMiIsInNjb3BlcyI6W119.PuKkLeKzuNFttMNAcN79zU04myqCKhsLg0g3DYQvBMG0reeH-83aqf3PAfYfo0_zwOa5nGAAdYQB_0bESpbpqP6YG8ypvB6kPmXRKYCj8nfSegGvznTPLOeNZrV3uYmR87wdqcQvMxAVq0VXZKFznRpi5LjpEvyQldtZDcq1oHspBoc-SN2M4CentqbBkEe-yh8mskHFREEtt35QIpeRDUbL1oCWjMqn0K8WxDcFHJ9wvO49ST0DC7NKp7STKzlshlH4_rUVWDvpvtB7YnwGyoS9aJ8-x8gOi8XwEzjVobdc0q8B8HE8YQ27sVgevL5SSch3IXkeMluBX58cbCvCkW-16kPkRziEHtOsYOqZWzaecHiRvJRin1lHzkvdHd-bGWhnnRSV-4ZwV9uodqBn2oTCcI12Oniyv63lh__WgMFK-pQcHA_aG-Pa4e_fpgyqq8buMgvg6thC9Fu5-iMh-Kx3Hy6LMm8Hbs9nVGnH5hNyT0Ly-2ke0brLAOGiv58fSFVqS8i01K4e23EWgdI0Bwo_tE_LlV0spYzHFZB3-ATQi8HmA_BkBigLi_VXHTWR7PzJT7zZKs5vaorUwpAdCO63eQU2gi-i7oiiXiKn6aCJvpCaDupfnMwHd-oSk8RrWQR9JA6j-zBYAQjQNNTpr4KrBCnJ_oVTh9J8W6KAj3w"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Project Apollo\"\n  }","options":{"raw":{"language":"json"}}},"url":"/tags/","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"path":["tags",""],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"ffd7bc55-a9aa-4cb6-81ad-ef15ab20fb93"},{"name":"Update Tag","id":"9ff2693a-cf4b-4aca-93cd-73e2c380570a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"9ff2693a-cf4b-4aca-93cd-73e2c380570a"}],"id":"3354d21f-12cb-4739-89f9-c2df9f530ec7","description":"<p>Tags allow you to organize and categorize assets within your organization. Use tags to group assets by project, department, location, or any custom classification that fits your workflow.</p>\n<p>Endpoints</p>\n<ul>\n<li><p>GET /tags - List all tags for your organization</p>\n</li>\n<li><p>GET /tags/{id} - Get a specific tag by ID</p>\n</li>\n<li><p>POST /tags - Create a new tag</p>\n</li>\n<li><p>PUT /tags/{id} - Update an existing tag</p>\n</li>\n<li><p>DELETE /tags/{id} - Delete a tag</p>\n</li>\n</ul>\n<p>Authentication</p>\n<ul>\n<li>All tag endpoints require authentication via API token in the Authorization header:<br />  Authorization: Bearer YOUR_API_TOKEN</li>\n</ul>\n","_postman_id":"3354d21f-12cb-4739-89f9-c2df9f530ec7","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}},{"name":"Departments","item":[{"name":"Create Department","id":"dd9b9ae0-91c5-432a-8d42-60ffaacac4c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Engineering Department\",\n    \"rent_budget\": 500.00,\n    \"purchase_budget\": 1000.00,\n    \"budget_type\": \"categorized\",\n    \"auto_approve_orders\": false,\n    \"user_id\": 123,\n    \"auto_offboarding\": true,\n    \"auto_offboarded_categories\": [\n        {\n            \"id\": 1\n        },\n        {\n            \"id\": 2\n        }\n    ],\n    \"budgets\": [\n        {\n            \"name\": \"Laptops\",\n            \"icon\": \"laptop\",\n            \"amount\": 3000.00,\n            \"currency\": \"USD\",\n            \"type\": \"purchase\"\n        },\n        {\n            \"name\": \"Monitors\",\n            \"icon\": \"monitor\",\n            \"amount\": 1500.00,\n            \"currency\": \"USD\",\n            \"type\": \"rental\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/departments/","description":"<p>This API allows an employer to create a new department with either fixed or categorized budget types. The department will be automatically associated with the authenticated employer.</p>\n<h3 id=\"fields-explanation\">Fields Explanation</h3>\n<h4 id=\"basic-department-information\">Basic Department Information</h4>\n<p><strong><code>name</code></strong> (required, string, max: 255) – The name of the department.</p>\n<p><strong><code>rent_budget</code></strong> (required, numeric) – The rental budget amount for the department. Used for both fixed and categorized budget types.</p>\n<p><strong><code>purchase_budget</code></strong> (required, numeric) – The purchase budget amount for the department. Used for both fixed and categorized budget types.</p>\n<p><strong><code>budget_type</code></strong> (required, string) – The type of budget management for the department. Must be either <code>fixed</code> or <code>categorized</code>.</p>\n<ul>\n<li><p><code>fixed</code> – Simple budget with only rental and purchase amounts</p>\n</li>\n<li><p><code>categorized</code> – Advanced budget with multiple custom categories</p>\n</li>\n</ul>\n<p><strong><code>auto_approve_orders</code></strong> (optional, boolean) – Determines if orders from this department should be automatically approved.</p>\n<p><strong><code>user_id</code></strong> (optional, integer) – The ID of the user who will manage this department. Must exist in the users table.</p>\n<p><strong><code>auto_offboarding</code></strong> (optional, boolean) – Determines if automatic offboarding is enabled for this department.</p>\n<p><strong><code>auto_offboarded_categories</code></strong> (required_if:auto_offboarding,true, array) – Array of category objects to be auto-offboarded when employees leave this department.</p>\n<p><strong><code>auto_offboarded_categories.\\*.id</code></strong>(required, integer) – Category ID that should be auto-offboarded. Must exist in the categories table.</p>\n<h4 id=\"categorized-budget-information\">Categorized Budget Information</h4>\n<p><strong><code>budgets</code></strong> (required_if:budget_type,categorized, array) – Array of budget category objects. Required when <code>budget_type</code> is set to <code>categorized</code>.</p>\n<p><strong><code>budgets.\\*.id</code></strong> (optional, integer) – Budget category ID. Only used when updating existing budget categories.</p>\n<p><strong><code>budgets.\\*.name</code></strong> (required, string) – The name of the budget category (e.g., \"Laptops\", \"Office Furniture\").</p>\n<p><strong><code>budgets.\\*.icon</code></strong> (required, string) – Icon identifier for the budget category (e.g., \"laptop\", \"chair\").</p>\n<p><strong><code>budgets.\\*.amount</code></strong> (required, numeric) – The budget amount allocated for this category.</p>\n<p><strong><code>budgets.\\*.currency</code></strong> (required, string) – The currency code for this budget (e.g., \"USD\", \"EUR\").</p>\n<p><strong><code>budgets.\\*.type</code></strong> (required, string) – The budget category type. Must be either <code>rental</code> or <code>purchase</code>.</p>\n","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}},"urlObject":{"path":["departments",""],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"dd9b9ae0-91c5-432a-8d42-60ffaacac4c3"},{"name":"Update Department","id":"b4d1e6d8-1608-47df-b848-638f56c4691f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Updated Engineering Department\",\n  \"rent_budget\": 600.00,\n  \"purchase_budget\": 1200.00,\n  \"budget_type\": \"categorized\",\n  \"auto_approve_orders\": true,\n  \"user_id\": 456,\n  \"auto_offboarding\": false,\n  \"auto_offboarded_categories\": [],\n  \"budgets\": [\n    {\n      \"id\": 10,\n      \"name\": \"Updated Laptops\",\n      \"icon\": \"laptop-updated\",\n      \"amount\": 350.00,\n      \"currency\": \"USD\",\n      \"type\": \"purchase\"\n    },\n    {\n      \"name\": \"New Accessories\",\n      \"icon\": \"accessories\",\n      \"amount\": 50.00,\n      \"currency\": \"USD\",\n      \"type\": \"purchase\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"/departments/{{department_id}}","description":"<p>This API allows an employer to update an existing department. The employer can only update departments that belong to their organization.</p>\n<h3 id=\"url-parameters\">URL Parameters</h3>\n<p><strong><code>department</code></strong> (required, integer) – The ID of the department to update.</p>\n<h3 id=\"fields-explanation\">Fields Explanation</h3>\n<h4 id=\"basic-department-information\">Basic Department Information</h4>\n<p><strong><code>name</code></strong> (required, string, max: 255) – The name of the department.</p>\n<p><strong><code>rent_budget</code></strong> (required, numeric) – The rental budget amount for the department. Used for both fixed and categorized budget types.</p>\n<p><strong><code>purchase_budget</code></strong> (required, numeric) – The purchase budget amount for the department. Used for both fixed and categorized budget types.</p>\n<p><strong><code>budget_type</code></strong> (required, string) – The type of budget management for the department. Must be either <code>fixed</code> or <code>categorized</code>.</p>\n<ul>\n<li><p><code>fixed</code> – Simple budget with only rental and purchase amounts</p>\n</li>\n<li><p><code>categorized</code> – Advanced budget with multiple custom categories</p>\n</li>\n</ul>\n<p><strong><code>auto_approve_orders</code></strong> (optional, boolean) – Determines if orders from this department should be automatically approved.</p>\n<p><strong><code>user_id</code></strong> (optional, integer) – The ID of the user who will manage this department. Must exist in the users table.</p>\n<p><strong><code>auto_offboarding</code></strong> (optional, boolean) – Determines if automatic offboarding is enabled for this department.</p>\n<p><strong><code>auto_offboarded_categories</code></strong> (required_if:auto_offboarding,true, array) – Array of category objects to be auto-offboarded when employees leave this department.</p>\n<p><strong><code>auto_offboarded_categories.\\\\*.id</code></strong> (required, integer) – Category ID that should be auto-offboarded. Must exist in the categories table.</p>\n<h4 id=\"categorized-budget-information\">Categorized Budget Information</h4>\n<p><strong><code>budgets</code></strong> (required_if:budget_type,categorized, array) – Array of budget category objects. Required when <code>budget_type</code> is set to <code>categorized</code>.</p>\n<p><strong><code>budgets.\\\\*.id</code></strong>(optional, integer) – Budget category ID. Include this to update an existing budget category, omit to create a new one.</p>\n<p><strong><code>budgets.\\\\*.name</code></strong> (required, string) – The name of the budget category (e.g., \"Laptops\", \"Office Furniture\").</p>\n<p><strong><code>budgets.\\\\*.icon</code></strong> (required, string) – Icon identifier for the budget category (e.g., \"laptop\", \"chair\").</p>\n<p><strong><code>budgets.\\*.amount</code></strong> (required, numeric) – The budget amount allocated for this category.</p>\n<p><strong><code>budgets.\\*.currency</code></strong> (required, string) – The currency code for this budget (e.g., \"USD\", \"EUR\").</p>\n<p><strong><code>budgets.\\*.type</code></strong> (required, string) – The budget category type. Must be either <code>rental</code> or <code>purchase</code>.</p>\n","urlObject":{"path":["departments","{{department_id}}"],"host":[""],"query":[{"disabled":true,"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"b4d1e6d8-1608-47df-b848-638f56c4691f"}],"id":"c9b90773-42ff-4b81-a216-c8ac6ca50962","_postman_id":"c9b90773-42ff-4b81-a216-c8ac6ca50962","description":"","auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"},"isInherited":true,"source":{"_postman_id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","id":"ca47a478-6f97-4468-86ff-0183f6cd6c19","name":"Workwize Public API Documentation","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"key":"<key>","value":"{{token}}"}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"752260a4-0323-4607-9c7f-afd88c78a776"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6ce51bbc-7fca-4d2e-b9c9-624af3b12c0f"}}],"variable":[{"key":"baseUrl","value":"https://farming-simulator.pstmn.io"},{"key":"base_url","value":"","type":"default"},{"key":"api_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI2IiwianRpIjoiNmEzYzk5ZmY0NTA2ZTJlNTIxNjM0NmQ2NWNhNGExZjZjZjBjMTJmMDgxYWI3ZDkwZGQyYTBjYjFhMDhjNDY5ODRmNjdjODNhYTZlZDMyYWQiLCJpYXQiOjE3Mzg3NjQxMjQuODA2MTY0LCJuYmYiOjE3Mzg3NjQxMjQuODA2MTY1LCJleHAiOjE3NTQ0MDI1MjQuNzk3MjM2LCJzdWIiOiI3MTIwMiIsInNjb3BlcyI6W119.PuKkLeKzuNFttMNAcN79zU04myqCKhsLg0g3DYQvBMG0reeH-83aqf3PAfYfo0_zwOa5nGAAdYQB_0bESpbpqP6YG8ypvB6kPmXRKYCj8nfSegGvznTPLOeNZrV3uYmR87wdqcQvMxAVq0VXZKFznRpi5LjpEvyQldtZDcq1oHspBoc-SN2M4CentqbBkEe-yh8mskHFREEtt35QIpeRDUbL1oCWjMqn0K8WxDcFHJ9wvO49ST0DC7NKp7STKzlshlH4_rUVWDvpvtB7YnwGyoS9aJ8-x8gOi8XwEzjVobdc0q8B8HE8YQ27sVgevL5SSch3IXkeMluBX58cbCvCkW-16kPkRziEHtOsYOqZWzaecHiRvJRin1lHzkvdHd-bGWhnnRSV-4ZwV9uodqBn2oTCcI12Oniyv63lh__WgMFK-pQcHA_aG-Pa4e_fpgyqq8buMgvg6thC9Fu5-iMh-Kx3Hy6LMm8Hbs9nVGnH5hNyT0Ly-2ke0brLAOGiv58fSFVqS8i01K4e23EWgdI0Bwo_tE_LlV0spYzHFZB3-ATQi8HmA_BkBigLi_VXHTWR7PzJT7zZKs5vaorUwpAdCO63eQU2gi-i7oiiXiKn6aCJvpCaDupfnMwHd-oSk8RrWQR9JA6j-zBYAQjQNNTpr4KrBCnJ_oVTh9J8W6KAj3w"}]}