{"info":{"_postman_id":"1aa57672-2c56-489c-a4b9-c8ad2144a894","name":"OnPrintShop GraphQL API","description":"<html><head></head><body><p>Welcome to OnPrintShop's API Documentation. We've designed this document to help developers and OnPrintShop's users fully understand and integrate our API for a seamless and easy deployment.</p>\n<p>We've listed all the APIs, their required parameters, and their example requests and responses on the right for easy understanding. The easiest way to start using the OnPrintShop APIs is by clicking the <strong>Run in Postman</strong> button above. The <a href=\"https://www.getpostman.com/\">Postman</a> is a free tool that helps developers run and debug API requests.</p>\n<p>Read through the following sections for the integration process.</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>First, you need to activate the GraphQL API, for this you have to contact our support team. After the successfully activation of GraphQL API you can find your Client Credentials and API End Point URL from the OnPrintShop Admin panel.</p>\n<h1 id=\"document-and-api-usage-guidelines\">Document and API Usage Guidelines</h1>\n<ul>\n<li>Our APIs use the basic HTTP request method: <em>POST</em></li>\n<li>You can import and test all our full API collection in the Postman app by clicking on the <strong>' Run in Postman'</strong> button.</li>\n<li><strong>Note</strong>: Any requests made using the valid API credentials will affect the real-time data in your OnPrintShop account.</li>\n<li>Authorization: Bearer</li>\n<li>All the APIs are provided with their appropriate example requests and responses for successful and failed calls.</li>\n</ul>\n<h1 id=\"errors-and-response-codes\">Errors and Response codes</h1>\n<p>While using OnPrintShop's APIs, you may run into some standard response and error codes. The most common ones are listed along with their descriptions as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>RESPONSE CODE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200</code> - <strong>OK</strong></td>\n<td>Everything worked as expected, and you'll get a response. Some APIs may respond with an error message if data is invalid.</td>\n</tr>\n<tr>\n<td><code>400</code> - <strong>Bad Request</strong></td>\n<td>The request was invalid or cannot be otherwise served.</td>\n</tr>\n<tr>\n<td><code>401</code> - <strong>Unauthorized</strong></td>\n<td>There is some error during validation. You need to check your token or credentials.</td>\n</tr>\n<tr>\n<td><code>404</code> - <strong>Not Found</strong></td>\n<td>The URI requested is invalid or the resource requested does not exist.</td>\n</tr>\n<tr>\n<td><code>429</code> - <strong>Too Many Requests</strong></td>\n<td>You have exceeded the API call rate limit.</td>\n</tr>\n<tr>\n<td><code>500</code>, <code>502</code>, <code>503</code>, <code>504</code> - <strong>Server Errors</strong></td>\n<td>Some server error has occurred. Some APIs may show this due to syntax or parameter errors. Try contacting support if this persists.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"api-rate-limiting\">API Rate Limiting</h1>\n<p>To ensure fair usage and optimal performance for all users, our API employs rate limiting. Below is a detailed explanation of the rate limit policy and how it affects your usage.</p>\n<ul>\n<li><strong>Rate Limit Policy</strong><ul>\n<li><strong>Request Limit</strong>: Each user can make up to <strong>120 requests</strong>.</li>\n<li><strong>Time Window</strong>: The limit applies to a rolling window of <strong>1 minute</strong>.</li>\n</ul>\n</li>\n<li><strong>How Rate Limiting Works</strong><ul>\n<li><strong>Counting Requests</strong>: Every request you make to the API counts towards your request limit.</li>\n<li><strong>Time Frame</strong>: The rate limit resets every minute. For example, if you start making requests at 10:00:00 AM, your limit will reset at 10:01:00 AM.</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"pagination\">Pagination</h1>\n<p>When you request data from our API, sometimes there might be too much information to handle all at once. To make it easier to view and manage this data, we use a method called \"pagination.\" This means breaking the data into smaller, more manageable chunks or pages.</p>\n<p>We are using Limit and Offset based pagination</p>\n<h3 id=\"key-terms\"><strong>Key Terms</strong></h3>\n<ul>\n<li><strong>Limit</strong>: This is the maximum number of items you want to see on one page.</li>\n<li><strong>Offset</strong>: This tells you where to start from in the list.</li>\n</ul>\n<h3 id=\"how-to-use-limit-and-offset\">How to Use Limit and Offset</h3>\n<p>For example, you have a large list of items, like 100 records, and you want to view them 10 at a time. Here’s how you can do it:</p>\n<ul>\n<li><strong>View the First Page</strong><ul>\n<li><strong>Limit</strong>: 10 (you want to see 10 items)</li>\n<li><strong>Offset</strong>: 0 (you start from the beginning)</li>\n</ul>\n</li>\n<li><strong>View the Second Page</strong><ul>\n<li><strong>Limit</strong>: 10 (still want to see 10 items)</li>\n<li><strong>Offset</strong>: 10 (skip the first 10 items and start from the 11th)</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"using-total-records\">Using Total Records</h3>\n<p>When you request data, the API response also includes the total number of items available. This helps you understand how many pages you can navigate through.</p>\n<p>For example, if the total number of records is 100 and you’re viewing 10 items per page:</p>\n<ul>\n<li>You’ll have 10 pages in total.</li>\n<li>The first page will have items 1 to 10, the second page will have items 11 to 20, and so on.</li>\n</ul>\n<h3 id=\"help-default-and-maximum-records-limit\">Help: Default and Maximum Records Limit</h3>\n<p>Admin can configure the Max Records Limit <strong>(Upto 250)</strong> from the Export/API Settings -&gt; Advanced API section of OnPrintShop</p>\n<ul>\n<li><strong>Default Records Limit</strong><ul>\n<li>If no <code>limit</code> parameter is passed in the API request, the system will return a default of 250 records.</li>\n</ul>\n</li>\n<li><strong>Maximum Records Limit</strong><ul>\n<li>The maximum number of records that can be returned in one API call is 250. If a <code>limit</code> parameter greater than 250 is passed, the system will still return a maximum of 250 records.</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"authentication-token-generation\">Authentication Token Generation</h1>\n<p>By using your Client Credentials you can generate the access token to access the API. For token generation you have to use our <a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#740b7145-ed43-4ec9-a03f-48230ffcccc4\">Authentication API</a></p>\n<h1 id=\"api-collection\">API Collection</h1>\n<p>We offer following API services:</p>\n<ul>\n<li><strong>Authentication API</strong><ul>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#740b7145-ed43-4ec9-a03f-48230ffcccc4\">Generate OAuth2.0 Token</a></li>\n</ul>\n</li>\n<li><strong>Mutations</strong><ul>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#29a57930-ed48-4e9a-a02c-cca1f0ad8cda\">Update Order Status</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#e8206ec2-9f02-4f4a-b334-47162ed7bfc0\">Update Product Stock</a></li>\n</ul>\n</li>\n<li><strong>Queries</strong><ul>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#06118602-faff-418d-b802-1c7608b8755b\">Customers</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#04fa0df6-9f37-47a2-a626-bb85e3178073\">Customer Address Details</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#df4a04d5-2859-4642-ad75-f6a98a32c3c9\">Orders</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#6581de2f-fed9-45e3-9051-5eea339eb6ef\">Order Details</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#c241c56d-f569-43e9-afd8-a6bbfaa8cd4a\">Order Shipment Details</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#4f70f3d4-d988-4f55-88c2-569365c698dc\">Ship To Multiple Address</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#bb1fdb88-6728-48c6-b421-23311d7c4b87\">Order and Order Product Statuses</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#fcc0f609-16cb-4b24-ba63-9e46f968fd9a\">Products</a></li>\n<li><a href=\"https://documenter.getpostman.com/view/17600430/2sA2xjzBAU#25a778a9-cc16-4aa4-8452-9cad678306c1\">Product Stocks</a></li>\n</ul>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Document and API Usage Guidelines","slug":"document-and-api-usage-guidelines"},{"content":"Errors and Response codes","slug":"errors-and-response-codes"},{"content":"API Rate Limiting","slug":"api-rate-limiting"},{"content":"Pagination","slug":"pagination"},{"content":"Authentication Token Generation","slug":"authentication-token-generation"},{"content":"API Collection","slug":"api-collection"}],"owner":"33263100","collectionId":"1aa57672-2c56-489c-a4b9-c8ad2144a894","publishedId":"2sBXijHWys","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-20T13:12:56.000Z"},"item":[{"name":"Authentication API","item":[{"name":"Generate OAuth token","event":[{"listen":"prerequest","script":{"id":"d82e98f0-aedc-4eb7-b880-a013dc81a442","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"77345206-8a37-4fe7-8b1c-4f3d97ecaef4","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set('bearer_token', jsonData.access_token);"],"type":"text/javascript"}}],"id":"5feb7824-1104-498c-9859-9360b9d9fe06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"grant_type\": \"client_credentials\",\n    \"client_id\": \"2190fd7c-596b-11ef-9e9f-06bd824fb541\",\n    \"client_secret\": \"1e7e95c890e62551b190bed822a39bef676b4d36c34a8a98ba4e092b6c6a0cb3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5feb7824-1104-498c-9859-9360b9d9fe06"}],"id":"fa2fe166-03d9-4999-90b0-54e1370ace13","description":"<p>Use this API to obtain the authentication token. Copy this token and use it further to validate your API calls. <strong>The validity of this token is 24 hr</strong>.</p>\n<p>Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.</p>\n<p><strong>Steps To Use Token:</strong></p>\n<ul>\n<li><p>Copy the token received in response.</p>\n</li>\n<li><p>Include <em><strong>'Authorization: Bearer [yourtokenvalue]'</strong></em> Header in your request</p>\n</li>\n<li><p>That's all! In case of any error, try checking your parameters.</p>\n</li>\n</ul>\n<h3 id=\"token-rate-limiting\"><strong>Token Rate Limiting</strong></h3>\n<p>To ensure fair usage and optimal performance for all users, our API employs token rate limiting. Below is a detailed explanation of the token rate limit policy and how it affects your usage.</p>\n<ul>\n<li><strong>Token Rate Limit Policy</strong><ul>\n<li><strong>Token Generation Limit</strong>: Each user can generate up to <strong>10 tokens</strong>.</li>\n<li><strong>Time Window</strong>: The limit applies to a rolling window of <strong>10 minutes</strong>.</li>\n</ul>\n</li>\n<li><strong>How Token Rate Limiting Works</strong><ul>\n<li><strong>Counting Tokens</strong>: Each token generation request counts towards your token limit.</li>\n<li><strong>Time Frame</strong>: The rate limit resets every 10 minutes. For example, if you start generating tokens at 10:00:00 AM, your limit will reset at 10:10:00 AM.</li>\n<li><strong>Exceeded Limit</strong>: If you exceed the 10 token generation requests within ten minutes, you will receive a <code>429 Token generation limit exceeded, please try again later</code> response. This response indicates that you should wait until the rate limit resets before attempting to generate more tokens.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"868fe2e1-ca64-4a34-90ee-fcaaf6cbc822","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c24a02a7-6ea1-4f12-a605-e7e1c18cbb52","type":"text/javascript","exec":[""]}}],"_postman_id":"fa2fe166-03d9-4999-90b0-54e1370ace13"},{"name":"Queries","item":[{"name":"Products","item":[{"name":"Master Options","item":[{"name":"Product Master Options","id":"a032fedb-3e75-460f-81e7-fc1801189615","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productMasterOptions ($master_option_id: Int, $limit: Int, $offset: Int) {\n    productMasterOptions (master_option_id: $master_option_id, limit: $limit, offset: $offset) {\n        productMasterOptions {\n            master_option_id\n            production_description\n            external_ref\n            title\n            description\n            option_key\n            pricing_method\n            status\n            sort_order\n            options_type\n            linear_formula\n            formula\n            weight_setting\n            price_range_lookup\n            additional_lookup_details\n            hide_from_calc\n            enable_assoc_qty\n            allow_price_cal\n            hire_designer_option\n            required\n            display_in_calculator\n            option_position\n            desc_position\n            display_above_size\n            presentation_group\n            prod_add_opt_export_group_id\n            exclude_setup_cost_reorder\n            master_option_tag\n            attributes\n        }\n        totalProductMasterOptions\n        currentCount\n    }\n}","variables":"{\n    \"master_option_id\" : 0,\n    \"limit\" : 10,\n    \"offset\":0\n}"}},"url":"{{api_url}}","description":"<p>The Product Master Options API provides access to master option configurations including pricing methods, formulas, and presentation settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>master_option_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by master option ID</td>\n<td>118</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"response-fields\">Response Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>master_option_id</code></td>\n<td><em>Int</em></td>\n<td>Master option ID</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><em>String</em></td>\n<td>Option title</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><em>String</em></td>\n<td>Option description</td>\n</tr>\n<tr>\n<td><code>production_description</code></td>\n<td><em>String</em></td>\n<td>Production description</td>\n</tr>\n<tr>\n<td><code>option_key</code></td>\n<td><em>String</em></td>\n<td>Unique option key</td>\n</tr>\n<tr>\n<td><code>pricing_method</code></td>\n<td><em>String</em></td>\n<td>Pricing method</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td><em>String</em></td>\n<td>Option status</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n</tr>\n<tr>\n<td><code>options_type</code></td>\n<td><em>String</em></td>\n<td>Option type</td>\n</tr>\n<tr>\n<td><code>linear_formula</code></td>\n<td><em>String</em></td>\n<td>Linear formula</td>\n</tr>\n<tr>\n<td><code>formula</code></td>\n<td><em>String</em></td>\n<td>Formula</td>\n</tr>\n<tr>\n<td><code>weight_setting</code></td>\n<td><em>String</em></td>\n<td>Weight setting</td>\n</tr>\n<tr>\n<td><code>price_range_lookup</code></td>\n<td><em>String</em></td>\n<td>Price range lookup</td>\n</tr>\n<tr>\n<td><code>additional_lookup_details</code></td>\n<td><em>String</em></td>\n<td>Additional lookup details</td>\n</tr>\n<tr>\n<td><code>hide_from_calc</code></td>\n<td><em>String</em></td>\n<td>Hide from calculator</td>\n</tr>\n<tr>\n<td><code>enable_assoc_qty</code></td>\n<td><em>String</em></td>\n<td>Enable associated quantity</td>\n</tr>\n<tr>\n<td><code>allow_price_cal</code></td>\n<td><em>String</em></td>\n<td>Allow price calculation</td>\n</tr>\n<tr>\n<td><code>hire_designer_option</code></td>\n<td><em>String</em></td>\n<td>Hire designer option</td>\n</tr>\n<tr>\n<td><code>required</code></td>\n<td><em>Int</em></td>\n<td>Whether option is required</td>\n</tr>\n<tr>\n<td><code>display_in_calculator</code></td>\n<td><em>Int</em></td>\n<td>Display in calculator</td>\n</tr>\n<tr>\n<td><code>option_position</code></td>\n<td><em>String</em></td>\n<td>Option position</td>\n</tr>\n<tr>\n<td><code>desc_position</code></td>\n<td><em>Int</em></td>\n<td>Description position</td>\n</tr>\n<tr>\n<td><code>display_above_size</code></td>\n<td><em>Int</em></td>\n<td>Display above size</td>\n</tr>\n<tr>\n<td><code>presentation_group</code></td>\n<td><em>Int</em></td>\n<td>Presentation group</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_export_group_id</code></td>\n<td><em>Int</em></td>\n<td>Export group ID</td>\n</tr>\n<tr>\n<td><code>exclude_setup_cost_reorder</code></td>\n<td><em>Int</em></td>\n<td>Exclude setup cost on reorder</td>\n</tr>\n<tr>\n<td><code>master_option_tag</code></td>\n<td><em>[Int]</em></td>\n<td>Array of master option tag IDs</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td><em>JSON</em></td>\n<td>Option attributes array</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td><em>String</em></td>\n<td>External reference identifier (nullable, max 255 characters)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a032fedb-3e75-460f-81e7-fc1801189615"},{"name":"Master Option Tag","id":"50a8e730-08a4-4fe5-b28b-e4e5fac31b67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getMasterOptionTag ($master_option_tag_id: Int, $limit: Int, $offset: Int) {\n    getMasterOptionTag (master_option_tag_id: $master_option_tag_id, limit: $limit, offset: $offset) {\n        masterOptionTag {\n            master_option_tag_id\n            master_option_tag_name\n        }\n        totalMasterOptionTag\n        currentCount\n    }\n}","variables":"{\n    \"limit\" : 5\n}"}},"url":"{{api_url}}","description":"<p>The Master Option Tag API provides access to master option tags used for grouping and categorizing options.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>master_option_tag_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by tag ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50a8e730-08a4-4fe5-b28b-e4e5fac31b67"},{"name":"Option Group","id":"67121f64-4590-4f72-bd73-cf9b5490c1fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getOptionGroup ($prod_add_opt_group_id: Int,$use_for: String, $limit: Int, $offset: Int) {\n    getOptionGroup (prod_add_opt_group_id: $prod_add_opt_group_id,use_for: $use_for, limit: $limit, offset: $offset) {\n        optionGroup {\n            prod_add_opt_group_id\n            opt_group_name\n            use_for\n            display_style\n            option_count\n            is_collapse\n            sort_order\n        }\n        totalOptionGroup\n        currentCount\n    }\n}","variables":""}},"url":"{{api_url}}","description":"<p>The Option Group API provides access to product additional option groups used for organizing options in the calculator/frontend.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>prod_add_opt_group_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by option group ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>use_for</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Filter by usage type</td>\n<td></td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"67121f64-4590-4f72-bd73-cf9b5490c1fa"},{"name":"Option Formulas","id":"c422f0b4-5086-40ec-b614-c8be94fbf394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getCustomFormula ($formula_id: Int, $limit: Int, $offset: Int) {\n    getCustomFormula (formula_id: $formula_id, limit: $limit, offset: $offset) {\n        customFormula {\n            formula_id\n            formula_label\n            formula_syntax\n        }\n        totalCustomFormula\n        currentCount\n    }\n}","variables":""}},"url":"{{api_url}}","description":"<p>The Option Formulas API provides access to custom formulas used in product option pricing calculations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>formula_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by formula ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c422f0b4-5086-40ec-b614-c8be94fbf394"},{"name":"Master Option Ranges","id":"263891ab-68d5-4f1c-b383-cf493abffb41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getMasterOptionRange ($range_id: Int, $option_id: Int, $limit: Int, $offset: Int) {\n    getMasterOptionRange (range_id: $range_id, option_id: $option_id, limit: $limit, offset: $offset) {\n        masterOptionRange {\n            range_id\n            option_id\n            from_range\n            to_range\n        }\n        totalMasterOptionRange\n        currentCount\n    }\n}","variables":""}},"url":"{{api_url}}","description":"<p>The Master Option Ranges API provides access to quantity ranges defined for master option attributes, used in range-based pricing.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>range_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by range ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>option_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by master option ID</td>\n<td>118</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"263891ab-68d5-4f1c-b383-cf493abffb41"},{"name":"Product Option Prices","id":"7c7148f9-d5e0-41d5-b41b-d723ca8b2f9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productOptionsPrice ($attr_id: Int, $limit: Int, $offset: Int) {\n    productOptionsPrice (attr_id: $attr_id, limit: $limit, offset: $offset) {\n        productOptionsPrice {\n            attr_id\n            range_id\n            price\n            vendor_price\n            from_range\n            to_range\n            site_admin_markup\n        }\n        totalProductOptionPrice\n        currentCount\n    }\n}","variables":""}},"url":"{{api_url}}","description":"<p>The Product Option Prices API provides access to pricing data for master option attributes across quantity ranges.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attr_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by attribute ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c7148f9-d5e0-41d5-b41b-d723ca8b2f9f"},{"name":"Product Options Rules","id":"ab9bb612-c392-4dfd-9b1c-078ac364efd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productOptionRules ($rule_id: Int, $limit: Int, $offset: Int) {\n    productOptionRules (rule_id: $rule_id, limit: $limit, offset: $offset) {\n        productOptionRules {\n            rule_id\n            rule_name\n            rule_type\n            source_option_ids\n            source_attribute_ids\n            hide_option_ids\n            hide_option_attribute_ids\n            status\n            sort_order\n            comparison_value\n            disabled_for_admin\n        }\n        totalProductOptionRules\n        currentCount\n    }\n}","variables":"{\n    \"rule_id\" : 190\n\n}"}},"url":"{{api_url}}","description":"<p>The Product Option Rules API provides access to option visibility rules that control which options/attributes are shown or hidden based on other selections.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>rule_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by rule ID</td>\n<td>190</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"response-fields\">Response Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>rule_id</code></td>\n<td><em>Int</em></td>\n<td>Rule ID</td>\n</tr>\n<tr>\n<td><code>rule_name</code></td>\n<td><em>String</em></td>\n<td>Rule name</td>\n</tr>\n<tr>\n<td><code>rule_type</code></td>\n<td><em>String</em></td>\n<td>Rule type</td>\n</tr>\n<tr>\n<td><code>source_option_ids</code></td>\n<td><em>String</em></td>\n<td>Comma-separated source option IDs (positionally maps to source_attribute_ids)</td>\n</tr>\n<tr>\n<td><code>source_attribute_ids</code></td>\n<td><em>String</em></td>\n<td>Comma-separated source attribute IDs (\"0\" means entire option selected)</td>\n</tr>\n<tr>\n<td><code>hide_option_ids</code></td>\n<td><em>String</em></td>\n<td>Option IDs to hide</td>\n</tr>\n<tr>\n<td><code>hide_option_attribute_ids</code></td>\n<td><em>String</em></td>\n<td>Attribute IDs to hide</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td><em>String</em></td>\n<td>Rule status</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n</tr>\n<tr>\n<td><code>comparison_value</code></td>\n<td><em>JSON</em></td>\n<td>Comparison value object</td>\n</tr>\n<tr>\n<td><code>disabled_for_admin</code></td>\n<td><em>String</em></td>\n<td>Whether rule is disabled for admin</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab9bb612-c392-4dfd-9b1c-078ac364efd1"},{"name":"Master Option Stock - Staging","id":"dee8b61f-a400-4a72-8f82-2ddd392940a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getMasterOptionStockConfigs($limit: Int, $offset: Int, $config_id: Int, $optionFilter: [Int]) {\n    getMasterOptionStockConfigs(limit: $limit, offset: $offset, config_id: $config_id, optionFilter: $optionFilter) {\n        groups {\n            group_title\n            stock_type\n            stock_type_id\n            option_ids\n            allow_out_of_stock\n            notify_quantity\n            configs {\n                id\n                option_ids\n                attribute_ids\n                stock\n                type\n                credit_stock\n                debit_stock\n                stock_title\n                stock_label\n            }\n        }\n        totalRecords\n        currentCount\n    }\n}\n","variables":"{\n    \"limit\": 20,\n    \"offset\": 0,\n    \"optionFilter\": [52,59]\n}\n"}},"url":"{{api_url}}","description":"<p>This API returns a grouped list of master option stock configurations with pagination and filtering. Each group contains a header (option title, stock type, settings) and child stock config entries with credit/debit totals.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>config_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to get a specific stock configuration by its ID.</td>\n<td>15</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of groups to return (1-100, default: 20).</td>\n<td>20</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of groups (default: 0).</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>optionFilter</code></td>\n<td>No</td>\n<td><em>[Int]</em></td>\n<td>Filter by one or more master option IDs.</td>\n<td>[50, 52]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dee8b61f-a400-4a72-8f82-2ddd392940a8"},{"name":"Master Option Stock History - Staging","id":"95b0f1ce-681c-4e18-b8b2-eb05613be75f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getMasterOptionStockHistory($config_id: Int!, $limit: Int, $offset: Int) {\n    getMasterOptionStockHistory(config_id: $config_id, limit: $limit, offset: $offset) {\n        history {\n            id\n            config_id\n            stock_change\n            change_type\n            comments\n            date_added\n        }\n        totalRecords\n        currentCount\n    }\n}\n","variables":"{\n    \"config_id\":20,\n    \"limit\": 20,\n    \"offset\": 0\n}\n"}},"url":"{{api_url}}","description":"<p>This API returns paginated stock change history (credits and debits) for a specific stock configuration or all configurations. Results are sorted by date in descending order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>config_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to get history for a specific config. If not provided, returns all history.</td>\n<td>15</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return (1-100, default: 20).</td>\n<td>20</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records (default: 0).</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"95b0f1ce-681c-4e18-b8b2-eb05613be75f"},{"name":"Master Option Stock Matrix - Staging","id":"e32d24c8-4db9-43a1-9231-3ac9e820f30b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getMasterOptionCombinationMatrix($option_ids: [Int!]!) {\n    getMasterOptionCombinationMatrix(option_ids: $option_ids) {\n        matrix {\n            option_ids\n            attribute_ids\n        }\n        totalRecords\n    }\n}","variables":"{ \n    \"option_ids\": [50,52] \n}"}},"url":"{{api_url}}","description":"<p>This API generates a combination matrix (cartesian product) of attributes across selected master options. Use this to get all possible option-attribute combinations before adding Combination Wise stock configurations. Minimum 2 options are required.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>option_ids</code></td>\n<td>Yes</td>\n<td><em>[Int]</em></td>\n<td>Array of master option IDs (minimum 2).</td>\n<td>[50, 52]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e32d24c8-4db9-43a1-9231-3ac9e820f30b"}],"id":"ecb511a5-565a-4488-bdcd-3367e236ecee","_postman_id":"ecb511a5-565a-4488-bdcd-3367e236ecee","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"Product Details","id":"c7d204be-70cd-42ab-bca1-00d5c27fea32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productsDetails ($products_id: Int, $limit: Int, $offset: Int, $status: Int, $all_store: Int, $external_catalogue: Int) {\n    productsDetails (products_id: $products_id, limit: $limit, offset: $offset, status: $status, all_store: $all_store, external_catalogue:$external_catalogue) {\n        products {\n            external_catalogue\n            production_description\n            external_ref\n            product_id\n            status\n            sort_order\n            product_name\n            kit_type_id\n            kit_products\n            associate_option_id\n            associate_option_key\n            associate_attribute_id\n            associate_attribute_key\n            associate_size_id\n            associate_multiplier\n            associate_status\n            associate_calculation_type\n            default_category_id\n            associated_category_ids\n            default_category_name\n            associated_category_names\n            small_image\n            large_image\n            product_url\n            long_description\n            predefined_product_type\n            all_store\n            products_internal_name\n            search_keywords\n            short_description\n            long_description_two\n            seo_page_title\n            seo_page_description\n            schema_markup\n            seo_page_metatags\n            main_sku\n            default_production_days\n            product_cut_off_time\n            products_draw_area_margins\n            products_draw_cutting_margins\n            productpages\n            custom_size_restrict_data\n            product_default_quantity_interval\n            custom_cross_check_height_width\n            custom_size_info\n            product_setup_cost\n            product_hire_designer_cost\n            product_minimum_price\n            product_start_price\n            price_defining_method\n            measurement_unit_id\n            product_type\n            product_size {\n                size_id\n                products_id\n                size_title\n                size_width\n                size_height\n                size_unit\n                default_size\n                sort_order\n                visible\n                weight\n                no_of_folding\n                orientation\n                jobs_per_sheet\n                site_language_id\n                setup_cost\n                size_image\n            }\n            product_additional_options {\n                prod_add_opt_id\n                title\n                description\n                options_type\n                sort_order\n                status\n                apply_multiplication\n                applicable_for\n                required\n                price_calculate_type\n                hire_designer_option\n                option_key\n                master_option_id\n                attributes\n            }\n        }\n        totalProducts\n        currentCount\n    }\n}","variables":"{\n\t\"products_id\": 110\n}"}},"url":"{{api_url}}","description":"<p>The Product Details API provides access to detailed product information including sizes, additional options, and product configurations. Users can filter by product ID, status, or store.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by product ID</td>\n<td>288</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by product status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>all_store</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by store availability</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>external_catalogue</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by external catalogue flag. Possible Values: 0, 1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7d204be-70cd-42ab-bca1-00d5c27fea32"},{"name":"Product Prices","id":"a4f270df-9d3e-495a-b9ac-2cb72af717f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productPrice ($product_uuid: String, $limit: Int, $offset: Int) {\n    productPrice (product_uuid: $product_uuid, limit: $limit, offset: $offset) {\n        productPrice {\n            size_id\n            price\n            vendor_price\n            qty_from\n            qty_to\n            products_id\n            user_type_id\n            corporate_id\n        }\n        totalProductPrice\n        currentCount\n    }\n}","variables":"{\n    \"limit\":1,\n    \"offset\":1\n}"}},"url":"{{api_url}}","description":"<p>The Product Price API provides access to product pricing data including size-based prices, quantity ranges, vendor prices, and user type/corporate specific pricing.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>product_uuid</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Filter by product UUID</td>\n<td></td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4f270df-9d3e-495a-b9ac-2cb72af717f9"},{"name":"Product Additional Option","id":"dfc95011-cfa6-4e60-bacb-29f1fcf071f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productAdditionalOptions ($products_id: Int, $limit: Int, $offset: Int) {\n    productAdditionalOptions (products_id: $products_id, limit: $limit, offset: $offset) {\n        productAdditionalOptions {\n                prod_add_opt_id\n                title\n                description\n                options_type\n                sort_order\n                status\n                apply_multiplication\n                applicable_for\n                required\n                price_calculate_type\n                hire_designer_option\n                option_key\n                master_option_id\n                attributes\n            }\n        totalProductAdditionalOptions\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 1,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dfc95011-cfa6-4e60-bacb-29f1fcf071f8"},{"name":"Product Additional Attribute Price","id":"30fe5da4-646d-463a-b078-adcaacd9fc82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productsAttributePrice($attribute_id: Int, $size_id: Int, $limit: Int, $offset: Int) {\n    productsAttributePrice(attribute_id: $attribute_id, size_id: $size_id, limit: $limit, offset: $offset) {\n        productsAttributePrice {\n            attribute_price_id\n            attribute_id\n            size_id\n            quantity\n            quantity_to\n            attributes_price\n            extra_page_price\n        }\n        totalProductsAttributePrice\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 1,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"30fe5da4-646d-463a-b078-adcaacd9fc82"},{"name":"Quantity Based Attribute Price","id":"74360b02-a8cc-4758-9dbe-efb29c008d3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query products_attribute_price($attribute_id: Int, $size_id: Int, $limit: Int, $offset: Int) {\n    products_attribute_price(attribute_id: $attribute_id, size_id: $size_id, limit: $limit, offset: $offset) {\n        products_attribute_price {\n            attribute_price_id\n            attribute_id\n            size_id\n            quantity\n            quantity_to\n            attributes_price\n            extra_page_price\n        }\n        total_products_attribute_price\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 1,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"74360b02-a8cc-4758-9dbe-efb29c008d3d"},{"name":"Get Product image gallery","id":"a9ac620d-25d4-487f-bb45-1a9ec09be224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productsImageGallery ($products_image_gallery_id: Int, $products_id: Int, $corporate_id: Int, $limit: Int, $offset: Int) {\n    productsImageGallery ( products_image_gallery_id: $products_image_gallery_id, products_id: $products_id,corporate_id: $corporate_id, limit: $limit, offset: $offset) {\n        productsImageGallery {\n            products_image_gallery_id\n            products_id\n            corporate_id\n            title\n            products_thumb_image_name\n            products_large_image_name\n            option_id\n            attribute_id\n            option_ids\n            attribute_ids\n            sort_order\n            status\n        }\n        totalProductsImageGallery\n        currentCount\n    }\n}","variables":"{\n    \"products_id\" : 132,\n    \"limit\": 5,\n    \"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9ac620d-25d4-487f-bb45-1a9ec09be224"},{"name":"Get Product Sku Matrix - Staging","id":"a92483a0-3f89-4708-bc8c-3ca150a8ebd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getProductSkuMatrix ($products_id: Int!, $prod_add_opt_ids: String!) {\n    getProductSkuMatrix ( products_id: $products_id,prod_add_opt_ids: $prod_add_opt_ids) {\n        matrix {\n            size_id\n            prod_add_opt_ids\n            attribute_ids\n        }\n        totalRecords\n    }\n}","variables":"{\n    \"products_id\" : 350,\n    \"prod_add_opt_ids\" : \"8021,8022\"\n}"}},"url":"{{api_url}}","description":"<p>This API returns the SKU matrix structure for a product. Use it to get valid size and option combinations before calling <code>setProductSku</code>.</p>\n<ul>\n<li>If <code>prod_add_opt_ids</code> is not provided, returns size-wise matrix (one row per size).</li>\n<li>If <code>prod_add_opt_ids</code> is provided, returns size × option attribute combination matrix.</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Product ID</td>\n<td>336</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_ids</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated option IDs. If omitted, returns size-wise matrix.</td>\n<td>\"8021,8022\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a92483a0-3f89-4708-bc8c-3ca150a8ebd5"},{"name":"Product Stocks","id":"634b8740-617f-478b-95e8-77d1f8164c8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productStocks ($product_id: Int!, $limit: Int, $offset: Int) {\n    productStocks (product_id: $product_id, limit: $limit, offset: $offset) {\n        productStocks {\n            stock_id\n            product_id\n            product_name\n            size_id\n            size_title\n\t\t\tcredit_stock\n\t\t\tdebited_stock\n            stock_quantity\n            option_details\n        }\n        totalProductStocks\n        currentCount\n    }\n}","variables":"{\n  \"product_id\": 131\n}"}},"url":"{{api_url}}","description":"<p>The Product Stocks API provides access to detailed information about the stock status of a particular product. It returns data regarding credit stock, debited stock, and the current stock quantity.</p>\n<p>It will return the product stock based on the Stock Management setting either <strong>Only Size</strong> or <strong>Size with Product Option</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>product_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Use this paramter to get the stock of particular product</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"1d7970b7-a4d8-465d-a7c1-a2a65f40bdd2","name":"Stock Management Type - Size with Product Option","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query productStocks ($product_id: Int!, $limit: Int, $offset: Int) {\n    productStocks (product_id: $product_id, limit: $limit, offset: $offset) {\n        productStocks {\n            stock_id\n            product_id\n            product_name\n            size_id\n            size_title\n\t\t\tcredit_stock\n\t\t\tdebited_stock\n            stock_quantity\n            option_details\n        }\n        totalProductStocks\n    }\n}","variables":"{\n  \"product_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 08:24:44 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"563"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"productStocks\": {\n            \"productStocks\": [\n                {\n                    \"stock_id\": 220,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 217,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 221,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 218,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 222,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 219,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 226,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 223,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 227,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 224,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 228,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 225,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 3,\n                    \"size_title\": \"A4 - 8.25 x 11.67\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 232,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 229,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 233,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 230,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 234,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 231,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 238,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 235,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 239,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 236,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 240,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 237,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 50,\n                    \"size_title\": \"A5 - 8.25x5.81\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 244,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 241,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 245,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 242,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 246,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 243,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"310_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 250,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 247,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"same_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 251,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 248,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"next_day\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 252,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH\"\n                        }\n                    ]\n                },\n                {\n                    \"stock_id\": 249,\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"size_id\": 51,\n                    \"size_title\": \"A4 - 8.5x11\",\n                    \"credit_stock\": 10,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 10,\n                    \"option_details\": [\n                        {\n                            \"name\": \"paper_type\",\n                            \"value\": \"410_gsm\"\n                        },\n                        {\n                            \"name\": \"production_time\",\n                            \"value\": \"3_business_days\"\n                        },\n                        {\n                            \"name\": \"Hire Designer Option\",\n                            \"value\": \"HH 2\"\n                        }\n                    ]\n                }\n            ],\n            \"totalProductStocks\": 36\n        }\n    }\n}"},{"id":"393125e3-11d2-42ad-896c-f8914b1ee8b0","name":"Stock Management Type - Only Size","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query productStocks ($product_id: Int!, $limit: Int, $offset: Int) {\n    productStocks (product_id: $product_id, limit: $limit, offset: $offset) {\n        productStocks {\n            stock_id\n            product_id\n            product_name\n            size_id\n            size_title\n\t\t\tcredit_stock\n\t\t\tdebited_stock\n            stock_quantity\n            option_details\n        }\n        totalProductStocks\n    }\n}","variables":"{\n  \"product_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 08:30:29 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"201"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"productStocks\": {\n            \"productStocks\": [\n                {\n                    \"stock_id\": 253,\n                    \"product_id\": 3,\n                    \"product_name\": \"Letterhead\",\n                    \"size_id\": 4,\n                    \"size_title\": \"9 * 9\",\n                    \"credit_stock\": 25,\n                    \"debited_stock\": 5,\n                    \"stock_quantity\": 20,\n                    \"option_details\": null\n                },\n                {\n                    \"stock_id\": 254,\n                    \"product_id\": 3,\n                    \"product_name\": \"Letterhead\",\n                    \"size_id\": 162,\n                    \"size_title\": \"12 * 12\",\n                    \"credit_stock\": 30,\n                    \"debited_stock\": null,\n                    \"stock_quantity\": 30,\n                    \"option_details\": null\n                }\n            ],\n            \"totalProductStocks\": 2\n        }\n    }\n}"}],"_postman_id":"634b8740-617f-478b-95e8-77d1f8164c8f"},{"name":"Category","id":"adcc7e92-d552-4e8c-a88f-a6d7c91416c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query productCategory ($category_id: Int, $limit: Int, $offset: Int) {\n    productCategory (category_id: $category_id, limit: $limit, offset: $offset) {\n        productCategory {\n            category_id\n            sort_order\n            status\n            parent_id\n            category_name\n            category_url\n            category_internal_name\n            category_image\n            short_description\n            category_header_content\n            long_description_two\n            long_description\n            seo_page_title\n            seo_page_description\n            schema_markup\n            external_ref\n        }\n        totalProductCategorySize\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 50,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>The Product Category API provides access to product categories with their details including SEO information, descriptions, and hierarchy.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>category_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by category ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>category_id</code></td>\n<td><em>Int</em></td>\n<td>Category ID</td>\n</tr>\n<tr>\n<td><code>category_name</code></td>\n<td><em>String</em></td>\n<td>Category name</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td><em>Int</em></td>\n<td>Category status</td>\n</tr>\n<tr>\n<td><code>parent_id</code></td>\n<td><em>Int</em></td>\n<td>Parent category ID</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td><em>String</em></td>\n<td>External reference identifier for third-party system integration (nullable, max 255 characters)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"adcc7e92-d552-4e8c-a88f-a6d7c91416c3"},{"name":"Products","id":"eea9d440-c943-46e8-8c59-b7fcfe4d10e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query products ($products_id: Int, $limit: Int, $offset: Int) {\n    products (products_id: $products_id, limit: $limit, offset: $offset) {\n        products {\n            product_id\n            product_name\n            main_sku\n            isstock\n        }\n        totalProducts\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>The Products API provides access to a list of all available products with basic info (ID, name, SKU, stock status). Users can optionally filter by product ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by product ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>product_id</code></td>\n<td><em>Int</em></td>\n<td>Product ID</td>\n</tr>\n<tr>\n<td><code>product_name</code></td>\n<td><em>String</em></td>\n<td>Product name</td>\n</tr>\n<tr>\n<td><code>main_sku</code></td>\n<td><em>String</em></td>\n<td>Main SKU identifier</td>\n</tr>\n<tr>\n<td><code>isstock</code></td>\n<td><em>Boolean</em></td>\n<td>Whether product tracks stock</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td><em>String</em></td>\n<td>External reference identifier for third-party system integration (nullable, max 255 characters)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"cde31b16-3575-4151-af93-fdffb90dc8d8","name":"Get all Products","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query products ($products_id: Int, $limit: Int, $offset: Int) {\n    products (products_id: $products_id, limit: $limit, offset: $offset) {\n        products {\n            product_id\n            product_name\n            main_sku\n            isstock\n        }\n        totalProducts\n    }\n}","variables":"{\n\t\"limit\": 50,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 09:13:42 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"743"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"products\": {\n            \"products\": [\n                {\n                    \"product_id\": -11,\n                    \"product_name\": \"Quote Product\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 1,\n                    \"product_name\": \"Standard Business Cards VK\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 2,\n                    \"product_name\": \"Flyers One Side\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 3,\n                    \"product_name\": \"Letterhead\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 4,\n                    \"product_name\": \"Postcards\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 5,\n                    \"product_name\": \"Envelopes\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 7,\n                    \"product_name\": \"Brochures\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 20,\n                    \"product_name\": \"Greeting Cards\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 22,\n                    \"product_name\": \"Catalogs Both Side\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 23,\n                    \"product_name\": \"Banners\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 24,\n                    \"product_name\": \"Posters\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 26,\n                    \"product_name\": \"Door Hangers Two Side\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 36,\n                    \"product_name\": \"Flyers Both Side\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 37,\n                    \"product_name\": \"Door Hangers Single Side\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 53,\n                    \"product_name\": \"CD Label\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 56,\n                    \"product_name\": \"Mouse-Pad\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 57,\n                    \"product_name\": \"Mouse-Pad-Round\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 58,\n                    \"product_name\": \"Door Hanger Cylindrical Round\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 59,\n                    \"product_name\": \"Door Hanger Round Corner\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 65,\n                    \"product_name\": \"Folder\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 66,\n                    \"product_name\": \"Yard Sign Banners\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 67,\n                    \"product_name\": \"Custom Shape Magnet\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 68,\n                    \"product_name\": \"Square Magnets\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 69,\n                    \"product_name\": \"NCR Form\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 70,\n                    \"product_name\": \"Bookmark Two side\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 71,\n                    \"product_name\": \"Bookmark One Side\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 72,\n                    \"product_name\": \"Mini Presentation Folders\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 73,\n                    \"product_name\": \"Table Tent Card Three Side\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 74,\n                    \"product_name\": \"Table Tent Card Two Side\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 75,\n                    \"product_name\": \"Compliment Slip\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 76,\n                    \"product_name\": \"Skinny Business Cards\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 80,\n                    \"product_name\": \"Calendar\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 81,\n                    \"product_name\": \"Metallic Business Cards\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 82,\n                    \"product_name\": \"Car Door Magnets\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 83,\n                    \"product_name\": \"Business Card Magnets\",\n                    \"main_sku\": null,\n                    \"isstock\": true\n                },\n                {\n                    \"product_id\": 84,\n                    \"product_name\": \"T-shirt\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 85,\n                    \"product_name\": \"Mug\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 86,\n                    \"product_name\": \"Cap\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 87,\n                    \"product_name\": \"Wall Calendar Double Page\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 88,\n                    \"product_name\": \"Wall Calendar Single Page\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 89,\n                    \"product_name\": \"Desk Calendar\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 90,\n                    \"product_name\": \"Card Holder\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 91,\n                    \"product_name\": \"Desk Pal and Clock\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 92,\n                    \"product_name\": \"Sports Bag\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 93,\n                    \"product_name\": \"Landscape Photo Book\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 94,\n                    \"product_name\": \"Portrait Photo Book\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 95,\n                    \"product_name\": \"Square Photo Book (12x12 In)\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 96,\n                    \"product_name\": \"Square Photo Book (8x8 In)\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 97,\n                    \"product_name\": \"Banners (Custom Size)\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                },\n                {\n                    \"product_id\": 99,\n                    \"product_name\": \"PhotoPrint\",\n                    \"main_sku\": null,\n                    \"isstock\": false\n                }\n            ],\n            \"totalProducts\": 50\n        }\n    }\n}"}],"_postman_id":"eea9d440-c943-46e8-8c59-b7fcfe4d10e1"}],"id":"679a60a4-d8c6-4069-bfd1-69f96953a994","_postman_id":"679a60a4-d8c6-4069-bfd1-69f96953a994","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"Orders","item":[{"name":"Orders","id":"9e013261-251b-43e5-8db0-ea9e9a53b49c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int, $orders_products_id: Int, $order_product_status: Int, $store_id: String, $from_date: String, $to_date: String, $order_status: String, $customer_id: Int, $order_type: OrdersOrderTypeEnum, $limit: Int, $offset: Int) {\n    orders (orders_id: $orders_id, orders_products_id: $orders_products_id, order_product_status: $order_product_status, store_id: $store_id, from_date: $from_date, to_date: $to_date, order_status: $order_status, customer_id: $customer_id, order_type: $order_type, limit: $limit, offset: $offset) {\n        orders {\n          orders_id\n          order_status\n          orders_status_id\n          orders_date_finished\n          local_orders_date_finished\n          order_last_modified_date\n          order_amount\n          total_amount\n          tax_amount\n          shipping_amount\n          coupon_amount\n          coupon_code\n          payment_status_title\n          payment_processing_fees\n          customer {\n            customers_name\n            customers_email_address\n            customers_telephone\n            customers_company\n          }\n          product {\n            orders_products_id\n            product_id\n            products_title\n            products_name\n            products_sku\n            products_quantity\n            products_price\n            product_status\n            product_status_id\n            features_details\n          }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n  \"from_date\": \"2024-05-24\",\n  \"to_date\": \"2024-05-25\",\n  \"limit\" : 2\n}"}},"url":"{{api_url}}","description":"<p>The Orders API provides access to all orders along with their respective order product details. Users can filter the results based on the order ID or a specific date range. To get the records either <code>orders_id</code> or <code>from_date</code> is required</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>This paramter is used to define order id.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>from_date</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>This parameter is used to define starting from date.</td>\n<td>2024-05-23</td>\n</tr>\n<tr>\n<td><code>to_date</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This paramter is used to define ending to date.</td>\n<td>2024-05-24</td>\n</tr>\n<tr>\n<td><code>order_status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This parameter is used to define status of \"order\".</td>\n<td>Pending</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter is used to define customer id.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>The ID of the ordered product to get specific data</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>order_product_status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>The Status ID of the order product to get specific data</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>store_id</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Retrieve orders based on a store ID (optional). The store ID can follow either of the patterns:  <br />1. <strong>Store and Child Store Filter (e.g., 2)</strong>: This will filter orders for the store with ID 2 and its child stores, if any.  <br />2. <strong>Store Specific Filter (e.g., 2_0)</strong>: The underscore zero indicates that orders should be filtered for only the store with ID 2.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>order_type</code></td>\n<td>No</td>\n<td><em>Enum</em></td>\n<td>The order_type parameter in API allows users to filter the records based on the order ID. It supports two values: lt (less than) and gt (greater than).  <br />  <br /><strong>Less Than (lt)</strong>  <br />When a user sets order_type=lt and provides an order_id value, the API will return records where the order ID is less than the specified order_id. This is useful for retrieving orders that were placed before a certain order. For example, if a user filters by order_id=3 and sets order_type=lt, the API will return all orders with an ID less than 3 (e.g., 1, 2).  <br />  <br /><strong>Greater Than (gt)</strong>  <br />When a user sets order_type=gt and provides an order_id value, the API will return records where the order ID is greater than the specified order_id. This is useful for retrieving orders that were placed after a certain order. For example, if a user filters by order_id=3 and sets order_type=gt, the API will return all orders with an ID greater than 3 (e.g., 4, 5, 6).</td>\n<td>lt / gt</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"7516bb02-8e1a-4db7-a996-1c325a913f23","name":"Get Orders by Date Range","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int, $store_id: String, $from_date: String, $to_date: String, $order_status: String, $customer_id: Int, $order_type: OrdersOrderTypeEnum, $limit: Int, $offset: Int) {\n    orders (orders_id: $orders_id, store_id: $store_id, from_date: $from_date, to_date: $to_date, order_status: $order_status, customer_id: $customer_id, order_type: $order_type, limit: $limit, offset: $offset) {\n        orders {\n\t\t\tuser_id\n            orders_id\n            corporate_id\n            order_status\n            orders_status_id\n            orders_date_finished\n            local_orders_date_finished\n            shipping_mode\n            courirer_company_name\n            airway_bill_number\n            printer_name\n            printer_email\n            payment_method_name\n            total_amount\n            order_amount\n            shipping_amount\n            tax_amount\n            coupon_amount\n            coupon_code\n            coupon_type\n            order_vendor_amount\n            order_note\n            orders_due_date\n            orders_extrafield\n            extrafield\n            approved_by\n            order_last_modified_date\n            department_id\n            cost_center_code\n            po_number\n            total_weight\n            refund_amount\n            blind_shipping_charge\n            placed_by\n            payment_due_date\n            transactionid\n            sales_agent_name\n            branch_name\n            payment_status_title\n            production_due_date\n            payment_processing_fees\n            payment_date\n            shipping_type_id\n            invoice_number\n            invoice_date\n            parent_corporate_id\n            customer {\n                customers_name\n\t\t\t\tcustomers_email_address\n\t\t\t\tcustomers_telephone\n\t\t\t\tcustomers_company\n            }\n            product {\n                orders_products_id\n                product_size_details\n                products_name\n                products_title\n                products_sku\n                products_price\n                products_quantity\n                template_type\n                features_details\n                photo_print_details\n                print_ready_files\n                productsize\n                csv_file_name\n                products_vendor_price\n                products_weight\n                inventory_storage_days\n                shipping_company\n                tracking_number\n                product_status_id\n                product_status\n                product_id\n                reference_order_id\n                is_kit\n                product_tax\n                product_info\n                template_info\n                product_printer_name\n                products_unit_price\n                quote_id\n                product_production_due_date\n                orders_products_id_pattern\n            }\n            blind_detail {\n                blind_name\n                blind_company\n                blind_street_address\n                blind_suburb\n                blind_city\n                blind_postcode\n                blind_state\n                blind_state_code\n                blind_country\n\t\t\t\tblind_extrafield\n            }\n            delivery_detail {\n                delivery_name\n                delivery_company\n                delivery_street_address\n                delivery_suburb\n                delivery_city\n                delivery_postcode\n                delivery_state\n                delivery_state_code\n                delivery_country\n                delivery_telephone\n                shipping_extrafield\n            }\n            billing_detail {\n                billing_name\n                billing_company\n                billing_street_address\n                billing_suburb\n                billing_city\n                billing_postcode\n                billing_state\n                billing_state_code\n                billing_country\n                billing_telephone\n                billing_extrafield\n            }\n            shipment_detail {\n                shipment_shipping_type_id\n                shipment_tracking_number\n                shipment_company\n                shipment_total_weight\n                shipment_package\n            }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n  \"from_date\": \"2024-05-24\",\n  \"to_date\": \"2024-05-25\"\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 10:24:12 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"4581"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orders\": {\n            \"orders\": [\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 172,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Order Processing\",\n                    \"orders_status_id\": 2,\n                    \"orders_date_finished\": \"2024-05-24 08:17:07\",\n                    \"local_orders_date_finished\": \"2024-05-24 08:17:07\",\n                    \"shipping_mode\": null,\n                    \"courirer_company_name\": null,\n                    \"airway_bill_number\": null,\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Pay On Account\",\n                    \"total_amount\": 258.65,\n                    \"order_amount\": 97.66,\n                    \"shipping_amount\": 150,\n                    \"tax_amount\": 10.99,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 08:17:07\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 19.41,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Paid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 08:17:08\",\n                    \"shipping_type_id\": 0,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 204,\n                            \"product_size_details\": {\n                                \"width\": 17.25,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"326165\",\n                            \"products_title\": \"Brochures\",\n                            \"products_sku\": null,\n                            \"products_price\": 92.99,\n                            \"products_quantity\": 100,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Paper Type\",\n                                    \"option_id\": 69,\n                                    \"attribute_label\": \"310 gsm\",\n                                    \"attribute_value\": \"310 gsm\",\n                                    \"option_price\": 4.6690224609375,\n                                    \"option_discount_price\": 4.6690224609375\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Production Time\",\n                                    \"option_id\": 70,\n                                    \"attribute_label\": \"3 Business Days\",\n                                    \"attribute_value\": \"3 Business Days\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"https://your.domain.com/172/172_204_brochures_882481.jpg\",\n                                        \"Back\": \"https://your.domain.com/172/172_204_brochures_636256.jpg\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"https://your.domain.com/172/172_204_brochures_882481.jpg\",\n                                        \"Back\": \"https://your.domain.com/172/172_204_brochures_636256.jpg\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"https://your.domain.com/172/7_6_11138657_1_thumb.jpg\",\n                                        \"Back\": \"https://your.domain.com/172/7_6_11138657_2_thumb.jpg\"\n                                    }\n                                }\n                            },\n                            \"productsize\": \"17x11_Half-fold\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.194063\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": \"Weight Based\",\n                            \"tracking_number\": null,\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 7,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 15,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": 73.24499999999999,\n                                    \"tax_amount\": 10.986749999999999\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 97.66,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"204\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null,\n                        \"blind_extrafield\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Howard Watkins\",\n                        \"delivery_company\": \"TECHNO\",\n                        \"delivery_street_address\": \"647 Vandervort Haven\",\n                        \"delivery_suburb\": \"Port Tyron\",\n                        \"delivery_city\": \"Alabama\",\n                        \"delivery_postcode\": \"74645\",\n                        \"delivery_state\": \"Alabama\",\n                        \"delivery_state_code\": \"AL\",\n                        \"delivery_country\": \"United States\",\n                        \"delivery_telephone\": \"99988899999\",\n                        \"shipping_extrafield\": [\n                            {\n                                \"label\": \"Profle Picture\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            },\n                            {\n                                \"label\": \"Gender\",\n                                \"value\": \"Male\"\n                            }\n                        ]\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 1,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": \"Weight Based\",\n                            \"shipment_total_weight\": 14.5546875,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": 0,\n                                    \"width\": 0,\n                                    \"height\": 0,\n                                    \"shipment_products_id\": \"204\",\n                                    \"shipment_product_name\": \"Brochures\",\n                                    \"shipment_product_weight\": 14.5546875\n                                }\n                            }\n                        },\n                        {\n                            \"shipment_shipping_type_id\": 2,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": \"Weight Based\",\n                            \"shipment_total_weight\": 4.8515625,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": 0,\n                                    \"width\": 0,\n                                    \"height\": 0,\n                                    \"shipment_products_id\": \"204\",\n                                    \"shipment_product_name\": \"Brochures\",\n                                    \"shipment_product_weight\": 4.8515625\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 173,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Order Processing\",\n                    \"orders_status_id\": 2,\n                    \"orders_date_finished\": \"2024-05-24 08:18:54\",\n                    \"local_orders_date_finished\": \"2024-05-24 08:18:54\",\n                    \"shipping_mode\": null,\n                    \"courirer_company_name\": null,\n                    \"airway_bill_number\": null,\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Pay On Account\",\n                    \"total_amount\": 354.98,\n                    \"order_amount\": 97.66,\n                    \"shipping_amount\": 200,\n                    \"tax_amount\": 7.32,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 08:18:54\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 19.41,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 50,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Paid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 08:18:54\",\n                    \"shipping_type_id\": 0,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 205,\n                            \"product_size_details\": {\n                                \"width\": 17.25,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"326165\",\n                            \"products_title\": \"Brochures\",\n                            \"products_sku\": null,\n                            \"products_price\": 92.99,\n                            \"products_quantity\": 100,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Paper Type\",\n                                    \"option_id\": 69,\n                                    \"attribute_label\": \"310 gsm\",\n                                    \"attribute_value\": \"310 gsm\",\n                                    \"option_price\": 4.6690224609375,\n                                    \"option_discount_price\": 4.6690224609375\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Production Time\",\n                                    \"option_id\": 70,\n                                    \"attribute_label\": \"3 Business Days\",\n                                    \"attribute_value\": \"3 Business Days\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"https://your.domain.com/173/173_205_brochures_838317.jpg\",\n                                        \"Back\": \"https://your.domain.com/173/173_205_brochures_917826.jpg\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"https://your.domain.com/173/173_205_brochures_838317.jpg\",\n                                        \"Back\": \"https://your.domain.com/173/173_205_brochures_917826.jpg\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"https://your.domain.com/173/7_6_11138657_1_thumb.jpg\",\n                                        \"Back\": \"https://your.domain.com/173/7_6_11138657_2_thumb.jpg\"\n                                    }\n                                }\n                            },\n                            \"productsize\": \"17x11_Half-fold\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.194063\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": \"Weight Based\",\n                            \"tracking_number\": null,\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 7,\n                            \"reference_order_id\": 172,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": 48.83,\n                                    \"tax_amount\": 7.3245\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 97.66,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"205\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": \"Howard Watkins\",\n                        \"blind_company\": \"Test Company\",\n                        \"blind_street_address\": \"647 Vandervort Haven\",\n                        \"blind_suburb\": \"Port Tyron\",\n                        \"blind_city\": \"Alabama\",\n                        \"blind_postcode\": \"74645\",\n                        \"blind_state\": \"Alabama\",\n                        \"blind_state_code\": \"AL\",\n                        \"blind_country\": \"United States\",\n                        \"blind_extrafield\": []\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Howard Watkins\",\n                        \"delivery_company\": \"TECHNO\",\n                        \"delivery_street_address\": \"647 Vandervort Haven\",\n                        \"delivery_suburb\": \"Port Tyron\",\n                        \"delivery_city\": \"Alabama\",\n                        \"delivery_postcode\": \"74645\",\n                        \"delivery_state\": \"Alabama\",\n                        \"delivery_state_code\": \"AL\",\n                        \"delivery_country\": \"United States\",\n                        \"delivery_telephone\": \"99988899999\",\n                        \"shipping_extrafield\": [\n                            {\n                                \"label\": \"Profle Picture\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            },\n                            {\n                                \"label\": \"Gender\",\n                                \"value\": \"Male\"\n                            }\n                        ]\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 2,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": \"Weight Based\",\n                            \"shipment_total_weight\": 9.703125,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": 0,\n                                    \"width\": 0,\n                                    \"height\": 0,\n                                    \"shipment_products_id\": \"205\",\n                                    \"shipment_product_name\": \"Brochures\",\n                                    \"shipment_product_weight\": 9.703125\n                                }\n                            }\n                        },\n                        {\n                            \"shipment_shipping_type_id\": 2,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": \"Weight Based\",\n                            \"shipment_total_weight\": 9.703125,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": 0,\n                                    \"width\": 0,\n                                    \"height\": 0,\n                                    \"shipment_products_id\": \"205\",\n                                    \"shipment_product_name\": \"Brochures\",\n                                    \"shipment_product_weight\": 9.703125\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 174,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Order Processing\",\n                    \"orders_status_id\": 2,\n                    \"orders_date_finished\": \"2024-05-24 09:24:52\",\n                    \"local_orders_date_finished\": \"2024-05-24 09:24:52\",\n                    \"shipping_mode\": \"Ground\",\n                    \"courirer_company_name\": \"Weight Based\",\n                    \"airway_bill_number\": \"TR323234\",\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Pay On Account\",\n                    \"total_amount\": 524.35,\n                    \"order_amount\": 369,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 55.35,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 09:24:52\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": null,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Paid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 09:24:52\",\n                    \"shipping_type_id\": 2,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 206,\n                            \"product_size_details\": {\n                                \"width\": 0,\n                                \"height\": 0,\n                                \"length\": 0,\n                                \"unit\": \"0\"\n                            },\n                            \"products_name\": null,\n                            \"products_title\": \"Banner Stand\",\n                            \"products_sku\": null,\n                            \"products_price\": 100,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {},\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": [],\n                            \"productsize\": null,\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"TR323234\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 114,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 15,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"100.00\",\n                                    \"tax_amount\": 15\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 100,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"206\"\n                        },\n                        {\n                            \"orders_products_id\": 207,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"343005\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com/174/105_11102402_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com/174/174_207_canvas_356268.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102409Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=63182ef65783883e0a37791f2fad08829f926758d760e5e811398a1b4f49704a\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"TR323234\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 15,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"269.00\",\n                                    \"tax_amount\": 40.35\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"207\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null,\n                        \"blind_extrafield\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Howard Watkins\",\n                        \"delivery_company\": \"Test Company\",\n                        \"delivery_street_address\": \"647 Vandervort Haven\",\n                        \"delivery_suburb\": \"Port Tyron\",\n                        \"delivery_city\": \"Alabama\",\n                        \"delivery_postcode\": \"74645\",\n                        \"delivery_state\": \"Alabama\",\n                        \"delivery_state_code\": \"AL\",\n                        \"delivery_country\": \"United States\",\n                        \"delivery_telephone\": \"99988899999\",\n                        \"shipping_extrafield\": []\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 2,\n                            \"shipment_tracking_number\": \"TR323234\",\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": 40,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": \"5\",\n                                    \"width\": \"10\",\n                                    \"height\": \"15\",\n                                    \"shipment_products_id\": \"206,207\",\n                                    \"shipment_product_name\": \"Banner Stand,Canvas\",\n                                    \"shipment_product_weight\": \"15\"\n                                },\n                                \"2\": {\n                                    \"length\": \"10\",\n                                    \"width\": \"15\",\n                                    \"height\": \"20\",\n                                    \"shipment_products_id\": \"206,207\",\n                                    \"shipment_product_name\": \"Banner Stand,Canvas\",\n                                    \"shipment_product_weight\": \"25\"\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 175,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Pending\",\n                    \"orders_status_id\": 1,\n                    \"orders_date_finished\": \"2024-05-24 09:26:14\",\n                    \"local_orders_date_finished\": \"2024-05-24 09:26:14\",\n                    \"shipping_mode\": \"Ground\",\n                    \"courirer_company_name\": \"Weight Based\",\n                    \"airway_bill_number\": null,\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Cheque\",\n                    \"total_amount\": 524.35,\n                    \"order_amount\": 369,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 55.35,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 09:26:14\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": null,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Unpaid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 09:26:15\",\n                    \"shipping_type_id\": 2,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 208,\n                            \"product_size_details\": {\n                                \"width\": 0,\n                                \"height\": 0,\n                                \"length\": 0,\n                                \"unit\": \"0\"\n                            },\n                            \"products_name\": null,\n                            \"products_title\": \"Banner Stand\",\n                            \"products_sku\": null,\n                            \"products_price\": 100,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {},\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": [],\n                            \"productsize\": null,\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GH2323\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 114,\n                            \"reference_order_id\": 174,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 15,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"100.00\",\n                                    \"tax_amount\": 15\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 100,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"208\"\n                        },\n                        {\n                            \"orders_products_id\": 209,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"343005\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com/175/105_11102402_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com/175/175_209_canvas_597414.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102409Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=8c83b4ce64d9fbd2399a6c65502ea426c8cef553bb6c881df715a7e9c91c29d1\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GH2323\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 174,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 15,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"269.00\",\n                                    \"tax_amount\": 40.35\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"209\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null,\n                        \"blind_extrafield\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Howard Watkins\",\n                        \"delivery_company\": \"Test Company\",\n                        \"delivery_street_address\": \"647 Vandervort Haven\",\n                        \"delivery_suburb\": \"Port Tyron\",\n                        \"delivery_city\": \"Alabama\",\n                        \"delivery_postcode\": \"74645\",\n                        \"delivery_state\": \"Alabama\",\n                        \"delivery_state_code\": \"AL\",\n                        \"delivery_country\": \"United States\",\n                        \"delivery_telephone\": \"99988899999\",\n                        \"shipping_extrafield\": []\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 2,\n                            \"shipment_tracking_number\": \"GH2323\",\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": 150,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": \"5.5\",\n                                    \"width\": \"6.6\",\n                                    \"height\": \"7.7\",\n                                    \"shipment_products_id\": \"208\",\n                                    \"shipment_product_name\": \"Banner Stand\",\n                                    \"shipment_product_weight\": \"10\"\n                                },\n                                \"2\": {\n                                    \"length\": \"7.8\",\n                                    \"width\": \"8.8\",\n                                    \"height\": \"9.9\",\n                                    \"shipment_products_id\": \"208\",\n                                    \"shipment_product_name\": \"Banner Stand\",\n                                    \"shipment_product_weight\": \"20\"\n                                },\n                                \"3\": {\n                                    \"length\": \"15\",\n                                    \"width\": \"20\",\n                                    \"height\": \"15\",\n                                    \"shipment_products_id\": \"209\",\n                                    \"shipment_product_name\": \"Canvas\",\n                                    \"shipment_product_weight\": \"50\"\n                                },\n                                \"4\": {\n                                    \"length\": \"25\",\n                                    \"width\": \"25\",\n                                    \"height\": \"25\",\n                                    \"shipment_products_id\": \"209\",\n                                    \"shipment_product_name\": \"Canvas\",\n                                    \"shipment_product_weight\": \"70\"\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 176,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Pending\",\n                    \"orders_status_id\": 1,\n                    \"orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"shipping_mode\": \"RadixWeb\",\n                    \"courirer_company_name\": \"Local Pickup From Store\",\n                    \"airway_bill_number\": \"GHH-343434\",\n                    \"printer_name\": \"Canon Printer (canonprinter)\",\n                    \"printer_email\": \"canonprinter@radixweb.com\",\n                    \"payment_method_name\": \"Cheque\",\n                    \"total_amount\": 455.82,\n                    \"order_amount\": 283.46,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 62.36,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:03:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 9.84,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 10,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Unpaid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:03:27\",\n                    \"shipping_type_id\": 1,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 210,\n                            \"product_size_details\": {\n                                \"width\": 8.75,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"457793\",\n                            \"products_title\": \"Flyers One Side\",\n                            \"products_sku\": null,\n                            \"products_price\": 12,\n                            \"products_quantity\": 100,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Paper Type\",\n                                    \"option_id\": 65,\n                                    \"attribute_label\": \"310 gsm\",\n                                    \"attribute_value\": \"310 gsm\",\n                                    \"option_price\": 2.460938,\n                                    \"option_discount_price\": 2.4609375\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Production Time\",\n                                    \"option_id\": 66,\n                                    \"attribute_label\": \"3 Business Days\",\n                                    \"attribute_value\": \"3 Business Days\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Single File\",\n                                    \"option_id\": \"125\",\n                                    \"attribute_label\": \"176_option_cyborg_1716544748015.jpg\",\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/176/176_option_cyborg_1716544748015.jpg\"\n                                    ]\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Multiple File\",\n                                    \"option_id\": \"126\",\n                                    \"attribute_label\": [\n                                        \"176_option_comp_1716544933696.jpg\",\n                                        \"176_option_panda_1716544934067.jpeg\"\n                                    ],\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/176/176_option_comp_1716544933696.jpg\",\n                                        \"https://your.domain.com/176/176_option_panda_1716544934067.jpeg\"\n                                    ],\n                                    \"option_price\": \"\"\n                                },\n                                \"AO-5\": {\n                                    \"option_label\": \"Cloud File\",\n                                    \"option_id\": \"130\",\n                                    \"attribute_label\": \"20240524_095759_82805.jpeg\",\n                                    \"attribute_value\": [\n                                        \"https://uc830aa5ba187b28e78bf3600a9e.dl.dropboxusercontent.com/cd/0/get/CTeKIGxaMfeghMO8V4GWxU8ryi2iwdrcmjE3zWVXp2h1JBK7zwA0c32xUjFKpm4GlymU6OS5G1EIPC8ly_vUDcVlB2CsxQ5OGBEyTv5djqC4KMrechqHksD154ojfkK-tKcjHDHohiT6X9qyXF2csNSPfYYogD48Ui4Nh6a_ITMtog/file\"\n                                    ]\n                                },\n                                \"AO-6\": {\n                                    \"option_label\": \"Speicific Requirement\",\n                                    \"option_id\": \"136\",\n                                    \"attribute_label\": \"TEST\",\n                                    \"attribute_value\": \"TEST\"\n                                },\n                                \"AO-7\": {\n                                    \"option_label\": \"Checkboxes\",\n                                    \"option_id\": 145,\n                                    \"attribute_label\": \"CH 1, CH 2, CH 3\",\n                                    \"attribute_value\": \"CH 1, CH 2, CH 3\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"https://your.domain.com/176/176_210_flyers%20one%20side_982488.jpg\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"https://your.domain.com/176/176_210_flyers%20one%20side_982488.jpg\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"https://your.domain.com/176/2_6_20330899_1_thumb.jpg\"\n                                    }\n                                }\n                            },\n                            \"productsize\": \"A4 - 8.5x11\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.098438\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 2,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"3.1812\",\n                                    \"product_price\": 14.460938\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 14.46,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"210\"\n                        },\n                        {\n                            \"orders_products_id\": 211,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"251300\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com/176/105_8809231_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com/176/176_211_canvas_927387.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102410Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=33658e01f01ea455f585fe511f201d0be6106e3124beb791165776569d0f33a3\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"59.18\",\n                                    \"product_price\": 269\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"211\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": \"Sean Preston\",\n                        \"blind_company\": \"Haxxor\",\n                        \"blind_street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                        \"blind_suburb\": \"Zuid Steenovenrecht\",\n                        \"blind_city\": \"Cura Cabai\",\n                        \"blind_postcode\": \"64015\",\n                        \"blind_state\": \"Aruba\",\n                        \"blind_state_code\": null,\n                        \"blind_country\": \"Netherlands\",\n                        \"blind_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"RadixWeb\",\n                        \"delivery_company\": \"Radix Pvt Ltd.\",\n                        \"delivery_street_address\": \"Ekyarth, Near Malabar County\",\n                        \"delivery_suburb\": \"Jagatpur Road\",\n                        \"delivery_city\": \"Ahmedabad\",\n                        \"delivery_postcode\": \"898565\",\n                        \"delivery_state\": \"Gujarat\",\n                        \"delivery_state_code\": \"GJ\",\n                        \"delivery_country\": \"India\",\n                        \"delivery_telephone\": \"7412369852\",\n                        \"shipping_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 1,\n                            \"shipment_tracking_number\": \"GHH-343434\",\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": 9.8438,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": \"10\",\n                                    \"width\": \"20\",\n                                    \"height\": \"30\",\n                                    \"shipment_products_id\": \"210,211\",\n                                    \"shipment_product_name\": \"Flyers One Side,Canvas\",\n                                    \"shipment_product_weight\": \"9.8438\"\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 8,\n                    \"orders_id\": 177,\n                    \"corporate_id\": 2,\n                    \"order_status\": \"Order Processing\",\n                    \"orders_status_id\": 2,\n                    \"orders_date_finished\": \"2024-05-25 10:10:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:10:26\",\n                    \"shipping_mode\": \"Ground\",\n                    \"courirer_company_name\": \"Weight Based\",\n                    \"airway_bill_number\": null,\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Pay On Account\",\n                    \"total_amount\": 369,\n                    \"order_amount\": 269,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 0,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:10:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": null,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Paid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:10:26\",\n                    \"shipping_type_id\": 2,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Edith Dodson\",\n                        \"customers_email_address\": \"EdithDodson@test.com\",\n                        \"customers_telephone\": \"+44 09502 035218\",\n                        \"customers_company\": \"Cybth\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 212,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"274368\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com/177/105_37138685_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com/177/177_212_canvas_465759.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102409Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=0fe2102dd145af1def205d6c33a7bf9a5037a9c5c9e51f68ddecdcbd617d3717\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": null,\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"269.00\",\n                                    \"tax_amount\": 0\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"212\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null,\n                        \"blind_extrafield\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Edith Dodson\",\n                        \"delivery_company\": \"Cybth\",\n                        \"delivery_street_address\": \"Mulckhuijselaan 4\",\n                        \"delivery_suburb\": \"Oud Koekensland\",\n                        \"delivery_city\": \"Amsterdam\",\n                        \"delivery_postcode\": \"1860\",\n                        \"delivery_state\": \"North Holland\",\n                        \"delivery_state_code\": null,\n                        \"delivery_country\": \"Netherlands\",\n                        \"delivery_telephone\": \"+44 09502 035218\",\n                        \"shipping_extrafield\": []\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Edith Dodson\",\n                        \"billing_company\": \"Cybth\",\n                        \"billing_street_address\": \"Mulckhuijselaan 4\",\n                        \"billing_suburb\": \"Oud Koekensland\",\n                        \"billing_city\": \"Amsterdam\",\n                        \"billing_postcode\": \"1860\",\n                        \"billing_state\": \"North Holland\",\n                        \"billing_state_code\": null,\n                        \"billing_country\": \"Netherlands\",\n                        \"billing_telephone\": \"+44 09502 035218\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": null,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": null,\n                            \"shipment_package\": null\n                        }\n                    ]\n                }\n            ],\n            \"totalOrders\": 6\n        }\n    }\n}"},{"id":"3892e9c3-c652-474b-b5d3-1d0c42b7e534","name":"Get orders by Order type is GT","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int, $store_id: String, $from_date: String, $to_date: String, $order_status: String, $customer_id: Int, $order_type: OrdersOrderTypeEnum, $limit: Int, $offset: Int) {\n    orders (orders_id: $orders_id, store_id: $store_id, from_date: $from_date, to_date: $to_date, order_status: $order_status, customer_id: $customer_id, order_type: $order_type, limit: $limit, offset: $offset) {\n        orders {\n\t\t\tuser_id\n            orders_id\n            corporate_id\n            order_status\n            orders_status_id\n            orders_date_finished\n            local_orders_date_finished\n            shipping_mode\n            courirer_company_name\n            airway_bill_number\n            printer_name\n            printer_email\n            payment_method_name\n            total_amount\n            order_amount\n            shipping_amount\n            tax_amount\n            coupon_amount\n            coupon_code\n            coupon_type\n            order_vendor_amount\n            order_note\n            orders_due_date\n            orders_extrafield\n            extrafield\n            approved_by\n            order_last_modified_date\n            department_id\n            cost_center_code\n            po_number\n            total_weight\n            refund_amount\n            blind_shipping_charge\n            placed_by\n            payment_due_date\n            transactionid\n            sales_agent_name\n            branch_name\n            payment_status_title\n            production_due_date\n            payment_processing_fees\n            payment_date\n            shipping_type_id\n            invoice_number\n            invoice_date\n            parent_corporate_id\n            customer {\n                customers_name\n\t\t\t\tcustomers_email_address\n\t\t\t\tcustomers_telephone\n\t\t\t\tcustomers_company\n            }\n            product {\n                orders_products_id\n                product_size_details\n                products_name\n                products_title\n                products_sku\n                products_price\n                products_quantity\n                template_type\n                features_details\n                photo_print_details\n                print_ready_files\n                productsize\n                csv_file_name\n                products_vendor_price\n                products_weight\n                inventory_storage_days\n                shipping_company\n                tracking_number\n                product_status_id\n                product_status\n                product_id\n                reference_order_id\n                is_kit\n                product_tax\n                product_info\n                template_info\n                product_printer_name\n                products_unit_price\n                quote_id\n                product_production_due_date\n                orders_products_id_pattern\n            }\n            blind_detail {\n                blind_name\n                blind_company\n                blind_street_address\n                blind_suburb\n                blind_city\n                blind_postcode\n                blind_state\n                blind_state_code\n                blind_country\n\t\t\t\tblind_extrafield\n            }\n            delivery_detail {\n                delivery_name\n                delivery_company\n                delivery_street_address\n                delivery_suburb\n                delivery_city\n                delivery_postcode\n                delivery_state\n                delivery_state_code\n                delivery_country\n                delivery_telephone\n                shipping_extrafield\n            }\n            billing_detail {\n                billing_name\n                billing_company\n                billing_street_address\n                billing_suburb\n                billing_city\n                billing_postcode\n                billing_state\n                billing_state_code\n                billing_country\n                billing_telephone\n                billing_extrafield\n            }\n            shipment_detail {\n                shipment_shipping_type_id\n                shipment_tracking_number\n                shipment_company\n                shipment_total_weight\n                shipment_package\n            }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n  \"orders_id\": 1,\n  \"order_type\": \"gt\"\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 10:25:52 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"3315"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orders\": {\n            \"orders\": [\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 176,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Pending\",\n                    \"orders_status_id\": 1,\n                    \"orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"shipping_mode\": \"RadixWeb\",\n                    \"courirer_company_name\": \"Local Pickup From Store\",\n                    \"airway_bill_number\": \"GHH-343434\",\n                    \"printer_name\": \"Canon Printer (canonprinter)\",\n                    \"printer_email\": \"canonprinter@radixweb.com\",\n                    \"payment_method_name\": \"Cheque\",\n                    \"total_amount\": 455.82,\n                    \"order_amount\": 283.46,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 62.36,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:03:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 9.84,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 10,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Unpaid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:03:27\",\n                    \"shipping_type_id\": 1,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 210,\n                            \"product_size_details\": {\n                                \"width\": 8.75,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"457793\",\n                            \"products_title\": \"Flyers One Side\",\n                            \"products_sku\": null,\n                            \"products_price\": 12,\n                            \"products_quantity\": 100,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Paper Type\",\n                                    \"option_id\": 65,\n                                    \"attribute_label\": \"310 gsm\",\n                                    \"attribute_value\": \"310 gsm\",\n                                    \"option_price\": 2.460938,\n                                    \"option_discount_price\": 2.4609375\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Production Time\",\n                                    \"option_id\": 66,\n                                    \"attribute_label\": \"3 Business Days\",\n                                    \"attribute_value\": \"3 Business Days\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Single File\",\n                                    \"option_id\": \"125\",\n                                    \"attribute_label\": \"176_option_cyborg_1716544748015.jpg\",\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/image.jpg\"\n                                    ]\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Multiple File\",\n                                    \"option_id\": \"126\",\n                                    \"attribute_label\": [\n                                        \"176_option_comp_1716544933696.jpg\",\n                                        \"176_option_panda_1716544934067.jpeg\"\n                                    ],\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/image.jpg\",\n                                        \"https://your.domain.com/image.jpg\"\n                                    ],\n                                    \"option_price\": \"\"\n                                },\n                                \"AO-5\": {\n                                    \"option_label\": \"Cloud File\",\n                                    \"option_id\": \"130\",\n                                    \"attribute_label\": \"20240524_095759_82805.jpeg\",\n                                    \"attribute_value\": [\n                                        \"https://uc7a370d80f2c1a905f62970b3d4.dl.dropboxusercontent.com/cd/0/get/CTe4Kd8RxqHovVSZAG8D2dfUK0dbVUuP3AMRzOs13CN_YVFGAFzD5b9QK08Fd07zUTrc6R6njn5w9mcOdxe9O1bxO_NTQZLfIAOGPMUppD7admya4MUqfly0kPPYyqgNOrUVfKJPT_tE4jI5y5e3dKuEzR5WgWX5O58dMeAccpC05A/file\"\n                                    ]\n                                },\n                                \"AO-6\": {\n                                    \"option_label\": \"Speicific Requirement\",\n                                    \"option_id\": \"136\",\n                                    \"attribute_label\": \"TEST\",\n                                    \"attribute_value\": \"TEST\"\n                                },\n                                \"AO-7\": {\n                                    \"option_label\": \"Checkboxes\",\n                                    \"option_id\": 145,\n                                    \"attribute_label\": \"CH 1, CH 2, CH 3\",\n                                    \"attribute_value\": \"CH 1, CH 2, CH 3\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"https://your.domain.com//176/176_210_flyers%20one%20side_982488.jpg\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"https://your.domain.com//176/176_210_flyers%20one%20side_982488.jpg\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"https://your.domain.com//176/2_6_20330899_1_thumb.jpg\"\n                                    }\n                                }\n                            },\n                            \"productsize\": \"A4 - 8.5x11\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.098438\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 2,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"3.1812\",\n                                    \"product_price\": 14.460938\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 14.46,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"210\"\n                        },\n                        {\n                            \"orders_products_id\": 211,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"251300\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com//176/105_8809231_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com//176/176_211_canvas_927387.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102550Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=7b5decaca7d2632be703ea76f88e1e6ce2d4322876787e28a096e0f66c4d640b\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"59.18\",\n                                    \"product_price\": 269\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"211\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": \"Sean Preston\",\n                        \"blind_company\": \"Haxxor\",\n                        \"blind_street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                        \"blind_suburb\": \"Zuid Steenovenrecht\",\n                        \"blind_city\": \"Cura Cabai\",\n                        \"blind_postcode\": \"64015\",\n                        \"blind_state\": \"Aruba\",\n                        \"blind_state_code\": null,\n                        \"blind_country\": \"Netherlands\",\n                        \"blind_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"RadixWeb\",\n                        \"delivery_company\": \"Radix Pvt Ltd.\",\n                        \"delivery_street_address\": \"Ekyarth, Near Malabar County\",\n                        \"delivery_suburb\": \"Jagatpur Road\",\n                        \"delivery_city\": \"Ahmedabad\",\n                        \"delivery_postcode\": \"898565\",\n                        \"delivery_state\": \"Gujarat\",\n                        \"delivery_state_code\": \"GJ\",\n                        \"delivery_country\": \"India\",\n                        \"delivery_telephone\": \"7412369852\",\n                        \"shipping_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 1,\n                            \"shipment_tracking_number\": \"GHH-343434\",\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": 9.8438,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": \"10\",\n                                    \"width\": \"20\",\n                                    \"height\": \"30\",\n                                    \"shipment_products_id\": \"210,211\",\n                                    \"shipment_product_name\": \"Flyers One Side,Canvas\",\n                                    \"shipment_product_weight\": \"9.8438\"\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 8,\n                    \"orders_id\": 177,\n                    \"corporate_id\": 2,\n                    \"order_status\": \"Order Processing\",\n                    \"orders_status_id\": 2,\n                    \"orders_date_finished\": \"2024-05-25 10:10:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:10:26\",\n                    \"shipping_mode\": \"Ground\",\n                    \"courirer_company_name\": \"Weight Based\",\n                    \"airway_bill_number\": null,\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Pay On Account\",\n                    \"total_amount\": 369,\n                    \"order_amount\": 269,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 0,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:10:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": null,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Paid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:10:26\",\n                    \"shipping_type_id\": 2,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Edith Dodson\",\n                        \"customers_email_address\": \"EdithDodson@test.com\",\n                        \"customers_telephone\": \"+44 09502 035218\",\n                        \"customers_company\": \"Cybth\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 212,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"274368\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com//177/105_37138685_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com//177/177_212_canvas_465759.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102550Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=aaeeb910b8a725a2f665d2c79e88f3b094fc50a1265890a3474eb574937009ba\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": null,\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"269.00\",\n                                    \"tax_amount\": 0\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"212\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null,\n                        \"blind_extrafield\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Edith Dodson\",\n                        \"delivery_company\": \"Cybth\",\n                        \"delivery_street_address\": \"Mulckhuijselaan 4\",\n                        \"delivery_suburb\": \"Oud Koekensland\",\n                        \"delivery_city\": \"Amsterdam\",\n                        \"delivery_postcode\": \"1860\",\n                        \"delivery_state\": \"North Holland\",\n                        \"delivery_state_code\": null,\n                        \"delivery_country\": \"Netherlands\",\n                        \"delivery_telephone\": \"+44 09502 035218\",\n                        \"shipping_extrafield\": []\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Edith Dodson\",\n                        \"billing_company\": \"Cybth\",\n                        \"billing_street_address\": \"Mulckhuijselaan 4\",\n                        \"billing_suburb\": \"Oud Koekensland\",\n                        \"billing_city\": \"Amsterdam\",\n                        \"billing_postcode\": \"1860\",\n                        \"billing_state\": \"North Holland\",\n                        \"billing_state_code\": null,\n                        \"billing_country\": \"Netherlands\",\n                        \"billing_telephone\": \"+44 09502 035218\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": null,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": null,\n                            \"shipment_package\": null\n                        }\n                    ]\n                }\n            ],\n            \"totalOrders\": 2\n        }\n    }\n}"},{"id":"330884fd-c3ff-4641-a905-ce5a1121bcde","name":"Get Orders product images","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int, $orders_products_id: Int, $order_product_status: Int, $store_id: String, $from_date: String, $to_date: String, $order_status: String, $customer_id: Int, $order_type: OrdersOrderTypeEnum, $limit: Int, $offset: Int) {\n    orders (orders_id: $orders_id, orders_products_id: $orders_products_id, order_product_status: $order_product_status, store_id: $store_id, from_date: $from_date, to_date: $to_date, order_status: $order_status, customer_id: $customer_id, order_type: $order_type, limit: $limit, offset: $offset) {\n        orders {\n            orders_id\n            product {\n                orders_products_id\n                imagefiles\n            }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n    \"orders_id\" : 1811,\n    \"orders_products_id\":6094\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 10:25:52 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"3315"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orders\": {\n            \"orders\": [\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 176,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Pending\",\n                    \"orders_status_id\": 1,\n                    \"orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"shipping_mode\": \"RadixWeb\",\n                    \"courirer_company_name\": \"Local Pickup From Store\",\n                    \"airway_bill_number\": \"GHH-343434\",\n                    \"printer_name\": \"Canon Printer (canonprinter)\",\n                    \"printer_email\": \"canonprinter@radixweb.com\",\n                    \"payment_method_name\": \"Cheque\",\n                    \"total_amount\": 455.82,\n                    \"order_amount\": 283.46,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 62.36,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:03:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 9.84,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 10,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Unpaid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:03:27\",\n                    \"shipping_type_id\": 1,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 210,\n                            \"product_size_details\": {\n                                \"width\": 8.75,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"457793\",\n                            \"products_title\": \"Flyers One Side\",\n                            \"products_sku\": null,\n                            \"products_price\": 12,\n                            \"products_quantity\": 100,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Paper Type\",\n                                    \"option_id\": 65,\n                                    \"attribute_label\": \"310 gsm\",\n                                    \"attribute_value\": \"310 gsm\",\n                                    \"option_price\": 2.460938,\n                                    \"option_discount_price\": 2.4609375\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Production Time\",\n                                    \"option_id\": 66,\n                                    \"attribute_label\": \"3 Business Days\",\n                                    \"attribute_value\": \"3 Business Days\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Single File\",\n                                    \"option_id\": \"125\",\n                                    \"attribute_label\": \"176_option_cyborg_1716544748015.jpg\",\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/image.jpg\"\n                                    ]\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Multiple File\",\n                                    \"option_id\": \"126\",\n                                    \"attribute_label\": [\n                                        \"176_option_comp_1716544933696.jpg\",\n                                        \"176_option_panda_1716544934067.jpeg\"\n                                    ],\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/image.jpg\",\n                                        \"https://your.domain.com/image.jpg\"\n                                    ],\n                                    \"option_price\": \"\"\n                                },\n                                \"AO-5\": {\n                                    \"option_label\": \"Cloud File\",\n                                    \"option_id\": \"130\",\n                                    \"attribute_label\": \"20240524_095759_82805.jpeg\",\n                                    \"attribute_value\": [\n                                        \"https://uc7a370d80f2c1a905f62970b3d4.dl.dropboxusercontent.com/cd/0/get/CTe4Kd8RxqHovVSZAG8D2dfUK0dbVUuP3AMRzOs13CN_YVFGAFzD5b9QK08Fd07zUTrc6R6njn5w9mcOdxe9O1bxO_NTQZLfIAOGPMUppD7admya4MUqfly0kPPYyqgNOrUVfKJPT_tE4jI5y5e3dKuEzR5WgWX5O58dMeAccpC05A/file\"\n                                    ]\n                                },\n                                \"AO-6\": {\n                                    \"option_label\": \"Speicific Requirement\",\n                                    \"option_id\": \"136\",\n                                    \"attribute_label\": \"TEST\",\n                                    \"attribute_value\": \"TEST\"\n                                },\n                                \"AO-7\": {\n                                    \"option_label\": \"Checkboxes\",\n                                    \"option_id\": 145,\n                                    \"attribute_label\": \"CH 1, CH 2, CH 3\",\n                                    \"attribute_value\": \"CH 1, CH 2, CH 3\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"https://your.domain.com//176/176_210_flyers%20one%20side_982488.jpg\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"https://your.domain.com//176/176_210_flyers%20one%20side_982488.jpg\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"https://your.domain.com//176/2_6_20330899_1_thumb.jpg\"\n                                    }\n                                }\n                            },\n                            \"productsize\": \"A4 - 8.5x11\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.098438\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 2,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"3.1812\",\n                                    \"product_price\": 14.460938\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 14.46,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"210\"\n                        },\n                        {\n                            \"orders_products_id\": 211,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"251300\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com//176/105_8809231_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com//176/176_211_canvas_927387.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102550Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=7b5decaca7d2632be703ea76f88e1e6ce2d4322876787e28a096e0f66c4d640b\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"59.18\",\n                                    \"product_price\": 269\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"211\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": \"Sean Preston\",\n                        \"blind_company\": \"Haxxor\",\n                        \"blind_street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                        \"blind_suburb\": \"Zuid Steenovenrecht\",\n                        \"blind_city\": \"Cura Cabai\",\n                        \"blind_postcode\": \"64015\",\n                        \"blind_state\": \"Aruba\",\n                        \"blind_state_code\": null,\n                        \"blind_country\": \"Netherlands\",\n                        \"blind_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"RadixWeb\",\n                        \"delivery_company\": \"Radix Pvt Ltd.\",\n                        \"delivery_street_address\": \"Ekyarth, Near Malabar County\",\n                        \"delivery_suburb\": \"Jagatpur Road\",\n                        \"delivery_city\": \"Ahmedabad\",\n                        \"delivery_postcode\": \"898565\",\n                        \"delivery_state\": \"Gujarat\",\n                        \"delivery_state_code\": \"GJ\",\n                        \"delivery_country\": \"India\",\n                        \"delivery_telephone\": \"7412369852\",\n                        \"shipping_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 1,\n                            \"shipment_tracking_number\": \"GHH-343434\",\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": 9.8438,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": \"10\",\n                                    \"width\": \"20\",\n                                    \"height\": \"30\",\n                                    \"shipment_products_id\": \"210,211\",\n                                    \"shipment_product_name\": \"Flyers One Side,Canvas\",\n                                    \"shipment_product_weight\": \"9.8438\"\n                                }\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"user_id\": 8,\n                    \"orders_id\": 177,\n                    \"corporate_id\": 2,\n                    \"order_status\": \"Order Processing\",\n                    \"orders_status_id\": 2,\n                    \"orders_date_finished\": \"2024-05-25 10:10:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:10:26\",\n                    \"shipping_mode\": \"Ground\",\n                    \"courirer_company_name\": \"Weight Based\",\n                    \"airway_bill_number\": null,\n                    \"printer_name\": null,\n                    \"printer_email\": null,\n                    \"payment_method_name\": \"Pay On Account\",\n                    \"total_amount\": 369,\n                    \"order_amount\": 269,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 0,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:10:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": null,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Paid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:10:26\",\n                    \"shipping_type_id\": 2,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Edith Dodson\",\n                        \"customers_email_address\": \"EdithDodson@test.com\",\n                        \"customers_telephone\": \"+44 09502 035218\",\n                        \"customers_company\": \"Cybth\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 212,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"274368\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": 0,\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com//177/105_37138685_p1_common_thumb.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com//177/177_212_canvas_465759.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIEVSKXKOVCG2GIBA%2F20240524%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20240524T102550Z&X-Amz-SignedHeaders=host&X-Amz-Expires=18000&X-Amz-Signature=aaeeb910b8a725a2f665d2c79e88f3b094fc50a1265890a3474eb574937009ba\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": null,\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"product_price\": \"269.00\",\n                                    \"tax_amount\": 0\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"212\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null,\n                        \"blind_extrafield\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Edith Dodson\",\n                        \"delivery_company\": \"Cybth\",\n                        \"delivery_street_address\": \"Mulckhuijselaan 4\",\n                        \"delivery_suburb\": \"Oud Koekensland\",\n                        \"delivery_city\": \"Amsterdam\",\n                        \"delivery_postcode\": \"1860\",\n                        \"delivery_state\": \"North Holland\",\n                        \"delivery_state_code\": null,\n                        \"delivery_country\": \"Netherlands\",\n                        \"delivery_telephone\": \"+44 09502 035218\",\n                        \"shipping_extrafield\": []\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Edith Dodson\",\n                        \"billing_company\": \"Cybth\",\n                        \"billing_street_address\": \"Mulckhuijselaan 4\",\n                        \"billing_suburb\": \"Oud Koekensland\",\n                        \"billing_city\": \"Amsterdam\",\n                        \"billing_postcode\": \"1860\",\n                        \"billing_state\": \"North Holland\",\n                        \"billing_state_code\": null,\n                        \"billing_country\": \"Netherlands\",\n                        \"billing_telephone\": \"+44 09502 035218\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": null,\n                            \"shipment_tracking_number\": null,\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": null,\n                            \"shipment_package\": null\n                        }\n                    ]\n                }\n            ],\n            \"totalOrders\": 2\n        }\n    }\n}"},{"id":"108b3b5a-5cf7-4b6b-a64c-c33a64169f1a","name":"Orders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/plain","type":"text","disabled":true}],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int, $orders_products_id: Int, $order_product_status: Int, $store_id: String, $from_date: String, $to_date: String, $order_status: String, $customer_id: Int, $order_type: OrdersOrderTypeEnum, $limit: Int, $offset: Int) {\n    orders (orders_id: $orders_id, orders_products_id: $orders_products_id, order_product_status: $order_product_status, store_id: $store_id, from_date: $from_date, to_date: $to_date, order_status: $order_status, customer_id: $customer_id, order_type: $order_type, limit: $limit, offset: $offset) {\n        orders {\n\t\t\tuser_id\n            orders_id\n            corporate_id\n            order_status\n            orders_status_id\n            orders_date_finished\n            local_orders_date_finished\n            shipping_mode\n            courirer_company_name\n            airway_bill_number\n            payment_method_name\n            total_amount\n            order_amount\n            shipping_amount\n            tax_amount\n            coupon_amount\n            coupon_code\n            coupon_type\n            order_vendor_amount\n            orders_due_date\n            order_last_modified_date\n            department_id\n            cost_center_code\n            po_number\n            total_weight\n\t\t\tpartial_payment_details\n            refund_amount\n            blind_shipping_charge\n            payment_due_date\n            transactionid\n            sales_agent_name\n            branch_name\n            payment_status_title\n            production_due_date\n            payment_processing_fees\n            payment_date\n            shipping_type_id\n            invoice_number\n            invoice_date\n            parent_corporate_id\n            order_name\n            orders_extrafield\n            reviewers\n            extrafield\n            customer {\n                customers_name\n\t\t\t\tcustomers_email_address\n\t\t\t\tcustomers_telephone\n\t\t\t\tcustomers_company\n                customers_register_date\n                customers_username\n                customers_user_group_name\n                customers_department_name\n                customers_balance_amount\n                customers_pay_limit\n                customers_payon_enable\n                customers_status\n                customers_first_name\n                customers_last_name\n            }\n            product {\n                orders_products_id\n                product_size_details\n                products_name\n                products_title\n                products_sku\n                products_price\n                products_quantity\n                template_type\n                features_details\n                photo_print_details\n                productsize\n                mass_personalization_files\n                products_vendor_price\n                products_weight\n                inventory_storage_days\n                product_status_id\n                product_status\n                product_id\n                reference_order_id\n                is_kit\n                product_tax\n                product_info\n                template_info\n                product_printer_name\n                products_unit_price\n                quote_id\n                product_production_due_date\n                orders_products_id_pattern\n                orders_products_last_modified_date\n                predefined_product_type\n                ziflow_link\n                print_ready_files\n                item_extra_info_json\n            }\n            blind_detail {\n                blind_name\n                blind_company\n                blind_street_address\n                blind_suburb\n                blind_city\n                blind_postcode\n                blind_state\n                blind_state_code\n                blind_country\n            }\n            delivery_detail {\n                delivery_name\n                delivery_company\n                delivery_street_address\n                delivery_suburb\n                delivery_city\n                delivery_postcode\n                delivery_state\n                delivery_state_code\n                delivery_country\n                delivery_telephone\n                delivery_extrafield\n            }\n            billing_detail {\n                billing_name\n                billing_company\n                billing_street_address\n                billing_suburb\n                billing_city\n                billing_postcode\n                billing_state\n                billing_state_code\n                billing_country\n                billing_telephone\n                billing_extrafield\n            }\n            shipment_detail {\n                shipment_shipping_type_id\n                shipment_tracking_number\n                shipment_company\n                shipment_total_weight\n\t\t\t\tshipment_package\n            }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n    \"orders_id\" : 1754\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Aug 2025 12:00:55 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' blob:;img-src * blob: data:;connect-src * 'unsafe-inline' data: blob:;"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"5700"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orders\": {\n            \"orders\": [\n                {\n                    \"user_id\": 552,\n                    \"orders_id\": 1754,\n                    \"corporate_id\": 7,\n                    \"order_status\": \"In Production\",\n                    \"orders_status_id\": 35,\n                    \"orders_date_finished\": \"2025-07-07 15:01:35\",\n                    \"local_orders_date_finished\": \"2025-07-07 15:01:35\",\n                    \"shipping_mode\": \"FedEx 2Day®\",\n                    \"courirer_company_name\": \"Shipping\",\n                    \"airway_bill_number\": null,\n                    \"payment_method_name\": \"Partial Payment\",\n                    \"total_amount\": 1466.92,\n                    \"order_amount\": 1006,\n                    \"shipping_amount\": 460.92,\n                    \"tax_amount\": 0,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"orders_due_date\": \"2025-07-28\",\n                    \"order_last_modified_date\": \"2025-08-14 00:37:44\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 18.62,\n                    \"partial_payment_details\": {\n                        \"paid_amount\": -17.559999999999945,\n                        \"outstanding_amount\": 1484.48\n                    },\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 0,\n                    \"payment_due_date\": \"2025-07-07\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Unpaid\",\n                    \"production_due_date\": \"2025-07-18\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2025-07-07 15:01:35\",\n                    \"shipping_type_id\": 180,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"order_name\": \"LL Distribution - Kirkland, WA\",\n                    \"orders_extrafield\": [],\n                    \"reviewers\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Primary Business Category\",\n                            \"value\": \"Sign Manufacturer\"\n                        }\n                    ],\n                    \"customer\": {\n                        \"customers_name\": \"123Drew Neverett\",\n                        \"customers_email_address\": \"drew.neverett@positionsports.com\",\n                        \"customers_telephone\": \"7248140614\",\n                        \"customers_company\": \"Position Sports\",\n                        \"customers_register_date\": \"2025-05-28 15:21:52\",\n                        \"customers_username\": null,\n                        \"customers_user_group_name\": null,\n                        \"customers_department_name\": null,\n                        \"customers_balance_amount\": 0,\n                        \"customers_pay_limit\": null,\n                        \"customers_payon_enable\": false,\n                        \"customers_status\": \"Active\",\n                        \"customers_first_name\": \"Drew\",\n                        \"customers_last_name\": \"Neverett\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 5948,\n                            \"product_size_details\": {\n                                \"width\": \"12\",\n                                \"height\": \"12\",\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"Pedestal Cover - Top\",\n                            \"products_title\": \"PolyBoard\",\n                            \"products_sku\": null,\n                            \"products_price\": 30.22,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"Upload Center\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"Heading\": \"Production Time\",\n                                    \"optionId\": 2523,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"prodTime\",\n                                    \"master_option_id\": 52,\n                                    \"attribute_key\": \"3\",\n                                    \"master_attribute_id\": 139,\n                                    \"AttributeValue\": \"Standard (3-5 Business Days)\",\n                                    \"AttributeLabel\": \"Standard (3-5 Business Days)\",\n                                    \"attributeId\": \"3871\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-2\": {\n                                    \"Heading\": \"File Processing (RIP) : Standard\",\n                                    \"optionId\": 2524,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_processing_(rip)\",\n                                    \"master_option_id\": 70,\n                                    \"price\": 1.3975,\n                                    \"vendor_price\": 0.65,\n                                    \"option_price\": 1.3975,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-3\": {\n                                    \"Heading\": \"File Prep : Standard\",\n                                    \"optionId\": 2525,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_prep\",\n                                    \"master_option_id\": 69,\n                                    \"price\": 4.8375624145,\n                                    \"vendor_price\": 2.25002903,\n                                    \"option_price\": 4.837562,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-4\": {\n                                    \"Heading\": \"Print Sides\",\n                                    \"optionId\": 2526,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSides\",\n                                    \"master_option_id\": 50,\n                                    \"attribute_key\": \"Single|1\",\n                                    \"master_attribute_id\": 132,\n                                    \"AttributeValue\": \"Single\",\n                                    \"AttributeLabel\": \"Single\",\n                                    \"attributeId\": \"3873\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-5\": {\n                                    \"Heading\": \"Corner Radius\",\n                                    \"optionId\": 2527,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"rcRadius\",\n                                    \"master_option_id\": 89,\n                                    \"attribute_key\": \"0.000\",\n                                    \"master_attribute_id\": 168,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3876\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-6\": {\n                                    \"Heading\": \"Ink Type\",\n                                    \"optionId\": 2528,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkType\",\n                                    \"master_option_id\": 146,\n                                    \"attribute_key\": \"cmyk\",\n                                    \"master_attribute_id\": 287,\n                                    \"AttributeValue\": \"CMYK\",\n                                    \"AttributeLabel\": \"CMYK\",\n                                    \"attributeId\": \"3882\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-7\": {\n                                    \"Heading\": \"White ink\",\n                                    \"optionId\": 2529,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"whiteInk\",\n                                    \"master_option_id\": 143,\n                                    \"attribute_key\": \"None_whiteInk\",\n                                    \"master_attribute_id\": 265,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3883\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-8\": {\n                                    \"Heading\": \"Image Shape\",\n                                    \"optionId\": 2530,\n                                    \"options_type\": \"radio\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"imageShape\",\n                                    \"master_option_id\": 135,\n                                    \"attribute_key\": \"Rectangle|1\",\n                                    \"master_attribute_id\": 243,\n                                    \"AttributeValue\": \"Square / Rectangle\",\n                                    \"AttributeLabel\": \"Square / Rectangle\",\n                                    \"attributeId\": \"3884\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"radio\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-9\": {\n                                    \"Heading\": \"Ink Tech\",\n                                    \"optionId\": 2531,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printDevice\",\n                                    \"master_option_id\": 172,\n                                    \"attribute_key\": \"Vanguard VK300D-HS\",\n                                    \"master_attribute_id\": 612,\n                                    \"AttributeValue\": \"Vanguard VK300D-HS\",\n                                    \"AttributeLabel\": \"Vanguard VK300D-HS\",\n                                    \"attributeId\": \"3887\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-10\": {\n                                    \"Heading\": \"Cut Type\",\n                                    \"optionId\": 2532,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutType\",\n                                    \"master_option_id\": 151,\n                                    \"attribute_key\": \"Through Cut\",\n                                    \"master_attribute_id\": 316,\n                                    \"AttributeValue\": \"Through Cut\",\n                                    \"AttributeLabel\": \"Through Cut\",\n                                    \"attributeId\": \"3888\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 1.075,\n                                    \"vendor_price\": 0.5,\n                                    \"option_price\": 1.075,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-11\": {\n                                    \"Heading\": \"Ink Finish\",\n                                    \"optionId\": 2533,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkFinish\",\n                                    \"master_option_id\": 112,\n                                    \"attribute_key\": \"Gloss\",\n                                    \"master_attribute_id\": 184,\n                                    \"AttributeValue\": \"Gloss\",\n                                    \"AttributeLabel\": \"Gloss\",\n                                    \"attributeId\": \"3889\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0.5375,\n                                    \"vendor_price\": 0.25,\n                                    \"option_price\": 0.5375,\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-12\": {\n                                    \"Heading\": \"Substrate\",\n                                    \"optionId\": 2534,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"mountSubstrate\",\n                                    \"master_option_id\": 196,\n                                    \"attribute_key\": \"Polyboard 040 - White\",\n                                    \"master_attribute_id\": 653,\n                                    \"AttributeValue\": \"Polyboard 040 - White\",\n                                    \"AttributeLabel\": \"Polyboard 040 - White\",\n                                    \"attributeId\": \"3914\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 1.67968836,\n                                    \"vendor_price\": 0.7812504,\n                                    \"option_price\": 1.679688,\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-13\": {\n                                    \"Heading\": \"Bulk Pricing?\",\n                                    \"optionId\": 2535,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"Sheet\",\n                                    \"master_option_id\": 199,\n                                    \"attribute_key\": \"false|2\",\n                                    \"master_attribute_id\": 529,\n                                    \"AttributeValue\": \"No, Charge Per Unit\",\n                                    \"AttributeLabel\": \"No, Charge Per Unit\",\n                                    \"attributeId\": \"3892\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-14\": {\n                                    \"Heading\": \"Sign Type\",\n                                    \"optionId\": 2536,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"specialSign\",\n                                    \"master_option_id\": 200,\n                                    \"attribute_key\": \"None_specialSign\",\n                                    \"master_attribute_id\": 531,\n                                    \"AttributeValue\": \"Standard\",\n                                    \"AttributeLabel\": \"Standard\",\n                                    \"attributeId\": \"3894\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-15\": {\n                                    \"Heading\": \"Substrate Type\",\n                                    \"optionId\": 2537,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"substrateType\",\n                                    \"master_option_id\": 218,\n                                    \"attribute_key\": \"Rigid\",\n                                    \"master_attribute_id\": 607,\n                                    \"AttributeValue\": \"Rigid\",\n                                    \"AttributeLabel\": \"Rigid\",\n                                    \"attributeId\": \"3895\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-16\": {\n                                    \"Heading\": \"Placement\",\n                                    \"optionId\": 2539,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holePlacement\",\n                                    \"master_option_id\": 206,\n                                    \"attribute_key\": \"None_holePlacement|0\",\n                                    \"master_attribute_id\": 557,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3898\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-17\": {\n                                    \"Heading\": \"Drill Holes / Grommets\",\n                                    \"optionId\": 2541,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeDrilled\",\n                                    \"master_option_id\": 219,\n                                    \"attribute_key\": \"false_holeDrilled\",\n                                    \"master_attribute_id\": 614,\n                                    \"AttributeValue\": \"No\",\n                                    \"AttributeLabel\": \"No\",\n                                    \"attributeId\": \"3912\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-18\": {\n                                    \"Heading\": \"Proof\",\n                                    \"optionId\": 2579,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"provideProof\",\n                                    \"master_option_id\": 222,\n                                    \"attribute_key\": \"false_proof\",\n                                    \"master_attribute_id\": 655,\n                                    \"AttributeValue\": \"No Proof Required\",\n                                    \"AttributeLabel\": \"No Proof Required\",\n                                    \"attributeId\": \"3997\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Proof\"\n                                },\n                                \"AO-19\": {\n                                    \"Heading\": \"Sheet Size\",\n                                    \"optionId\": 4086,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"sheetSize\",\n                                    \"master_option_id\": 241,\n                                    \"attribute_key\": \"4x8|4608\",\n                                    \"master_attribute_id\": 1019,\n                                    \"AttributeValue\": \"4' x 8'\",\n                                    \"AttributeLabel\": \"4' x 8'\",\n                                    \"attributeId\": \"7097\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-20\": {\n                                    \"Heading\": \"Width (Inch)\",\n                                    \"AttributeLabel\": \"12\",\n                                    \"AttributeValue\": \"12\"\n                                },\n                                \"AO-21\": {\n                                    \"Heading\": \"Height (Inch)\",\n                                    \"AttributeLabel\": \"12\",\n                                    \"AttributeValue\": \"12\"\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"productsize\": \"<b>12</b> Width x <b>12</b> Height <span class=\\\"text-danger\\\"> (Inch)</span>\",\n                            \"mass_personalization_files\": null,\n                            \"products_vendor_price\": 4.43,\n                            \"products_weight\": \"0.331200\",\n                            \"inventory_storage_days\": 0,\n                            \"product_status_id\": 45,\n                            \"product_status\": \"Fulfilled\",\n                            \"product_id\": 213,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"0\",\n                                    \"product_price\": 39.74725\n                                }\n                            },\n                            \"product_info\": \"\",\n                            \"template_info\": \"\",\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 39.75,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2025-07-11\",\n                            \"orders_products_id_pattern\": \"5948\",\n                            \"orders_products_last_modified_date\": \"2025-07-16\",\n                            \"predefined_product_type\": \"0\",\n                            \"ziflow_link\": \"https://vg.ziflow.io/proof/ui1cvvd2ovlj8fjs5hd6inj9jr\",\n                            \"print_ready_files\": {\n                                \"Artwork_1\": {\n                                    \"artworkLineID\": 1,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5948_polyboard_480296.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5948%20Pedestal%20Cover%20-%20Top_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5948%20Pedestal%20Cover%20-%20Top_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                }\n                            },\n                            \"item_extra_info_json\": null\n                        },\n                        {\n                            \"orders_products_id\": 5949,\n                            \"product_size_details\": {\n                                \"width\": \"12\",\n                                \"height\": \"24\",\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"Pedestal Cover - Sides\",\n                            \"products_title\": \"PolyBoard\",\n                            \"products_sku\": null,\n                            \"products_price\": 116.58,\n                            \"products_quantity\": 4,\n                            \"template_type\": \"Upload Center\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"Heading\": \"Production Time\",\n                                    \"optionId\": 2523,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"prodTime\",\n                                    \"master_option_id\": 52,\n                                    \"attribute_key\": \"3\",\n                                    \"master_attribute_id\": 139,\n                                    \"AttributeValue\": \"Standard (3-5 Business Days)\",\n                                    \"AttributeLabel\": \"Standard (3-5 Business Days)\",\n                                    \"attributeId\": \"3871\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-2\": {\n                                    \"Heading\": \"File Processing (RIP) : Standard\",\n                                    \"optionId\": 2524,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_processing_(rip)\",\n                                    \"master_option_id\": 70,\n                                    \"price\": 1.3975,\n                                    \"vendor_price\": 0.65,\n                                    \"option_price\": 1.3975,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-3\": {\n                                    \"Heading\": \"File Prep : Standard\",\n                                    \"optionId\": 2525,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_prep\",\n                                    \"master_option_id\": 69,\n                                    \"price\": 4.8375624145,\n                                    \"vendor_price\": 2.25002903,\n                                    \"option_price\": 4.837562,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-4\": {\n                                    \"Heading\": \"Print Sides\",\n                                    \"optionId\": 2526,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSides\",\n                                    \"master_option_id\": 50,\n                                    \"attribute_key\": \"Single|1\",\n                                    \"master_attribute_id\": 132,\n                                    \"AttributeValue\": \"Single\",\n                                    \"AttributeLabel\": \"Single\",\n                                    \"attributeId\": \"3873\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-5\": {\n                                    \"Heading\": \"Corner Radius\",\n                                    \"optionId\": 2527,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"rcRadius\",\n                                    \"master_option_id\": 89,\n                                    \"attribute_key\": \"0.000\",\n                                    \"master_attribute_id\": 168,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3876\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-6\": {\n                                    \"Heading\": \"Ink Type\",\n                                    \"optionId\": 2528,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkType\",\n                                    \"master_option_id\": 146,\n                                    \"attribute_key\": \"cmyk\",\n                                    \"master_attribute_id\": 287,\n                                    \"AttributeValue\": \"CMYK\",\n                                    \"AttributeLabel\": \"CMYK\",\n                                    \"attributeId\": \"3882\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-7\": {\n                                    \"Heading\": \"White ink\",\n                                    \"optionId\": 2529,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"whiteInk\",\n                                    \"master_option_id\": 143,\n                                    \"attribute_key\": \"None_whiteInk\",\n                                    \"master_attribute_id\": 265,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3883\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-8\": {\n                                    \"Heading\": \"Image Shape\",\n                                    \"optionId\": 2530,\n                                    \"options_type\": \"radio\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"imageShape\",\n                                    \"master_option_id\": 135,\n                                    \"attribute_key\": \"Rectangle|1\",\n                                    \"master_attribute_id\": 243,\n                                    \"AttributeValue\": \"Square / Rectangle\",\n                                    \"AttributeLabel\": \"Square / Rectangle\",\n                                    \"attributeId\": \"3884\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"radio\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-9\": {\n                                    \"Heading\": \"Ink Tech\",\n                                    \"optionId\": 2531,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printDevice\",\n                                    \"master_option_id\": 172,\n                                    \"attribute_key\": \"Vanguard VK300D-HS\",\n                                    \"master_attribute_id\": 612,\n                                    \"AttributeValue\": \"Vanguard VK300D-HS\",\n                                    \"AttributeLabel\": \"Vanguard VK300D-HS\",\n                                    \"attributeId\": \"3887\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-10\": {\n                                    \"Heading\": \"Cut Type\",\n                                    \"optionId\": 2532,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutType\",\n                                    \"master_option_id\": 151,\n                                    \"attribute_key\": \"Through Cut\",\n                                    \"master_attribute_id\": 316,\n                                    \"AttributeValue\": \"Through Cut\",\n                                    \"AttributeLabel\": \"Through Cut\",\n                                    \"attributeId\": \"3888\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 6.9875,\n                                    \"vendor_price\": 3.25,\n                                    \"option_price\": 6.9875,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-11\": {\n                                    \"Heading\": \"Ink Finish\",\n                                    \"optionId\": 2533,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkFinish\",\n                                    \"master_option_id\": 112,\n                                    \"attribute_key\": \"Gloss\",\n                                    \"master_attribute_id\": 184,\n                                    \"AttributeValue\": \"Gloss\",\n                                    \"AttributeLabel\": \"Gloss\",\n                                    \"attributeId\": \"3889\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 3.7625,\n                                    \"vendor_price\": 1.75,\n                                    \"option_price\": 3.7625,\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-12\": {\n                                    \"Heading\": \"Substrate\",\n                                    \"optionId\": 2534,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"mountSubstrate\",\n                                    \"master_option_id\": 196,\n                                    \"attribute_key\": \"Polyboard 040 - White\",\n                                    \"master_attribute_id\": 653,\n                                    \"AttributeValue\": \"Polyboard 040 - White\",\n                                    \"AttributeLabel\": \"Polyboard 040 - White\",\n                                    \"attributeId\": \"3914\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 13.43750688,\n                                    \"vendor_price\": 6.2500032,\n                                    \"option_price\": 13.437507,\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-13\": {\n                                    \"Heading\": \"Bulk Pricing?\",\n                                    \"optionId\": 2535,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"Sheet\",\n                                    \"master_option_id\": 199,\n                                    \"attribute_key\": \"false|2\",\n                                    \"master_attribute_id\": 529,\n                                    \"AttributeValue\": \"No, Charge Per Unit\",\n                                    \"AttributeLabel\": \"No, Charge Per Unit\",\n                                    \"attributeId\": \"3892\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-14\": {\n                                    \"Heading\": \"Sign Type\",\n                                    \"optionId\": 2536,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"specialSign\",\n                                    \"master_option_id\": 200,\n                                    \"attribute_key\": \"None_specialSign\",\n                                    \"master_attribute_id\": 531,\n                                    \"AttributeValue\": \"Standard\",\n                                    \"AttributeLabel\": \"Standard\",\n                                    \"attributeId\": \"3894\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-15\": {\n                                    \"Heading\": \"Substrate Type\",\n                                    \"optionId\": 2537,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"substrateType\",\n                                    \"master_option_id\": 218,\n                                    \"attribute_key\": \"Rigid\",\n                                    \"master_attribute_id\": 607,\n                                    \"AttributeValue\": \"Rigid\",\n                                    \"AttributeLabel\": \"Rigid\",\n                                    \"attributeId\": \"3895\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-16\": {\n                                    \"Heading\": \"Placement\",\n                                    \"optionId\": 2539,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holePlacement\",\n                                    \"master_option_id\": 206,\n                                    \"attribute_key\": \"None_holePlacement|0\",\n                                    \"master_attribute_id\": 557,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3898\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-17\": {\n                                    \"Heading\": \"Drill Holes / Grommets\",\n                                    \"optionId\": 2541,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeDrilled\",\n                                    \"master_option_id\": 219,\n                                    \"attribute_key\": \"false_holeDrilled\",\n                                    \"master_attribute_id\": 614,\n                                    \"AttributeValue\": \"No\",\n                                    \"AttributeLabel\": \"No\",\n                                    \"attributeId\": \"3912\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-18\": {\n                                    \"Heading\": \"Proof\",\n                                    \"optionId\": 2579,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"provideProof\",\n                                    \"master_option_id\": 222,\n                                    \"attribute_key\": \"false_proof\",\n                                    \"master_attribute_id\": 655,\n                                    \"AttributeValue\": \"No Proof Required\",\n                                    \"AttributeLabel\": \"No Proof Required\",\n                                    \"attributeId\": \"3997\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Proof\"\n                                },\n                                \"AO-19\": {\n                                    \"Heading\": \"Sheet Size\",\n                                    \"optionId\": 4086,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"sheetSize\",\n                                    \"master_option_id\": 241,\n                                    \"attribute_key\": \"4x8|4608\",\n                                    \"master_attribute_id\": 1019,\n                                    \"AttributeValue\": \"4' x 8'\",\n                                    \"AttributeLabel\": \"4' x 8'\",\n                                    \"attributeId\": \"7097\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-20\": {\n                                    \"Heading\": \"Width (Inch)\",\n                                    \"AttributeLabel\": \"12\",\n                                    \"AttributeValue\": \"12\"\n                                },\n                                \"AO-21\": {\n                                    \"Heading\": \"Height (Inch)\",\n                                    \"AttributeLabel\": \"24\",\n                                    \"AttributeValue\": \"24\"\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"productsize\": \"<b>12</b> Width x <b>24</b> Height <span class=\\\"text-danger\\\"> (Inch)</span>\",\n                            \"mass_personalization_files\": null,\n                            \"products_vendor_price\": 14.15,\n                            \"products_weight\": \"0.662400\",\n                            \"inventory_storage_days\": 0,\n                            \"product_status_id\": 45,\n                            \"product_status\": \"Fulfilled\",\n                            \"product_id\": 213,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"0\",\n                                    \"product_price\": 147.002569\n                                }\n                            },\n                            \"product_info\": \"\",\n                            \"template_info\": \"\",\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 36.75,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2025-07-11\",\n                            \"orders_products_id_pattern\": \"5949\",\n                            \"orders_products_last_modified_date\": \"2025-07-16\",\n                            \"predefined_product_type\": \"0\",\n                            \"ziflow_link\": \"https://vg.ziflow.io/proof/1ehpcn7291phgcnukgihb7nf2d\",\n                            \"print_ready_files\": {\n                                \"Artwork_1\": {\n                                    \"artworkLineID\": 1,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5949_polyboard_666355.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.01%20Pedestal%20Cover%20-%20Sides_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.01%20Pedestal%20Cover%20-%20Sides_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                },\n                                \"Artwork_2\": {\n                                    \"artworkLineID\": 2,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5949_polyboard_316942.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.02%20Pedestal%20Cover%20-%20Sides_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.02%20Pedestal%20Cover%20-%20Sides_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                },\n                                \"Artwork_3\": {\n                                    \"artworkLineID\": 3,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5949_polyboard_267702.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.03%20Pedestal%20Cover%20-%20Sides_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.03%20Pedestal%20Cover%20-%20Sides_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                },\n                                \"Artwork_4\": {\n                                    \"artworkLineID\": 4,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5949_polyboard_925822.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.04%20Pedestal%20Cover%20-%20Sides_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5949.04%20Pedestal%20Cover%20-%20Sides_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                }\n                            },\n                            \"item_extra_info_json\": null\n                        },\n                        {\n                            \"orders_products_id\": 5950,\n                            \"product_size_details\": {\n                                \"width\": null,\n                                \"height\": null,\n                                \"length\": 0,\n                                \"unit\": \"\"\n                            },\n                            \"products_name\": \"Large Retractable Banner\",\n                            \"products_title\": \"Large Retractable Pull-Up Banner\",\n                            \"products_sku\": null,\n                            \"products_price\": 450,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {},\n                            \"photo_print_details\": null,\n                            \"productsize\": \"60&quot; x 92&quot;\",\n                            \"mass_personalization_files\": null,\n                            \"products_vendor_price\": 225,\n                            \"products_weight\": \"0.001000\",\n                            \"inventory_storage_days\": 0,\n                            \"product_status_id\": 39,\n                            \"product_status\": \"Packaging\",\n                            \"product_id\": -11,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"0\",\n                                    \"product_price\": 450\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 450,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2025-07-15\",\n                            \"orders_products_id_pattern\": \"5950\",\n                            \"orders_products_last_modified_date\": \"2025-07-16\",\n                            \"predefined_product_type\": \"0\",\n                            \"ziflow_link\": null,\n                            \"print_ready_files\": null,\n                            \"item_extra_info_json\": null\n                        },\n                        {\n                            \"orders_products_id\": 5951,\n                            \"product_size_details\": {\n                                \"width\": \"18\",\n                                \"height\": \"27\",\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"Directional Signage\",\n                            \"products_title\": \"Coroplast\",\n                            \"products_sku\": null,\n                            \"products_price\": 7.3,\n                            \"products_quantity\": 2,\n                            \"template_type\": \"Upload Center\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"Heading\": \"Production Time\",\n                                    \"optionId\": 2232,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"prodTime\",\n                                    \"master_option_id\": 52,\n                                    \"attribute_key\": \"3\",\n                                    \"master_attribute_id\": 139,\n                                    \"AttributeValue\": \"Standard (3-5 Business Days)\",\n                                    \"AttributeLabel\": \"Standard (3-5 Business Days)\",\n                                    \"attributeId\": \"3136\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-2\": {\n                                    \"Heading\": \"File Processing (RIP) : Standard\",\n                                    \"optionId\": 2233,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_processing_(rip)\",\n                                    \"master_option_id\": 70,\n                                    \"price\": 2.275,\n                                    \"vendor_price\": 0.65,\n                                    \"option_price\": 2.275,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-3\": {\n                                    \"Heading\": \"File Prep : Standard\",\n                                    \"optionId\": 2234,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_prep\",\n                                    \"master_option_id\": 69,\n                                    \"price\": 7.875101604999999,\n                                    \"vendor_price\": 2.25002903,\n                                    \"option_price\": 7.875102,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-4\": {\n                                    \"Heading\": \"Print Sides\",\n                                    \"optionId\": 2235,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSides\",\n                                    \"master_option_id\": 50,\n                                    \"attribute_key\": \"Single|1\",\n                                    \"master_attribute_id\": 132,\n                                    \"AttributeValue\": \"Single\",\n                                    \"AttributeLabel\": \"Single\",\n                                    \"attributeId\": \"3138\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-5\": {\n                                    \"Heading\": \"Corner Radius\",\n                                    \"optionId\": 2237,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"rcRadius\",\n                                    \"master_option_id\": 89,\n                                    \"attribute_key\": \"0.000\",\n                                    \"master_attribute_id\": 168,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3143\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-6\": {\n                                    \"Heading\": \"Ink Type\",\n                                    \"optionId\": 2239,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkType\",\n                                    \"master_option_id\": 146,\n                                    \"attribute_key\": \"cmyk\",\n                                    \"master_attribute_id\": 287,\n                                    \"AttributeValue\": \"CMYK\",\n                                    \"AttributeLabel\": \"CMYK\",\n                                    \"attributeId\": \"3150\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-7\": {\n                                    \"Heading\": \"White Ink\",\n                                    \"optionId\": 2240,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"whiteInk\",\n                                    \"master_option_id\": 143,\n                                    \"attribute_key\": \"None_whiteInk\",\n                                    \"master_attribute_id\": 265,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3151\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-8\": {\n                                    \"Heading\": \"Graphic Shape\",\n                                    \"optionId\": 2241,\n                                    \"options_type\": \"radio\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"imageShape\",\n                                    \"master_option_id\": 135,\n                                    \"attribute_key\": \"Rectangle|1\",\n                                    \"master_attribute_id\": 243,\n                                    \"AttributeValue\": \"Square / Rectangle\",\n                                    \"AttributeLabel\": \"Square / Rectangle\",\n                                    \"attributeId\": \"3152\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-9\": {\n                                    \"Heading\": \"Ink Tech\",\n                                    \"optionId\": 2242,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printDevice\",\n                                    \"master_option_id\": 172,\n                                    \"attribute_key\": \"FluidColor Z126H\",\n                                    \"master_attribute_id\": 1012,\n                                    \"AttributeValue\": \"FluidColor Z126H\",\n                                    \"AttributeLabel\": \"FluidColor Z126H\",\n                                    \"attributeId\": \"8011\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-10\": {\n                                    \"Heading\": \"Ink Finish\",\n                                    \"optionId\": 2245,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkFinish\",\n                                    \"master_option_id\": 112,\n                                    \"attribute_key\": \"Gloss\",\n                                    \"master_attribute_id\": 184,\n                                    \"AttributeValue\": \"Gloss\",\n                                    \"AttributeLabel\": \"Gloss\",\n                                    \"attributeId\": \"3160\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-11\": {\n                                    \"Heading\": \"Substrate\",\n                                    \"optionId\": 2250,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"mountSubstrate\",\n                                    \"master_option_id\": 196,\n                                    \"attribute_key\": \"Coroplast 4mm - White\",\n                                    \"master_attribute_id\": 629,\n                                    \"AttributeValue\": \"Coroplast 4mm - White\",\n                                    \"AttributeLabel\": \"Coroplast 4mm - White\",\n                                    \"attributeId\": \"3523\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 7.382812878,\n                                    \"vendor_price\": 2.109375108,\n                                    \"option_price\": 7.382813,\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-12\": {\n                                    \"Heading\": \"Cut Type\",\n                                    \"optionId\": 2251,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutType\",\n                                    \"master_option_id\": 151,\n                                    \"attribute_key\": \"Through Cut|2\",\n                                    \"master_attribute_id\": 316,\n                                    \"AttributeValue\": \"Through Cut\",\n                                    \"AttributeLabel\": \"Through Cut\",\n                                    \"attributeId\": \"3171\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-13\": {\n                                    \"Heading\": \"Bulk Pricing?\",\n                                    \"optionId\": 2252,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"Sheet\",\n                                    \"master_option_id\": 199,\n                                    \"attribute_key\": \"false|2\",\n                                    \"master_attribute_id\": 529,\n                                    \"AttributeValue\": \"No, Charge Per Unit\",\n                                    \"AttributeLabel\": \"No, Charge Per Unit\",\n                                    \"attributeId\": \"3173\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-14\": {\n                                    \"Heading\": \"Sign Type\",\n                                    \"optionId\": 2253,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"specialSign\",\n                                    \"master_option_id\": 200,\n                                    \"attribute_key\": \"None_specialSign\",\n                                    \"master_attribute_id\": 531,\n                                    \"AttributeValue\": \"Standard\",\n                                    \"AttributeLabel\": \"Standard\",\n                                    \"attributeId\": \"3174\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-15\": {\n                                    \"Heading\": \"Substrate Type\",\n                                    \"optionId\": 2254,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"substrateType\",\n                                    \"master_option_id\": 218,\n                                    \"attribute_key\": \"Rigid\",\n                                    \"master_attribute_id\": 607,\n                                    \"AttributeValue\": \"Rigid\",\n                                    \"AttributeLabel\": \"Rigid\",\n                                    \"attributeId\": \"3176\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-16\": {\n                                    \"Heading\": \"Placement\",\n                                    \"optionId\": 2306,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holePlacement\",\n                                    \"master_option_id\": 206,\n                                    \"attribute_key\": \"None_holePlacement|0\",\n                                    \"master_attribute_id\": 557,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3296\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-17\": {\n                                    \"Heading\": \"Drill Holes / Grommets\",\n                                    \"optionId\": 2350,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeDrilled\",\n                                    \"master_option_id\": 219,\n                                    \"attribute_key\": \"false_holeDrilled\",\n                                    \"master_attribute_id\": 614,\n                                    \"AttributeValue\": \"No\",\n                                    \"AttributeLabel\": \"No\",\n                                    \"attributeId\": \"3443\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-18\": {\n                                    \"Heading\": \"Proof\",\n                                    \"optionId\": 2575,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"provideProof\",\n                                    \"master_option_id\": 222,\n                                    \"attribute_key\": \"false_proof\",\n                                    \"master_attribute_id\": 655,\n                                    \"AttributeValue\": \"No Proof Required\",\n                                    \"AttributeLabel\": \"No Proof Required\",\n                                    \"attributeId\": \"3989\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Proof\"\n                                },\n                                \"AO-19\": {\n                                    \"Heading\": \"Add A-Frame Sign?\",\n                                    \"optionId\": 2608,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"aFrameHardware\",\n                                    \"master_option_id\": 223,\n                                    \"attribute_key\": \"None_aFrameHardware\",\n                                    \"master_attribute_id\": 659,\n                                    \"AttributeValue\": \"No\",\n                                    \"AttributeLabel\": \"No\",\n                                    \"attributeId\": \"4060\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-20\": {\n                                    \"Heading\": \"Edge Distance\",\n                                    \"optionId\": 3876,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeEdgeSpace\",\n                                    \"master_option_id\": 238,\n                                    \"attribute_key\": \"2_holeEdgeSpace\",\n                                    \"master_attribute_id\": 1028,\n                                    \"AttributeValue\": \"2\\\"\",\n                                    \"AttributeLabel\": \"2\\\"\",\n                                    \"attributeId\": \"8014\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-21\": {\n                                    \"Heading\": \"Sheet Size\",\n                                    \"optionId\": 4082,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"sheetSize\",\n                                    \"master_option_id\": 241,\n                                    \"attribute_key\": \"4x8|4608\",\n                                    \"master_attribute_id\": 1019,\n                                    \"AttributeValue\": \"4' x 8'\",\n                                    \"AttributeLabel\": \"4' x 8'\",\n                                    \"attributeId\": \"7093\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-22\": {\n                                    \"Heading\": \"Print Surface\",\n                                    \"optionId\": 4476,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSurface\",\n                                    \"master_option_id\": 144,\n                                    \"attribute_key\": \"1st\",\n                                    \"master_attribute_id\": 280,\n                                    \"AttributeValue\": \"1st\",\n                                    \"AttributeLabel\": \"1st\",\n                                    \"attributeId\": \"8015\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-23\": {\n                                    \"Heading\": \"Print Mode\",\n                                    \"optionId\": 4478,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printMode_FluidColor\",\n                                    \"master_option_id\": 245,\n                                    \"attribute_key\": \"4-Pass_FluidColor\",\n                                    \"master_attribute_id\": 1090,\n                                    \"AttributeValue\": \"4-Pass\",\n                                    \"AttributeLabel\": \"4-Pass\",\n                                    \"attributeId\": \"8916\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 4.375,\n                                    \"vendor_price\": 1.25,\n                                    \"option_price\": 4.375,\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-24\": {\n                                    \"Heading\": \"Through Cut Device\",\n                                    \"optionId\": 4758,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"finishDevice2\",\n                                    \"master_option_id\": 176,\n                                    \"attribute_key\": \"Multicam\",\n                                    \"master_attribute_id\": 391,\n                                    \"AttributeValue\": \"Multicam\",\n                                    \"AttributeLabel\": \"Multicam\",\n                                    \"attributeId\": \"8530\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-25\": {\n                                    \"Heading\": \"Thru Cut Tool - Thru Cut\",\n                                    \"optionId\": 4759,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"thruCutDeviceTool_ThruCut\",\n                                    \"master_option_id\": 247,\n                                    \"attribute_key\": \"K25 Half-Centerpoint Blade\",\n                                    \"master_attribute_id\": 1115,\n                                    \"AttributeValue\": \"K25 Half-Centerpoint Blade\",\n                                    \"AttributeLabel\": \"K25 Half-Centerpoint Blade\",\n                                    \"attributeId\": \"8531\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 7.31178,\n                                    \"vendor_price\": 2.08908,\n                                    \"option_price\": 7.31178,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-26\": {\n                                    \"Heading\": \"Thru Cut Tool - Rout\",\n                                    \"optionId\": 4880,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"thruCutDeviceTool_FreeForm\",\n                                    \"master_option_id\": 249,\n                                    \"attribute_key\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"master_attribute_id\": 1158,\n                                    \"AttributeValue\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"AttributeLabel\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"attributeId\": \"8712\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 12.7323,\n                                    \"vendor_price\": 3.6378,\n                                    \"option_price\": 12.7323,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-27\": {\n                                    \"Heading\": \"Width (Inch)\",\n                                    \"AttributeLabel\": \"18\",\n                                    \"AttributeValue\": \"18\"\n                                },\n                                \"AO-28\": {\n                                    \"Heading\": \"Height (Inch)\",\n                                    \"AttributeLabel\": \"27\",\n                                    \"AttributeValue\": \"27\"\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"productsize\": \"<b>18</b> Width x <b>27</b> Height <span class=\\\"text-danger\\\"> (Inch)</span>\",\n                            \"mass_personalization_files\": null,\n                            \"products_vendor_price\": 11.99,\n                            \"products_weight\": \"1.137240\",\n                            \"inventory_storage_days\": 0,\n                            \"product_status_id\": 45,\n                            \"product_status\": \"Fulfilled\",\n                            \"product_id\": 201,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"0\",\n                                    \"product_price\": 49.251994999999994\n                                }\n                            },\n                            \"product_info\": \"\",\n                            \"template_info\": \"\",\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 24.625,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2025-07-17\",\n                            \"orders_products_id_pattern\": \"5951\",\n                            \"orders_products_last_modified_date\": \"2025-07-16\",\n                            \"predefined_product_type\": \"0\",\n                            \"ziflow_link\": \"https://vg.ziflow.io/proof/dm21jef67i9f16gftb5t5tkat6\",\n                            \"print_ready_files\": {\n                                \"Artwork_1\": {\n                                    \"artworkLineID\": 1,\n                                    \"qty\": \"2\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5951_coroplast_830464.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5951%20Directional%20Signage_Qnty-2.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5951%20Directional%20Signage_Qnty-2_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                }\n                            },\n                            \"item_extra_info_json\": null\n                        },\n                        {\n                            \"orders_products_id\": 5952,\n                            \"product_size_details\": {\n                                \"width\": \"41.4712\",\n                                \"height\": \"72\",\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"BubbleBoard - Athlete Cut Out\",\n                            \"products_title\": \"Coroplast\",\n                            \"products_sku\": null,\n                            \"products_price\": 148.14,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"Upload Center\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"Heading\": \"Production Time\",\n                                    \"optionId\": 2232,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"prodTime\",\n                                    \"master_option_id\": 52,\n                                    \"attribute_key\": \"3\",\n                                    \"master_attribute_id\": 139,\n                                    \"AttributeValue\": \"Standard (3-5 Business Days)\",\n                                    \"AttributeLabel\": \"Standard (3-5 Business Days)\",\n                                    \"attributeId\": \"3136\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-2\": {\n                                    \"Heading\": \"File Processing (RIP) : Standard\",\n                                    \"optionId\": 2233,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_processing_(rip)\",\n                                    \"master_option_id\": 70,\n                                    \"price\": 2.275,\n                                    \"vendor_price\": 0.65,\n                                    \"option_price\": 2.275,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-3\": {\n                                    \"Heading\": \"File Prep : Standard\",\n                                    \"optionId\": 2234,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_prep\",\n                                    \"master_option_id\": 69,\n                                    \"price\": 7.875101604999999,\n                                    \"vendor_price\": 2.25002903,\n                                    \"option_price\": 7.875102,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-4\": {\n                                    \"Heading\": \"Print Sides\",\n                                    \"optionId\": 2235,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSides\",\n                                    \"master_option_id\": 50,\n                                    \"attribute_key\": \"Single|1\",\n                                    \"master_attribute_id\": 132,\n                                    \"AttributeValue\": \"Single\",\n                                    \"AttributeLabel\": \"Single\",\n                                    \"attributeId\": \"3138\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-5\": {\n                                    \"Heading\": \"Ink Type\",\n                                    \"optionId\": 2239,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkType\",\n                                    \"master_option_id\": 146,\n                                    \"attribute_key\": \"cmyk\",\n                                    \"master_attribute_id\": 287,\n                                    \"AttributeValue\": \"CMYK\",\n                                    \"AttributeLabel\": \"CMYK\",\n                                    \"attributeId\": \"3150\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-6\": {\n                                    \"Heading\": \"White Ink\",\n                                    \"optionId\": 2240,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"whiteInk\",\n                                    \"master_option_id\": 143,\n                                    \"attribute_key\": \"None_whiteInk\",\n                                    \"master_attribute_id\": 265,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3151\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-7\": {\n                                    \"Heading\": \"Graphic Shape\",\n                                    \"optionId\": 2241,\n                                    \"options_type\": \"radio\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"imageShape\",\n                                    \"master_option_id\": 135,\n                                    \"attribute_key\": \"Contour|3\",\n                                    \"master_attribute_id\": 246,\n                                    \"AttributeValue\": \"Freeform Contour\",\n                                    \"AttributeLabel\": \"Freeform Contour\",\n                                    \"attributeId\": \"3154\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-8\": {\n                                    \"Heading\": \"Ink Tech\",\n                                    \"optionId\": 2242,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printDevice\",\n                                    \"master_option_id\": 172,\n                                    \"attribute_key\": \"Vanguard VK300D-HS\",\n                                    \"master_attribute_id\": 612,\n                                    \"AttributeValue\": \"Vanguard VK300D-HS\",\n                                    \"AttributeLabel\": \"Vanguard VK300D-HS\",\n                                    \"attributeId\": \"3177\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-9\": {\n                                    \"Heading\": \"Ink Finish\",\n                                    \"optionId\": 2245,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkFinish\",\n                                    \"master_option_id\": 112,\n                                    \"attribute_key\": \"Gloss\",\n                                    \"master_attribute_id\": 184,\n                                    \"AttributeValue\": \"Gloss\",\n                                    \"AttributeLabel\": \"Gloss\",\n                                    \"attributeId\": \"3160\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-10\": {\n                                    \"Heading\": \"Substrate\",\n                                    \"optionId\": 2250,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"mountSubstrate\",\n                                    \"master_option_id\": 196,\n                                    \"attribute_key\": \"Coroplast 4mm - White\",\n                                    \"master_attribute_id\": 629,\n                                    \"AttributeValue\": \"Coroplast 4mm - White\",\n                                    \"AttributeLabel\": \"Coroplast 4mm - White\",\n                                    \"attributeId\": \"3523\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 35.000001792000006,\n                                    \"vendor_price\": 10.000000512000002,\n                                    \"option_price\": 35.000002,\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-11\": {\n                                    \"Heading\": \"Cut Type\",\n                                    \"optionId\": 2251,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutType\",\n                                    \"master_option_id\": 151,\n                                    \"attribute_key\": \"Through Cut|2\",\n                                    \"master_attribute_id\": 316,\n                                    \"AttributeValue\": \"Through Cut\",\n                                    \"AttributeLabel\": \"Through Cut\",\n                                    \"attributeId\": \"3171\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-12\": {\n                                    \"Heading\": \"Bulk Pricing?\",\n                                    \"optionId\": 2252,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"Sheet\",\n                                    \"master_option_id\": 199,\n                                    \"attribute_key\": \"false|2\",\n                                    \"master_attribute_id\": 529,\n                                    \"AttributeValue\": \"No, Charge Per Unit\",\n                                    \"AttributeLabel\": \"No, Charge Per Unit\",\n                                    \"attributeId\": \"3173\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-13\": {\n                                    \"Heading\": \"Sign Type\",\n                                    \"optionId\": 2253,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"specialSign\",\n                                    \"master_option_id\": 200,\n                                    \"attribute_key\": \"None_specialSign\",\n                                    \"master_attribute_id\": 531,\n                                    \"AttributeValue\": \"Standard\",\n                                    \"AttributeLabel\": \"Standard\",\n                                    \"attributeId\": \"3174\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-14\": {\n                                    \"Heading\": \"Substrate Type\",\n                                    \"optionId\": 2254,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"substrateType\",\n                                    \"master_option_id\": 218,\n                                    \"attribute_key\": \"Rigid\",\n                                    \"master_attribute_id\": 607,\n                                    \"AttributeValue\": \"Rigid\",\n                                    \"AttributeLabel\": \"Rigid\",\n                                    \"attributeId\": \"3176\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-15\": {\n                                    \"Heading\": \"Placement\",\n                                    \"optionId\": 2306,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holePlacement\",\n                                    \"master_option_id\": 206,\n                                    \"attribute_key\": \"None_holePlacement|0\",\n                                    \"master_attribute_id\": 557,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3296\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-16\": {\n                                    \"Heading\": \"Drill Holes / Grommets\",\n                                    \"optionId\": 2350,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeDrilled\",\n                                    \"master_option_id\": 219,\n                                    \"attribute_key\": \"false_holeDrilled\",\n                                    \"master_attribute_id\": 614,\n                                    \"AttributeValue\": \"No\",\n                                    \"AttributeLabel\": \"No\",\n                                    \"attributeId\": \"3443\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-17\": {\n                                    \"Heading\": \"Proof\",\n                                    \"optionId\": 2575,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"provideProof\",\n                                    \"master_option_id\": 222,\n                                    \"attribute_key\": \"false_proof\",\n                                    \"master_attribute_id\": 655,\n                                    \"AttributeValue\": \"No Proof Required\",\n                                    \"AttributeLabel\": \"No Proof Required\",\n                                    \"attributeId\": \"3989\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Proof\"\n                                },\n                                \"AO-18\": {\n                                    \"Heading\": \"Edge Distance\",\n                                    \"optionId\": 3876,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeEdgeSpace\",\n                                    \"master_option_id\": 238,\n                                    \"attribute_key\": \"2_holeEdgeSpace\",\n                                    \"master_attribute_id\": 1028,\n                                    \"AttributeValue\": \"2\\\"\",\n                                    \"AttributeLabel\": \"2\\\"\",\n                                    \"attributeId\": \"8014\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-19\": {\n                                    \"Heading\": \"Sheet Size\",\n                                    \"optionId\": 4082,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"sheetSize\",\n                                    \"master_option_id\": 241,\n                                    \"attribute_key\": \"4x8|4608\",\n                                    \"master_attribute_id\": 1019,\n                                    \"AttributeValue\": \"4' x 8'\",\n                                    \"AttributeLabel\": \"4' x 8'\",\n                                    \"attributeId\": \"7093\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-20\": {\n                                    \"Heading\": \"Print Surface\",\n                                    \"optionId\": 4476,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSurface\",\n                                    \"master_option_id\": 144,\n                                    \"attribute_key\": \"1st\",\n                                    \"master_attribute_id\": 280,\n                                    \"AttributeValue\": \"1st\",\n                                    \"AttributeLabel\": \"1st\",\n                                    \"attributeId\": \"8015\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-21\": {\n                                    \"Heading\": \"Print Mode\",\n                                    \"optionId\": 4477,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printMode_Vanguard\",\n                                    \"master_option_id\": 244,\n                                    \"attribute_key\": \"4-Pass_Vanguard\",\n                                    \"master_attribute_id\": 1059,\n                                    \"AttributeValue\": \"4-Pass\",\n                                    \"AttributeLabel\": \"4-Pass\",\n                                    \"attributeId\": \"8896\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 13.125,\n                                    \"vendor_price\": 3.75,\n                                    \"option_price\": 13.125,\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-22\": {\n                                    \"Heading\": \"Cut Complexity\",\n                                    \"optionId\": 4757,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutComplexity\",\n                                    \"master_option_id\": 246,\n                                    \"attribute_key\": \"outside|1\",\n                                    \"master_attribute_id\": 1098,\n                                    \"AttributeValue\": \"Outside Cut Only\",\n                                    \"AttributeLabel\": \"Outside Cut Only\",\n                                    \"attributeId\": \"8526\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-23\": {\n                                    \"Heading\": \"Through Cut Device\",\n                                    \"optionId\": 4758,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"finishDevice2\",\n                                    \"master_option_id\": 176,\n                                    \"attribute_key\": \"Multicam\",\n                                    \"master_attribute_id\": 391,\n                                    \"AttributeValue\": \"Multicam\",\n                                    \"AttributeLabel\": \"Multicam\",\n                                    \"attributeId\": \"8530\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-24\": {\n                                    \"Heading\": \"Thru Cut Tool - Thru Cut\",\n                                    \"optionId\": 4759,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"thruCutDeviceTool_ThruCut\",\n                                    \"master_option_id\": 247,\n                                    \"attribute_key\": \"K25 Half-Centerpoint Blade\",\n                                    \"master_attribute_id\": 1115,\n                                    \"AttributeValue\": \"K25 Half-Centerpoint Blade\",\n                                    \"AttributeLabel\": \"K25 Half-Centerpoint Blade\",\n                                    \"attributeId\": \"8531\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 12.250667415813957,\n                                    \"vendor_price\": 3.500190690232559,\n                                    \"option_price\": 12.250667,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-25\": {\n                                    \"Heading\": \"Thru Cut Tool - Rout\",\n                                    \"optionId\": 4880,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"thruCutDeviceTool_FreeForm\",\n                                    \"master_option_id\": 249,\n                                    \"attribute_key\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"master_attribute_id\": 1158,\n                                    \"AttributeValue\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"AttributeLabel\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"attributeId\": \"8712\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 21.332585600000005,\n                                    \"vendor_price\": 6.095024457142858,\n                                    \"option_price\": 21.332586,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-26\": {\n                                    \"Heading\": \"Width (Inch)\",\n                                    \"AttributeLabel\": \"41.4712\",\n                                    \"AttributeValue\": \"41.4712\"\n                                },\n                                \"AO-27\": {\n                                    \"Heading\": \"Height (Inch)\",\n                                    \"AttributeLabel\": \"72\",\n                                    \"AttributeValue\": \"72\"\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"productsize\": \"<b>41.4712</b> Width x <b>72</b> Height <span class=\\\"text-danger\\\"> (Inch)</span>\",\n                            \"mass_personalization_files\": null,\n                            \"products_vendor_price\": 26.25,\n                            \"products_weight\": \"6.987068\",\n                            \"inventory_storage_days\": 0,\n                            \"product_status_id\": 45,\n                            \"product_status\": \"Fulfilled\",\n                            \"product_id\": 201,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"0\",\n                                    \"product_price\": 239.998357\n                                }\n                            },\n                            \"product_info\": \"\",\n                            \"template_info\": \"\",\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 240,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2025-07-18\",\n                            \"orders_products_id_pattern\": \"5952\",\n                            \"orders_products_last_modified_date\": \"2025-07-16\",\n                            \"predefined_product_type\": \"0\",\n                            \"ziflow_link\": \"https://vg.ziflow.io/proof/9dujsic64l2nus2ffnl5fbebuv\",\n                            \"print_ready_files\": {\n                                \"Artwork_1\": {\n                                    \"artworkLineID\": 1,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5952_coroplast_568095.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5952%20BubbleBoard%20-%20Athlete%20Cut%20Out_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5952%20BubbleBoard%20-%20Athlete%20Cut%20Out_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                }\n                            },\n                            \"item_extra_info_json\": null\n                        },\n                        {\n                            \"orders_products_id\": 5953,\n                            \"product_size_details\": {\n                                \"width\": \"28\",\n                                \"height\": \"47.5\",\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"Coroplast -Easel Back\",\n                            \"products_title\": \"Coroplast\",\n                            \"products_sku\": null,\n                            \"products_price\": 6.38,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"Upload Center\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"Heading\": \"Production Time\",\n                                    \"optionId\": 2232,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"prodTime\",\n                                    \"master_option_id\": 52,\n                                    \"attribute_key\": \"3\",\n                                    \"master_attribute_id\": 139,\n                                    \"AttributeValue\": \"Standard (3-5 Business Days)\",\n                                    \"AttributeLabel\": \"Standard (3-5 Business Days)\",\n                                    \"attributeId\": \"3136\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-2\": {\n                                    \"Heading\": \"File Processing (RIP) : Standard\",\n                                    \"optionId\": 2233,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_processing_(rip)\",\n                                    \"master_option_id\": 70,\n                                    \"price\": 2.275,\n                                    \"vendor_price\": 0.65,\n                                    \"option_price\": 2.275,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-3\": {\n                                    \"Heading\": \"File Prep : Standard\",\n                                    \"optionId\": 2234,\n                                    \"options_type\": \"admin_only\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"file_prep\",\n                                    \"master_option_id\": 69,\n                                    \"price\": 7.875101604999999,\n                                    \"vendor_price\": 2.25002903,\n                                    \"option_price\": 7.875102,\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-4\": {\n                                    \"Heading\": \"Print Sides\",\n                                    \"optionId\": 2235,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSides\",\n                                    \"master_option_id\": 50,\n                                    \"attribute_key\": \"Single|1\",\n                                    \"master_attribute_id\": 132,\n                                    \"AttributeValue\": \"Single\",\n                                    \"AttributeLabel\": \"Single\",\n                                    \"attributeId\": \"3138\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-5\": {\n                                    \"Heading\": \"Ink Type\",\n                                    \"optionId\": 2239,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkType\",\n                                    \"master_option_id\": 146,\n                                    \"attribute_key\": \"cmyk\",\n                                    \"master_attribute_id\": 287,\n                                    \"AttributeValue\": \"CMYK\",\n                                    \"AttributeLabel\": \"CMYK\",\n                                    \"attributeId\": \"3150\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-6\": {\n                                    \"Heading\": \"White Ink\",\n                                    \"optionId\": 2240,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"whiteInk\",\n                                    \"master_option_id\": 143,\n                                    \"attribute_key\": \"None_whiteInk\",\n                                    \"master_attribute_id\": 265,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3151\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-7\": {\n                                    \"Heading\": \"Graphic Shape\",\n                                    \"optionId\": 2241,\n                                    \"options_type\": \"radio\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"imageShape\",\n                                    \"master_option_id\": 135,\n                                    \"attribute_key\": \"Contour|3\",\n                                    \"master_attribute_id\": 246,\n                                    \"AttributeValue\": \"Freeform Contour\",\n                                    \"AttributeLabel\": \"Freeform Contour\",\n                                    \"attributeId\": \"3154\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-8\": {\n                                    \"Heading\": \"Ink Tech\",\n                                    \"optionId\": 2242,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printDevice\",\n                                    \"master_option_id\": 172,\n                                    \"attribute_key\": \"Vanguard VK300D-HS\",\n                                    \"master_attribute_id\": 612,\n                                    \"AttributeValue\": \"Vanguard VK300D-HS\",\n                                    \"AttributeLabel\": \"Vanguard VK300D-HS\",\n                                    \"attributeId\": \"3177\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-9\": {\n                                    \"Heading\": \"Ink Finish\",\n                                    \"optionId\": 2245,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"inkFinish\",\n                                    \"master_option_id\": 112,\n                                    \"attribute_key\": \"Gloss\",\n                                    \"master_attribute_id\": 184,\n                                    \"AttributeValue\": \"Gloss\",\n                                    \"AttributeLabel\": \"Gloss\",\n                                    \"attributeId\": \"3160\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-10\": {\n                                    \"Heading\": \"Substrate\",\n                                    \"optionId\": 2250,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"mountSubstrate\",\n                                    \"master_option_id\": 196,\n                                    \"attribute_key\": \"Coroplast 4mm - White\",\n                                    \"master_attribute_id\": 629,\n                                    \"AttributeValue\": \"Coroplast 4mm - White\",\n                                    \"AttributeLabel\": \"Coroplast 4mm - White\",\n                                    \"attributeId\": \"3523\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 35.000001792000006,\n                                    \"vendor_price\": 10.000000512000002,\n                                    \"option_price\": 35.000002,\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-11\": {\n                                    \"Heading\": \"Cut Type\",\n                                    \"optionId\": 2251,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutType\",\n                                    \"master_option_id\": 151,\n                                    \"attribute_key\": \"Through Cut|2\",\n                                    \"master_attribute_id\": 316,\n                                    \"AttributeValue\": \"Through Cut\",\n                                    \"AttributeLabel\": \"Through Cut\",\n                                    \"attributeId\": \"3171\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-12\": {\n                                    \"Heading\": \"Bulk Pricing?\",\n                                    \"optionId\": 2252,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"Sheet\",\n                                    \"master_option_id\": 199,\n                                    \"attribute_key\": \"false|2\",\n                                    \"master_attribute_id\": 529,\n                                    \"AttributeValue\": \"No, Charge Per Unit\",\n                                    \"AttributeLabel\": \"No, Charge Per Unit\",\n                                    \"attributeId\": \"3173\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-13\": {\n                                    \"Heading\": \"Sign Type\",\n                                    \"optionId\": 2253,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"specialSign\",\n                                    \"master_option_id\": 200,\n                                    \"attribute_key\": \"None_specialSign\",\n                                    \"master_attribute_id\": 531,\n                                    \"AttributeValue\": \"Standard\",\n                                    \"AttributeLabel\": \"Standard\",\n                                    \"attributeId\": \"3174\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Order\"\n                                },\n                                \"AO-14\": {\n                                    \"Heading\": \"Substrate Type\",\n                                    \"optionId\": 2254,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"substrateType\",\n                                    \"master_option_id\": 218,\n                                    \"attribute_key\": \"Rigid\",\n                                    \"master_attribute_id\": 607,\n                                    \"AttributeValue\": \"Rigid\",\n                                    \"AttributeLabel\": \"Rigid\",\n                                    \"attributeId\": \"3176\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-15\": {\n                                    \"Heading\": \"Placement\",\n                                    \"optionId\": 2306,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holePlacement\",\n                                    \"master_option_id\": 206,\n                                    \"attribute_key\": \"None_holePlacement|0\",\n                                    \"master_attribute_id\": 557,\n                                    \"AttributeValue\": \"None\",\n                                    \"AttributeLabel\": \"None\",\n                                    \"attributeId\": \"3296\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-16\": {\n                                    \"Heading\": \"Drill Holes / Grommets\",\n                                    \"optionId\": 2350,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeDrilled\",\n                                    \"master_option_id\": 219,\n                                    \"attribute_key\": \"false_holeDrilled\",\n                                    \"master_attribute_id\": 614,\n                                    \"AttributeValue\": \"No\",\n                                    \"AttributeLabel\": \"No\",\n                                    \"attributeId\": \"3443\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Ignore\"\n                                },\n                                \"AO-17\": {\n                                    \"Heading\": \"Proof\",\n                                    \"optionId\": 2575,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"provideProof\",\n                                    \"master_option_id\": 222,\n                                    \"attribute_key\": \"false_proof\",\n                                    \"master_attribute_id\": 655,\n                                    \"AttributeValue\": \"No Proof Required\",\n                                    \"AttributeLabel\": \"No Proof Required\",\n                                    \"attributeId\": \"3989\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Proof\"\n                                },\n                                \"AO-18\": {\n                                    \"Heading\": \"Edge Distance\",\n                                    \"optionId\": 3876,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"holeEdgeSpace\",\n                                    \"master_option_id\": 238,\n                                    \"attribute_key\": \"2_holeEdgeSpace\",\n                                    \"master_attribute_id\": 1028,\n                                    \"AttributeValue\": \"2\\\"\",\n                                    \"AttributeLabel\": \"2\\\"\",\n                                    \"attributeId\": \"8014\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Holes\"\n                                },\n                                \"AO-19\": {\n                                    \"Heading\": \"Sheet Size\",\n                                    \"optionId\": 4082,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"sheetSize\",\n                                    \"master_option_id\": 241,\n                                    \"attribute_key\": \"4x8|4608\",\n                                    \"master_attribute_id\": 1019,\n                                    \"AttributeValue\": \"4' x 8'\",\n                                    \"AttributeLabel\": \"4' x 8'\",\n                                    \"attributeId\": \"7093\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Substrate\"\n                                },\n                                \"AO-20\": {\n                                    \"Heading\": \"Print Surface\",\n                                    \"optionId\": 4476,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printSurface\",\n                                    \"master_option_id\": 144,\n                                    \"attribute_key\": \"1st\",\n                                    \"master_attribute_id\": 280,\n                                    \"AttributeValue\": \"1st\",\n                                    \"AttributeLabel\": \"1st\",\n                                    \"attributeId\": \"8015\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"attributeType\": \"combo\",\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-21\": {\n                                    \"Heading\": \"Print Mode\",\n                                    \"optionId\": 4477,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"printMode_Vanguard\",\n                                    \"master_option_id\": 244,\n                                    \"attribute_key\": \"4-Pass_Vanguard\",\n                                    \"master_attribute_id\": 1059,\n                                    \"AttributeValue\": \"4-Pass\",\n                                    \"AttributeLabel\": \"4-Pass\",\n                                    \"attributeId\": \"8896\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 6.125,\n                                    \"vendor_price\": 1.75,\n                                    \"option_price\": 6.125,\n                                    \"optionGroup\": \"Print\"\n                                },\n                                \"AO-22\": {\n                                    \"Heading\": \"Cut Complexity\",\n                                    \"optionId\": 4757,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"cutComplexity\",\n                                    \"master_option_id\": 246,\n                                    \"attribute_key\": \"outside|1\",\n                                    \"master_attribute_id\": 1098,\n                                    \"AttributeValue\": \"Outside Cut Only\",\n                                    \"AttributeLabel\": \"Outside Cut Only\",\n                                    \"attributeId\": \"8526\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-23\": {\n                                    \"Heading\": \"Through Cut Device\",\n                                    \"optionId\": 4758,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"finishDevice2\",\n                                    \"master_option_id\": 176,\n                                    \"attribute_key\": \"Multicam\",\n                                    \"master_attribute_id\": 391,\n                                    \"AttributeValue\": \"Multicam\",\n                                    \"AttributeLabel\": \"Multicam\",\n                                    \"attributeId\": \"8530\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 0,\n                                    \"vendor_price\": 0,\n                                    \"option_price\": \"\",\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-24\": {\n                                    \"Heading\": \"Thru Cut Tool - Thru Cut\",\n                                    \"optionId\": 4759,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"thruCutDeviceTool_ThruCut\",\n                                    \"master_option_id\": 247,\n                                    \"attribute_key\": \"K25 Half-Centerpoint Blade\",\n                                    \"master_attribute_id\": 1115,\n                                    \"AttributeValue\": \"K25 Half-Centerpoint Blade\",\n                                    \"AttributeLabel\": \"K25 Half-Centerpoint Blade\",\n                                    \"attributeId\": \"8531\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 8.15119069767442,\n                                    \"vendor_price\": 2.328911627906977,\n                                    \"option_price\": 8.151191,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-25\": {\n                                    \"Heading\": \"Thru Cut Tool - Rout\",\n                                    \"optionId\": 4880,\n                                    \"options_type\": \"combo\",\n                                    \"hire_designer_option\": \"0\",\n                                    \"option_key\": \"thruCutDeviceTool_FreeForm\",\n                                    \"master_option_id\": 249,\n                                    \"attribute_key\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"master_attribute_id\": 1158,\n                                    \"AttributeValue\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"AttributeLabel\": \"43607K 1/4in Double Straight V Flute\",\n                                    \"attributeId\": \"8712\",\n                                    \"material_thickness\": \"0.000000\",\n                                    \"price\": 14.193999999999999,\n                                    \"vendor_price\": 4.055428571428571,\n                                    \"option_price\": 14.194,\n                                    \"optionGroup\": \"Finishing\"\n                                },\n                                \"AO-26\": {\n                                    \"Heading\": \"Width (Inch)\",\n                                    \"AttributeLabel\": \"28\",\n                                    \"AttributeValue\": \"28\"\n                                },\n                                \"AO-27\": {\n                                    \"Heading\": \"Height (Inch)\",\n                                    \"AttributeLabel\": \"47.5\",\n                                    \"AttributeValue\": \"47.5\"\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"productsize\": \"<b>28</b> Width x <b>47.5</b> Height <span class=\\\"text-danger\\\"> (Inch)</span>\",\n                            \"mass_personalization_files\": null,\n                            \"products_vendor_price\": 21.03,\n                            \"products_weight\": \"3.112200\",\n                            \"inventory_storage_days\": 0,\n                            \"product_status_id\": 45,\n                            \"product_status\": \"Fulfilled\",\n                            \"product_id\": 201,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 0,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"0\",\n                                    \"product_price\": 80.00029500000001\n                                }\n                            },\n                            \"product_info\": \"\",\n                            \"template_info\": \"\",\n                            \"product_printer_name\": null,\n                            \"products_unit_price\": 80,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2025-07-18\",\n                            \"orders_products_id_pattern\": \"5953\",\n                            \"orders_products_last_modified_date\": \"2025-07-16\",\n                            \"predefined_product_type\": \"0\",\n                            \"ziflow_link\": \"https://vg.ziflow.io/proof/r0i2s44889k7i8j6bqc924nrsc\",\n                            \"print_ready_files\": {\n                                \"Artwork_1\": {\n                                    \"artworkLineID\": 1,\n                                    \"qty\": \"1\",\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754_5953_coroplast_189623.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5953%20Coroplast%20-Easel%20Back_Qnty-1.pdf\",\n                                        \"Rear\": \"\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"http://2ctmedia.localhost/images/orders/1754/1754-5953%20Coroplast%20-Easel%20Back_Qnty-1_thumb.png\",\n                                        \"Rear\": \"\"\n                                    }\n                                }\n                            },\n                            \"item_extra_info_json\": null\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": null,\n                        \"blind_company\": null,\n                        \"blind_street_address\": null,\n                        \"blind_suburb\": null,\n                        \"blind_city\": null,\n                        \"blind_postcode\": null,\n                        \"blind_state\": null,\n                        \"blind_state_code\": null,\n                        \"blind_country\": null\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"Position Sports \",\n                        \"delivery_company\": null,\n                        \"delivery_street_address\": \"29430 SE 15th Place\",\n                        \"delivery_suburb\": null,\n                        \"delivery_city\": \"Fall City\",\n                        \"delivery_postcode\": \"98024\",\n                        \"delivery_state\": \"Washington\",\n                        \"delivery_state_code\": \"WA\",\n                        \"delivery_country\": \"United States\",\n                        \"delivery_telephone\": \"7248140614\",\n                        \"delivery_extrafield\": []\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Position Sports \",\n                        \"billing_company\": \"Position Sports\",\n                        \"billing_street_address\": \"1145 S 48th St\",\n                        \"billing_suburb\": null,\n                        \"billing_city\": \"Tempe\",\n                        \"billing_postcode\": \"85281\",\n                        \"billing_state\": \"Arizona\",\n                        \"billing_state_code\": \"AZ\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"7852484847\",\n                        \"billing_extrafield\": []\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 180,\n                            \"shipment_tracking_number\": \"391112964472\",\n                            \"shipment_company\": \"Shipping\",\n                            \"shipment_total_weight\": null,\n                            \"shipment_package\": {}\n                        }\n                    ]\n                }\n            ],\n            \"totalOrders\": 1\n        }\n    }\n}"}],"_postman_id":"9e013261-251b-43e5-8db0-ea9e9a53b49c"},{"name":"Order Details","id":"c9087f4a-26b0-48d9-9bfd-790cb72b83e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int, $from_date: String, $to_date: String, $limit: Int, $order_type: OrdersOrderTypeEnum) {\n    orders (orders_id: $orders_id, from_date: $from_date, to_date:$to_date, limit:$limit, order_type: $order_type) {\n        orders {\n          orders_id\n          order_status\n          orders_status_id\n          orders_date_finished\n          local_orders_date_finished\n          order_last_modified_date\n          order_amount\n          total_amount\n          tax_amount\n          shipping_amount\n          coupon_amount\n          coupon_code\n          payment_status_title\n          payment_processing_fees\n          customer {\n            customers_name\n            customers_email_address\n            customers_telephone\n            customers_company\n          }\n          product {\n            orders_products_id\n            product_id\n            products_title\n            products_name\n            products_sku\n            products_quantity\n            products_price\n            product_status\n            product_status_id\n            production_description\n            features_details\n          }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n  \"orders_id\": 2788\n}"}},"url":"{{api_url}}","description":"<p>This API allows you to retrieve detailed information about a specific order by providing the order ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orders_id</td>\n<td>Yes</td>\n<td><code>Int</code></td>\n<td>Use this parameter to get particular order details</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"92522495-447e-4202-998a-4e7af9743fae","name":"Get Details of Particular Order","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orders ($orders_id: Int) {\n    orders (orders_id: $orders_id) {\n        orders {\n\t\t\tuser_id\n            orders_id\n            corporate_id\n            order_status\n            orders_status_id\n            orders_date_finished\n            local_orders_date_finished\n            shipping_mode\n            courirer_company_name\n            airway_bill_number\n            printer_name\n            printer_email\n            payment_method_name\n            total_amount\n            order_amount\n            shipping_amount\n            tax_amount\n            coupon_amount\n            coupon_code\n            coupon_type\n            order_vendor_amount\n            order_note\n            orders_due_date\n            orders_extrafield\n            extrafield\n            approved_by\n            order_last_modified_date\n            department_id\n            cost_center_code\n            po_number\n            total_weight\n            refund_amount\n            blind_shipping_charge\n            placed_by\n            payment_due_date\n            transactionid\n            sales_agent_name\n            branch_name\n            payment_status_title\n            production_due_date\n            payment_processing_fees\n            payment_date\n            shipping_type_id\n            invoice_number\n            invoice_date\n            parent_corporate_id\n            customer {\n                customers_name\n\t\t\t\tcustomers_email_address\n\t\t\t\tcustomers_telephone\n\t\t\t\tcustomers_company\n            }\n            product {\n                orders_products_id\n                product_size_details\n                products_name\n                products_title\n                products_sku\n                products_price\n                products_quantity\n                template_type\n                features_details\n                photo_print_details\n                print_ready_files\n                productsize\n                csv_file_name\n                products_vendor_price\n                products_weight\n                inventory_storage_days\n                shipping_company\n                tracking_number\n                product_status_id\n                product_status\n                product_id\n                reference_order_id\n                is_kit\n                product_tax\n                product_info\n                template_info\n                product_printer_name\n                products_unit_price\n                quote_id\n                product_production_due_date\n                orders_products_id_pattern\n            }\n            blind_detail {\n                blind_name\n                blind_company\n                blind_street_address\n                blind_suburb\n                blind_city\n                blind_postcode\n                blind_state\n                blind_state_code\n                blind_country\n\t\t\t\tblind_extrafield\n            }\n            delivery_detail {\n                delivery_name\n                delivery_company\n                delivery_street_address\n                delivery_suburb\n                delivery_city\n                delivery_postcode\n                delivery_state\n                delivery_state_code\n                delivery_country\n                delivery_telephone\n                shipping_extrafield\n            }\n            billing_detail {\n                billing_name\n                billing_company\n                billing_street_address\n                billing_suburb\n                billing_city\n                billing_postcode\n                billing_state\n                billing_state_code\n                billing_country\n                billing_telephone\n                billing_extrafield\n            }\n            shipment_detail {\n                shipment_shipping_type_id\n                shipment_tracking_number\n                shipment_company\n                shipment_total_weight\n                shipment_package\n            }\n        }\n        totalOrders\n        currentCount\n    }\n}","variables":"{\n  \"orders_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 10:30:55 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"2739"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orders\": {\n            \"orders\": [\n                {\n                    \"user_id\": 6,\n                    \"orders_id\": 176,\n                    \"corporate_id\": 0,\n                    \"order_status\": \"Pending\",\n                    \"orders_status_id\": 1,\n                    \"orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"local_orders_date_finished\": \"2024-05-24 10:03:26\",\n                    \"shipping_mode\": \"RadixWeb\",\n                    \"courirer_company_name\": \"Local Pickup From Store\",\n                    \"airway_bill_number\": \"GHH-343434\",\n                    \"printer_name\": \"Canon Printer (canonprinter)\",\n                    \"printer_email\": \"canonprinter@radixweb.com\",\n                    \"payment_method_name\": \"Cheque\",\n                    \"total_amount\": 455.82,\n                    \"order_amount\": 283.46,\n                    \"shipping_amount\": 100,\n                    \"tax_amount\": 62.36,\n                    \"coupon_amount\": 0,\n                    \"coupon_code\": null,\n                    \"coupon_type\": null,\n                    \"order_vendor_amount\": 0,\n                    \"order_note\": null,\n                    \"orders_due_date\": \"2024-06-03\",\n                    \"orders_extrafield\": [],\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"approved_by\": null,\n                    \"order_last_modified_date\": \"2024-05-24 10:03:26\",\n                    \"department_id\": 0,\n                    \"cost_center_code\": null,\n                    \"po_number\": null,\n                    \"total_weight\": 9.84,\n                    \"refund_amount\": 0,\n                    \"blind_shipping_charge\": 10,\n                    \"placed_by\": \"User\",\n                    \"payment_due_date\": \"2024-05-24\",\n                    \"transactionid\": null,\n                    \"sales_agent_name\": null,\n                    \"branch_name\": null,\n                    \"payment_status_title\": \"Unpaid\",\n                    \"production_due_date\": \"2024-05-29\",\n                    \"payment_processing_fees\": 0,\n                    \"payment_date\": \"2024-05-24 10:03:27\",\n                    \"shipping_type_id\": 1,\n                    \"invoice_number\": null,\n                    \"invoice_date\": \"Invalid date\",\n                    \"parent_corporate_id\": null,\n                    \"customer\": {\n                        \"customers_name\": \"Howard Watkins\",\n                        \"customers_email_address\": \"HowardWatkins@test.com\",\n                        \"customers_telephone\": \"99988899999\",\n                        \"customers_company\": \"TECHNO\"\n                    },\n                    \"product\": [\n                        {\n                            \"orders_products_id\": 210,\n                            \"product_size_details\": {\n                                \"width\": 8.75,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"457793\",\n                            \"products_title\": \"Flyers One Side\",\n                            \"products_sku\": null,\n                            \"products_price\": 12,\n                            \"products_quantity\": 100,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Paper Type\",\n                                    \"option_id\": 65,\n                                    \"attribute_label\": \"310 gsm\",\n                                    \"attribute_value\": \"310 gsm\",\n                                    \"option_price\": 2.460938,\n                                    \"option_discount_price\": 2.4609375\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Production Time\",\n                                    \"option_id\": 66,\n                                    \"attribute_label\": \"3 Business Days\",\n                                    \"attribute_value\": \"3 Business Days\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Single File\",\n                                    \"option_id\": \"125\",\n                                    \"attribute_label\": \"176_option_cyborg_1716544748015.jpg\",\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/image.jpg\"\n                                    ]\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Multiple File\",\n                                    \"option_id\": \"126\",\n                                    \"attribute_label\": [\n                                        \"176_option_comp_1716544933696.jpg\",\n                                        \"176_option_panda_1716544934067.jpeg\"\n                                    ],\n                                    \"attribute_value\": [\n                                        \"https://your.domain.com/image.jpg\",\n                                        \"https://your.domain.com/image.jpg\"\n                                    ],\n                                    \"option_price\": \"\"\n                                },\n                                \"AO-5\": {\n                                    \"option_label\": \"Cloud File\",\n                                    \"option_id\": \"130\",\n                                    \"attribute_label\": \"20240524_095759_82805.jpeg\",\n                                    \"attribute_value\": [\n                                        \"https://uc887890229df0a03253ec62e892.dl.dropboxusercontent.com/cd/0/get/CTe-xJl0J-LXPNK_Nvi4RYexHwnDXtooyS8dXiLPlcaDkMYW6YkEsj3pWHA-sP5PWWolGAM5gIeY32n7Po2PTjgf0wkoqxYx6OPb6zmOhKQiffQTbX98SWo56wlUR7iBjAIfJodVPmu2-X9gNoNqKO5tjp3qi2-QFA6CD56hqH29wg/file\"\n                                    ]\n                                },\n                                \"AO-6\": {\n                                    \"option_label\": \"Speicific Requirement\",\n                                    \"option_id\": \"136\",\n                                    \"attribute_label\": \"TEST\",\n                                    \"attribute_value\": \"TEST\"\n                                },\n                                \"AO-7\": {\n                                    \"option_label\": \"Checkboxes\",\n                                    \"option_id\": 145,\n                                    \"attribute_label\": \"CH 1, CH 2, CH 3\",\n                                    \"attribute_value\": \"CH 1, CH 2, CH 3\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"customer_supplied_artwork\": {\n                                        \"Front\": \"https://your.domain.com/image.jpg\"\n                                    },\n                                    \"print_ready_artwork\": {\n                                        \"Front\": \"https://your.domain.com/image.jpg\"\n                                    },\n                                    \"thumbnail_preview\": {\n                                        \"Front\": \"https://your.domain.com/image.jpg\"\n                                    }\n                                }\n                            },\n                            \"productsize\": \"A4 - 8.5x11\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.098438\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 2,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"3.1812\",\n                                    \"product_price\": 14.460938\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 14.46,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"210\"\n                        },\n                        {\n                            \"orders_products_id\": 211,\n                            \"product_size_details\": {\n                                \"width\": 36,\n                                \"height\": 24,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            },\n                            \"products_name\": \"251300\",\n                            \"products_title\": \"Canvas\",\n                            \"products_sku\": null,\n                            \"products_price\": 269,\n                            \"products_quantity\": 1,\n                            \"template_type\": \"false\",\n                            \"features_details\": {\n                                \"AO-1\": {\n                                    \"option_label\": \"Border Thickness\",\n                                    \"option_id\": 107,\n                                    \"attribute_label\": \"1 Inch\",\n                                    \"attribute_value\": \"1 Inch\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-2\": {\n                                    \"option_label\": \"Edge Design\",\n                                    \"option_id\": 108,\n                                    \"attribute_label\": \"Folded\",\n                                    \"attribute_value\": \"Folded\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-3\": {\n                                    \"option_label\": \"Image Effects\",\n                                    \"option_id\": 109,\n                                    \"attribute_label\": \"Original\",\n                                    \"attribute_value\": \"Original\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                },\n                                \"AO-4\": {\n                                    \"option_label\": \"Frame Type\",\n                                    \"option_id\": 110,\n                                    \"attribute_label\": \"None\",\n                                    \"attribute_value\": \"None\",\n                                    \"option_price\": \"\",\n                                    \"option_discount_price\": 0\n                                }\n                            },\n                            \"photo_print_details\": null,\n                            \"print_ready_files\": {\n                                \"product_printready_detials\": {\n                                    \"thumbnail_preview\": {\n                                        \"P1\": \"https://your.domain.com/image.jpg\"\n                                    },\n                                    \"all_pages\": \"https://your.domain.com/image.jpg\"\n                                }\n                            },\n                            \"productsize\": \"36 x 24\",\n                            \"csv_file_name\": \"no upload\",\n                            \"products_vendor_price\": 0,\n                            \"products_weight\": \"0.000000\",\n                            \"inventory_storage_days\": 0,\n                            \"shipping_company\": null,\n                            \"tracking_number\": \"GHH-343434\",\n                            \"product_status_id\": 23,\n                            \"product_status\": \"Proof Approved\",\n                            \"product_id\": 105,\n                            \"reference_order_id\": 0,\n                            \"is_kit\": false,\n                            \"product_tax\": {\n                                \"AO-1\": {\n                                    \"tax_type_id\": 0,\n                                    \"rate\": 22,\n                                    \"tax_type_name\": \"Tax\",\n                                    \"tax_amount\": \"59.18\",\n                                    \"product_price\": 269\n                                }\n                            },\n                            \"product_info\": null,\n                            \"template_info\": null,\n                            \"product_printer_name\": \"Canon Printer (canonprinter)\",\n                            \"products_unit_price\": 269,\n                            \"quote_id\": 0,\n                            \"product_production_due_date\": \"2024-05-29\",\n                            \"orders_products_id_pattern\": \"211\"\n                        }\n                    ],\n                    \"blind_detail\": {\n                        \"blind_name\": \"Sean Preston\",\n                        \"blind_company\": \"Haxxor\",\n                        \"blind_street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                        \"blind_suburb\": \"Zuid Steenovenrecht\",\n                        \"blind_city\": \"Cura Cabai\",\n                        \"blind_postcode\": \"64015\",\n                        \"blind_state\": \"Aruba\",\n                        \"blind_state_code\": null,\n                        \"blind_country\": \"Netherlands\",\n                        \"blind_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"delivery_detail\": {\n                        \"delivery_name\": \"RadixWeb\",\n                        \"delivery_company\": \"Radix Pvt Ltd.\",\n                        \"delivery_street_address\": \"Ekyarth, Near Malabar County\",\n                        \"delivery_suburb\": \"Jagatpur Road\",\n                        \"delivery_city\": \"Ahmedabad\",\n                        \"delivery_postcode\": \"898565\",\n                        \"delivery_state\": \"Gujarat\",\n                        \"delivery_state_code\": \"GJ\",\n                        \"delivery_country\": \"India\",\n                        \"delivery_telephone\": \"7412369852\",\n                        \"shipping_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"billing_detail\": {\n                        \"billing_name\": \"Howard Watkins\",\n                        \"billing_company\": \"Test Company\",\n                        \"billing_street_address\": \"647 Vandervort Haven\",\n                        \"billing_suburb\": \"Port Tyron\",\n                        \"billing_city\": \"Alabama\",\n                        \"billing_postcode\": \"74645\",\n                        \"billing_state\": \"Alabama\",\n                        \"billing_state_code\": \"AL\",\n                        \"billing_country\": \"United States\",\n                        \"billing_telephone\": \"99988899999\",\n                        \"billing_extrafield\": [\n                            {\n                                \"label\": \"File\",\n                                \"value\": \"https://your.domain.com/image.jpg\"\n                            }\n                        ]\n                    },\n                    \"shipment_detail\": [\n                        {\n                            \"shipment_shipping_type_id\": 1,\n                            \"shipment_tracking_number\": \"GHH-343434\",\n                            \"shipment_company\": null,\n                            \"shipment_total_weight\": 9.8438,\n                            \"shipment_package\": {\n                                \"1\": {\n                                    \"length\": \"10\",\n                                    \"width\": \"20\",\n                                    \"height\": \"30\",\n                                    \"shipment_products_id\": \"210,211\",\n                                    \"shipment_product_name\": \"Flyers One Side,Canvas\",\n                                    \"shipment_product_weight\": \"9.8438\"\n                                }\n                            }\n                        }\n                    ]\n                }\n            ],\n            \"totalOrders\": 1\n        }\n    }\n}"}],"_postman_id":"c9087f4a-26b0-48d9-9bfd-790cb72b83e0"},{"name":"Order Shipment Details","id":"ebbe4b07-9c84-4cb0-afaf-fbb0ba120c68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query orderShipmentDetails ($orders_id: Int) {\n    orderShipmentDetails (orders_id: $orders_id) {\n        orderShipmentDetails {\n            shipment_tracking_number\n            shipment_company\n            shipment_total_weight\n            shipment_package\n        }\n    }\n}","variables":"{\n  \"orders_id\": 1\n}"}},"url":"{{api_url}}","description":"<p>This API allows you to retrieve detailed shipment information for an order, including shipment details at both the order level and the product level.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Use this paramter is get particular order shipment details</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"64c56af8-8667-4ec1-a81e-3a33b8ef1eda","name":"Get Order Wise Shipment Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orderShipmentDetails ($orders_id: Int) {\n    orderShipmentDetails (orders_id: $orders_id) {\n        orderShipmentDetails {\n            shipment_tracking_number\n            shipment_company\n            shipment_total_weight\n            shipment_package\n        }\n    }\n}","variables":"{\n  \"orders_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 09:25:42 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"223"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orderShipmentDetails\": {\n            \"orderShipmentDetails\": [\n                {\n                    \"shipment_tracking_number\": \"TR323234\",\n                    \"shipment_company\": null,\n                    \"shipment_total_weight\": 40,\n                    \"shipment_package\": {\n                        \"1\": {\n                            \"length\": \"5\",\n                            \"width\": \"10\",\n                            \"height\": \"15\",\n                            \"shipment_products_id\": \"206,207\",\n                            \"shipment_product_name\": \"Banner Stand,Canvas\",\n                            \"shipment_product_weight\": \"15\"\n                        },\n                        \"2\": {\n                            \"length\": \"10\",\n                            \"width\": \"15\",\n                            \"height\": \"20\",\n                            \"shipment_products_id\": \"206,207\",\n                            \"shipment_product_name\": \"Banner Stand,Canvas\",\n                            \"shipment_product_weight\": \"25\"\n                        }\n                    }\n                }\n            ]\n        }\n    }\n}"},{"id":"717f6f05-0d83-4798-9837-06553390627a","name":"Get Order Product Wise Shipment Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orderShipmentDetails ($orders_id: Int) {\n    orderShipmentDetails (orders_id: $orders_id) {\n        orderShipmentDetails {\n            shipment_tracking_number\n            shipment_company\n            shipment_total_weight\n            shipment_package\n        }\n    }\n}","variables":"{\n  \"orders_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 09:27:02 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"263"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orderShipmentDetails\": {\n            \"orderShipmentDetails\": [\n                {\n                    \"shipment_tracking_number\": \"GH2323\",\n                    \"shipment_company\": null,\n                    \"shipment_total_weight\": 150,\n                    \"shipment_package\": {\n                        \"1\": {\n                            \"length\": \"5.5\",\n                            \"width\": \"6.6\",\n                            \"height\": \"7.7\",\n                            \"shipment_products_id\": \"208\",\n                            \"shipment_product_name\": \"Banner Stand\",\n                            \"shipment_product_weight\": \"10\"\n                        },\n                        \"2\": {\n                            \"length\": \"7.8\",\n                            \"width\": \"8.8\",\n                            \"height\": \"9.9\",\n                            \"shipment_products_id\": \"208\",\n                            \"shipment_product_name\": \"Banner Stand\",\n                            \"shipment_product_weight\": \"20\"\n                        },\n                        \"3\": {\n                            \"length\": \"15\",\n                            \"width\": \"20\",\n                            \"height\": \"15\",\n                            \"shipment_products_id\": \"209\",\n                            \"shipment_product_name\": \"Canvas\",\n                            \"shipment_product_weight\": \"50\"\n                        },\n                        \"4\": {\n                            \"length\": \"25\",\n                            \"width\": \"25\",\n                            \"height\": \"25\",\n                            \"shipment_products_id\": \"209\",\n                            \"shipment_product_name\": \"Canvas\",\n                            \"shipment_product_weight\": \"70\"\n                        }\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"ebbe4b07-9c84-4cb0-afaf-fbb0ba120c68"},{"name":"Get Batch","id":"21db3919-6959-450e-8be8-4c1d3d3ff9d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getBatch ($batch_id: Int, $search: String,  $limit: Int, $offset: Int) {\n    getBatch (batch_id: $batch_id, search: $search, limit: $limit, offset: $offset) {\n        batchDetails {\n            id\n            batch_name\n            nesting_size\n            nest_width\n            nest_height \n            print_count\n            print_instructions\n            finishing_instructions\n            front_print_filename\n            front_cut_filename\n            front_image_link\n            rear_print_filename\n            rear_cut_filename\n            rear_image_link\n            jobs\n        }\n        totalBatchDetails\n        currentCount\n    }\n}","variables":"{\n  \"limit\": 20\n}"}},"url":"{{api_url}}","description":"<p>This API allows you to retrieve detailed shipment information for an order, including shipment details at both the order level and the product level.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Use this paramter is get particular order shipment details</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21db3919-6959-450e-8be8-4c1d3d3ff9d1"},{"name":"Order and Order Product Statuses","id":"b9d2838a-88e8-45bf-977d-ca26758c985a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query orderStatus ($process_status_id: Int) {\n    orderStatus (process_status_id: $process_status_id) {\n        orderStatus {\n            process_status_id\n            process_status_title\n            status_type\n            process_status_set_as\n            process_status_internal\n        }\n        totalOrderStatus\n        currentCount\n    }\n}","variables":""}},"url":"{{api_url}}","description":"<p>The Statuses API provides access to a list of all available master statuses for orders and order products.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>process_status_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter is used to define order status process id.</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c3357770-4401-4a84-b022-2a6532f3c360","name":"Get All Status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orderStatus ($process_status_id: Int, $limit: Int, $offset: Int) {\n    orderStatus (process_status_id: $process_status_id, limit: $limit, offset: $offset) {\n        orderStatus {\n            process_status_id\n            process_status_title\n            status_type\n            process_status_set_as\n            process_status_internal\n        }\n        totalOrderStatus\n        currentCount\n    }\n}","variables":""}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 06:31:35 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"427"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orderStatus\": {\n            \"orderStatus\": [\n                {\n                    \"process_status_id\": 1,\n                    \"process_status_title\": \"Pending\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 27,\n                    \"process_status_title\": \"Cancelled\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Cancelled\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 28,\n                    \"process_status_title\": \"Refunded\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Cancelled\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 29,\n                    \"process_status_title\": \"Cancellation Request\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 14,\n                    \"process_status_title\": \"Shipped\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Shipped\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 13,\n                    \"process_status_title\": \"Ready for Pickup\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 2,\n                    \"process_status_title\": \"Order Processing\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 26,\n                    \"process_status_title\": \"Order Completed\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Completed\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 31,\n                    \"process_status_title\": \"Cancelled\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Cancelled\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 30,\n                    \"process_status_title\": \"Cancellation Request\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 32,\n                    \"process_status_title\": \"Awaiting Proof with Changes\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 33,\n                    \"process_status_title\": \"Proof Approved with Changes\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 25,\n                    \"process_status_title\": \"Ready for Shipment\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 24,\n                    \"process_status_title\": \"Proof Rejected\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 23,\n                    \"process_status_title\": \"Proof Approved\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 22,\n                    \"process_status_title\": \"Awaiting Artwork\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 21,\n                    \"process_status_title\": \"Awaiting Proof\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 20,\n                    \"process_status_title\": \"Awaiting Proof Approval\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 12,\n                    \"process_status_title\": \"Advance Finishing\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 10,\n                    \"process_status_title\": \"In Print Production\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 8,\n                    \"process_status_title\": \"File Review\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                },\n                {\n                    \"process_status_id\": 34,\n                    \"process_status_title\": \"Refunded\",\n                    \"status_type\": \"Product\",\n                    \"process_status_set_as\": \"Cancelled\",\n                    \"process_status_internal\": 0\n                }\n            ],\n            \"totalOrderStatus\": 22\n        }\n    }\n}"},{"id":"4b24c7ed-da4d-46a1-95e4-662644c16407","name":"Get Specific Status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query orderStatus ($process_status_id: Int, $limit: Int, $offset: Int) {\n    orderStatus (process_status_id: $process_status_id, limit: $limit, offset: $offset) {\n        orderStatus {\n            process_status_id\n            process_status_title\n            status_type\n            process_status_set_as\n            process_status_internal\n        }\n        totalOrderStatus\n        currentCount\n    }\n}","variables":"{\n  \"process_status_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 May 2024 06:32:22 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"134"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"orderStatus\": {\n            \"orderStatus\": [\n                {\n                    \"process_status_id\": 2,\n                    \"process_status_title\": \"Order Processing\",\n                    \"status_type\": \"Order\",\n                    \"process_status_set_as\": \"Normal\",\n                    \"process_status_internal\": 0\n                }\n            ],\n            \"totalOrderStatus\": 1\n        }\n    }\n}"}],"_postman_id":"b9d2838a-88e8-45bf-977d-ca26758c985a"},{"name":"ShipTo Multiple Address","id":"64978a5a-1905-42a4-8797-b99204fe853a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query shipToMultipleAddress ($order_id: Int) {\n    shipToMultipleAddress (order_id: $order_id) {\n        shipToMultipleAddress {\n\t\t\tship_to_multiple_address_shipping_type_id,\n            ship_to_multiple_address_shipping_price,\n\t\t\tship_to_multiple_address_shipping_name,\n\t\t\tship_to_multiple_address_shipping_mode,\n\t\t\tship_to_multiple_address_production_due_date,\n\t\t\tship_to_multiple_address_shipment_due_date,\n\t\t\tship_to_multiple_address_product_details,\n\t\t\tship_to_multiple_address_delivery_name,\n\t\t\tship_to_multiple_address_delivery_company,\n\t\t\tship_to_multiple_address_delivery_street_address,\n\t\t\tship_to_multiple_address_delivery_suburb,\n\t\t\tship_to_multiple_address_delivery_city,\n\t\t\tship_to_multiple_address_delivery_postcode,\n\t\t\tship_to_multiple_address_delivery_state,\n\t\t\tship_to_multiple_address_delivery_country,\n\t\t\tship_to_multiple_address_delivery_telephone,\n\t\t\tship_to_multiple_address_blind_address,\n\t\t\tship_to_multiple_address_extra_field\n        }\n    }\n}","variables":"{\n  \"order_id\": 1\n}"}},"url":"{{api_url}}","description":"<p>This API endpoint allows you to get the particular order ship to multiple address information.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Use this parameter to get the particular order ship to multiple info</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"41070f92-9311-4ec7-bc0e-c15cb8c30ccb","name":"Ship To Multiple Address Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query shipToMultipleAddress ($order_id: Int) {\n    shipToMultipleAddress (order_id: $order_id) {\n        shipToMultipleAddress {\n\t\t\tship_to_multiple_address_shipping_type_id,\n            ship_to_multiple_address_shipping_price,\n\t\t\tship_to_multiple_address_shipping_name,\n\t\t\tship_to_multiple_address_shipping_mode,\n\t\t\tship_to_multiple_address_production_due_date,\n\t\t\tship_to_multiple_address_shipment_due_date,\n\t\t\tship_to_multiple_address_product_details,\n\t\t\tship_to_multiple_address_delivery_name,\n\t\t\tship_to_multiple_address_delivery_company,\n\t\t\tship_to_multiple_address_delivery_street_address,\n\t\t\tship_to_multiple_address_delivery_suburb,\n\t\t\tship_to_multiple_address_delivery_city,\n\t\t\tship_to_multiple_address_delivery_postcode,\n\t\t\tship_to_multiple_address_delivery_state,\n\t\t\tship_to_multiple_address_delivery_country,\n\t\t\tship_to_multiple_address_delivery_telephone,\n\t\t\tship_to_multiple_address_blind_address,\n\t\t\tship_to_multiple_address_extra_field\n        }\n    }\n}","variables":"{\n  \"order_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 08:17:14 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"721"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"shipToMultipleAddress\": {\n            \"shipToMultipleAddress\": [\n                {\n                    \"ship_to_multiple_address_shipping_type_id\": 1,\n                    \"ship_to_multiple_address_shipping_price\": 50,\n                    \"ship_to_multiple_address_shipping_name\": \"Weight Based\",\n                    \"ship_to_multiple_address_shipping_mode\": \"Expedite\",\n                    \"ship_to_multiple_address_production_due_date\": \"2024-05-29\",\n                    \"ship_to_multiple_address_shipment_due_date\": \"2024-06-03\",\n                    \"ship_to_multiple_address_product_details\": [\n                        {\n                            \"product_id\": 7,\n                            \"size_id\": 8,\n                            \"size_title\": \"17x11_Half-fold\",\n                            \"quantity\": \"75\",\n                            \"weight\": 14.5546875,\n                            \"production_days\": 3,\n                            \"actual_production_days\": 2,\n                            \"product_title\": \"Brochures\",\n                            \"cart_design_name\": \"326165\",\n                            \"order_product_id\": 204,\n                            \"size_details\": {\n                                \"width\": 17.25,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            }\n                        }\n                    ],\n                    \"ship_to_multiple_address_delivery_name\": \"Howard Watkins\",\n                    \"ship_to_multiple_address_delivery_company\": \"Test Company\",\n                    \"ship_to_multiple_address_delivery_street_address\": \"647 Vandervort Haven\",\n                    \"ship_to_multiple_address_delivery_suburb\": \"Port Tyron\",\n                    \"ship_to_multiple_address_delivery_city\": \"Alabama\",\n                    \"ship_to_multiple_address_delivery_postcode\": \"74645\",\n                    \"ship_to_multiple_address_delivery_state\": \"Alabama\",\n                    \"ship_to_multiple_address_delivery_country\": \"United States\",\n                    \"ship_to_multiple_address_delivery_telephone\": \"99988899999\",\n                    \"ship_to_multiple_address_blind_address\": null,\n                    \"ship_to_multiple_address_extra_field\": []\n                },\n                {\n                    \"ship_to_multiple_address_shipping_type_id\": 2,\n                    \"ship_to_multiple_address_shipping_price\": 100,\n                    \"ship_to_multiple_address_shipping_name\": \"Weight Based\",\n                    \"ship_to_multiple_address_shipping_mode\": \"Ground\",\n                    \"ship_to_multiple_address_production_due_date\": \"2024-05-29\",\n                    \"ship_to_multiple_address_shipment_due_date\": \"2024-06-03\",\n                    \"ship_to_multiple_address_product_details\": [\n                        {\n                            \"product_id\": 7,\n                            \"size_id\": 8,\n                            \"size_title\": \"17x11_Half-fold\",\n                            \"quantity\": \"25\",\n                            \"weight\": 4.8515625,\n                            \"production_days\": 3,\n                            \"actual_production_days\": 2,\n                            \"product_title\": \"Brochures\",\n                            \"cart_design_name\": \"326165\",\n                            \"order_product_id\": 204,\n                            \"size_details\": {\n                                \"width\": 17.25,\n                                \"height\": 11.25,\n                                \"length\": 0,\n                                \"unit\": \"inch\"\n                            }\n                        }\n                    ],\n                    \"ship_to_multiple_address_delivery_name\": \"Sean Preston\",\n                    \"ship_to_multiple_address_delivery_company\": \"Haxxor\",\n                    \"ship_to_multiple_address_delivery_street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                    \"ship_to_multiple_address_delivery_suburb\": \"Zuid Steenovenrecht\",\n                    \"ship_to_multiple_address_delivery_city\": \"Cura Cabai\",\n                    \"ship_to_multiple_address_delivery_postcode\": \"64015\",\n                    \"ship_to_multiple_address_delivery_state\": \"Aruba\",\n                    \"ship_to_multiple_address_delivery_country\": \"Netherlands\",\n                    \"ship_to_multiple_address_delivery_telephone\": \"852963178\",\n                    \"ship_to_multiple_address_blind_address\": null,\n                    \"ship_to_multiple_address_extra_field\": [\n                        {\n                            \"label\": \"File\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"64978a5a-1905-42a4-8797-b99204fe853a"}],"id":"25c4c4f8-d284-4c8d-a912-b822e2580390","_postman_id":"25c4c4f8-d284-4c8d-a912-b822e2580390","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"Customers","item":[{"name":"Customers","id":"7f848abb-5953-43f5-89a3-736c305ef805","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customers ($email: String, $from_date: String, $to_date: String, $date_type: CustomerDateTypeEnum, $limit: Int, $offset: Int) {\n    customers (email: $email, from_date: $from_date, to_date: $to_date, date_type: $date_type, limit: $limit, offset: $offset) {\n        customers {\n            userid\n            user_type\n            external_ref\n            customers_name\n            customers_first_name\n            customers_last_name\n            customers_company\n            customers_telephone\n            customers_email_address\n            customers_corporate_name\n            customers_status\n            customers_payon_enable\n            customers_pay_limit\n            customers_balance_amount\n            customers_department_name\n            customers_user_group_name\n            customers_register_date\n            customers_username\n            customers_secondary_emails\n            reward_points\n\t\t\taddress_detail {\n\t\t\t\tname\n\t\t\t\tfirst_name\n\t\t\t\tlast_name\n\t\t\t\tcompany\n\t\t\t\tstreet_address\n\t\t\t\tsuburb\n\t\t\t\tcity\n\t\t\t\tpostcode\n\t\t\t\tstate\n\t\t\t\tcountry\n\t\t\t\ttelephone\n\t\t\t\taddress_type\n\t\t\t\tis_default_address\n\t\t\t\textrafield\n\t\t\t}\n        }\n        totalCustomers\n        currentCount\n    }\n}","variables":"{\n    \n    \"limit\" : 50\n}"}},"url":"{{api_url}}","description":"<p>This API allows you to retrieve detailed information about all customers.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>email</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This paramter is used to filter the records by Email Id</td>\n<td><a href=\"https://mailto:BrianFarrell@test.com\">BrianFarrell@test.com</a></td>\n</tr>\n<tr>\n<td><code>from_date</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>This parameter is used to define starting from date.</td>\n<td>2024-05-21</td>\n</tr>\n<tr>\n<td><code>to_date</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This paramter is used to define ending to date.</td>\n<td>2024-05-21</td>\n</tr>\n<tr>\n<td><code>date_type</code></td>\n<td>No</td>\n<td><em>Enum</em></td>\n<td>This parameter allows you to specify whether you want to see data based on <strong>login dates</strong> or <strong>registration dates</strong>.  <br />  <br />If you do not provide a date_type parameter, the API will default to returning records filtered by the user's registration date.</td>\n<td>login / registration</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter specifies the maximum number of records to return in a single API.</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userid</code></td>\n<td><em>Int</em></td>\n<td>Customer user ID</td>\n</tr>\n<tr>\n<td><code>user_type</code></td>\n<td><em>String</em></td>\n<td>Store type of the customer</td>\n</tr>\n<tr>\n<td><code>customers_name</code></td>\n<td><em>String</em></td>\n<td>Full name of the customer</td>\n</tr>\n<tr>\n<td><code>customers_first_name</code></td>\n<td><em>String</em></td>\n<td>First name</td>\n</tr>\n<tr>\n<td><code>customers_last_name</code></td>\n<td><em>String</em></td>\n<td>Last name</td>\n</tr>\n<tr>\n<td><code>customers_company</code></td>\n<td><em>String</em></td>\n<td>Company name</td>\n</tr>\n<tr>\n<td><code>customers_telephone</code></td>\n<td><em>String</em></td>\n<td>Telephone number</td>\n</tr>\n<tr>\n<td><code>customers_email_address</code></td>\n<td><em>String</em></td>\n<td>Email address</td>\n</tr>\n<tr>\n<td><code>customers_corporate_name</code></td>\n<td><em>String</em></td>\n<td>Corporate/franchise store name (nullable)</td>\n</tr>\n<tr>\n<td><code>customers_status</code></td>\n<td><em>String</em></td>\n<td>Account status (Active/Inactive)</td>\n</tr>\n<tr>\n<td><code>customers_payon_enable</code></td>\n<td><em>Boolean</em></td>\n<td>Whether pay-on-account is enabled</td>\n</tr>\n<tr>\n<td><code>customers_pay_limit</code></td>\n<td><em>Int</em></td>\n<td>Pay-on-account credit limit</td>\n</tr>\n<tr>\n<td><code>customers_balance_amount</code></td>\n<td><em>Int</em></td>\n<td>Current balance amount</td>\n</tr>\n<tr>\n<td><code>customers_department_name</code></td>\n<td><em>String</em></td>\n<td>Department name (nullable)</td>\n</tr>\n<tr>\n<td><code>customers_user_group_name</code></td>\n<td><em>String</em></td>\n<td>User group name</td>\n</tr>\n<tr>\n<td><code>customers_register_date</code></td>\n<td><em>String</em></td>\n<td>Registration date</td>\n</tr>\n<tr>\n<td><code>customers_username</code></td>\n<td><em>String</em></td>\n<td>Username (nullable)</td>\n</tr>\n<tr>\n<td><code>customers_secondary_emails</code></td>\n<td><em>String</em></td>\n<td>Secondary email addresses (nullable)</td>\n</tr>\n<tr>\n<td><code>reward_points</code></td>\n<td><em>Int</em></td>\n<td>Reward points balance</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td><em>String</em></td>\n<td>External reference identifier for third-party system integration (nullable, max 255 characters)</td>\n</tr>\n<tr>\n<td><code>address_detail</code></td>\n<td><em>Array</em></td>\n<td>List of customer addresses</td>\n</tr>\n<tr>\n<td><code>totalCustomers</code></td>\n<td><em>Int</em></td>\n<td>Total count of customers matching the query</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"9b74b67f-5ea9-431b-8a90-64fc44aab4f1","name":"Get Customer Details by Email-Id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query customers ($email: String, $from_date: String, $to_date: String, $date_type: CustomerDateTypeEnum, $limit: Int, $offset: Int) {\n    customers (email: $email, from_date: $from_date, to_date: $to_date, date_type: $date_type, limit: $limit, offset: $offset) {\n        customers {\n            userid\n            user_type\n            customers_name\n            customers_first_name\n            customers_last_name\n            customers_company\n            customers_telephone\n            extrafield\n            customers_email_address\n            customers_corporate_name\n            customers_status\n            customers_payon_enable\n            customers_pay_limit\n            customers_balance_amount\n            customers_department_name\n            customers_user_group_name\n            customers_register_date\n            customers_username\n            customers_secondary_emails\n            reward_points\n\t\t\taddress_detail {\n\t\t\t\tname\n\t\t\t\tfirst_name\n\t\t\t\tlast_name\n\t\t\t\tcompany\n\t\t\t\tstreet_address\n\t\t\t\tsuburb\n\t\t\t\tcity\n\t\t\t\tpostcode\n\t\t\t\tstate\n\t\t\t\tcountry\n\t\t\t\ttelephone\n\t\t\t\taddress_type\n\t\t\t\tis_default_address\n\t\t\t\textrafield\n\t\t\t}\n        }\n        totalCustomers\n        currentCount\n    }\n}","variables":"{\n\t\"email\": \"HowardWatkins@test.com\"\n}"}},"url":"http://ops11latest.localhost/api/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 06:53:47 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"801"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customers\": {\n            \"customers\": [\n                {\n                    \"userid\": 6,\n                    \"user_type\": \"Default Store\",\n                    \"customers_name\": \"Howard Watkins\",\n                    \"customers_first_name\": \"Howard\",\n                    \"customers_last_name\": \"Watkins\",\n                    \"customers_company\": \"TECHNO\",\n                    \"customers_telephone\": \"99988899999\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"customers_email_address\": \"HowardWatkins@test.com\",\n                    \"customers_corporate_name\": null,\n                    \"customers_status\": \"Active\",\n                    \"customers_payon_enable\": true,\n                    \"customers_pay_limit\": 100000000,\n                    \"customers_balance_amount\": 0,\n                    \"customers_department_name\": null,\n                    \"customers_user_group_name\": \"Prime Group\",\n                    \"customers_register_date\": \"2024-05-24 06:39:44\",\n                    \"customers_username\": null,\n                    \"customers_secondary_emails\": \"DeboraSnow@test.com\",\n                    \"reward_points\": 0,\n                    \"address_detail\": [\n                        {\n                            \"name\": \"Howard Watkins\",\n                            \"first_name\": \"Howard\",\n                            \"last_name\": \"Watkins\",\n                            \"company\": \"Test Company\",\n                            \"street_address\": \"647 Vandervort Haven\",\n                            \"suburb\": \"Port Tyron\",\n                            \"city\": \"Alabama\",\n                            \"postcode\": \"74645\",\n                            \"state\": \"Alabama\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"99988899999\",\n                            \"address_type\": \"Both\",\n                            \"is_default_address\": \"Yes\",\n                            \"extrafield\": []\n                        },\n                        {\n                            \"name\": \"Irene Warren\",\n                            \"first_name\": \"Irene\",\n                            \"last_name\": \"Warren\",\n                            \"company\": \"SYSMG\",\n                            \"street_address\": \"207 Ullrich Throughway\",\n                            \"suburb\": \"Ravenborough\",\n                            \"city\": \"Oklahoma\",\n                            \"postcode\": \"17931-2882\",\n                            \"state\": \"Oklahoma\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"8987418523\",\n                            \"address_type\": \"Billing\",\n                            \"is_default_address\": \"No\",\n                            \"extrafield\": []\n                        },\n                        {\n                            \"name\": \"Sean Preston\",\n                            \"first_name\": \"Sean\",\n                            \"last_name\": \"Preston\",\n                            \"company\": \"Haxxor\",\n                            \"street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                            \"suburb\": \"Zuid Steenovenrecht\",\n                            \"city\": \"Cura Cabai\",\n                            \"postcode\": \"64015\",\n                            \"state\": \"Aruba\",\n                            \"country\": \"Netherlands\",\n                            \"telephone\": \"852963178\",\n                            \"address_type\": \"Shipping\",\n                            \"is_default_address\": \"No\",\n                            \"extrafield\": []\n                        }\n                    ]\n                }\n            ],\n            \"totalCustomers\": 1\n        }\n    }\n}"},{"id":"ddfcf70a-727c-4dc1-95b8-eadef4fcc395","name":"Get Customers Details by From and To Date","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query customers ($email: String, $from_date: String, $to_date: String, $date_type: CustomerDateTypeEnum, $limit: Int, $offset: Int) {\n    customers (email: $email, from_date: $from_date, to_date: $to_date, date_type: $date_type, limit: $limit, offset: $offset) {\n        customers {\n            userid\n            user_type\n            customers_name\n            customers_first_name\n            customers_last_name\n            customers_company\n            customers_telephone\n            extrafield\n            customers_email_address\n            customers_corporate_name\n            customers_status\n            customers_payon_enable\n            customers_pay_limit\n            customers_balance_amount\n            customers_department_name\n            customers_user_group_name\n            customers_register_date\n            customers_username\n            customers_secondary_emails\n            reward_points\n\t\t\taddress_detail {\n\t\t\t\tname\n\t\t\t\tfirst_name\n\t\t\t\tlast_name\n\t\t\t\tcompany\n\t\t\t\tstreet_address\n\t\t\t\tsuburb\n\t\t\t\tcity\n\t\t\t\tpostcode\n\t\t\t\tstate\n\t\t\t\tcountry\n\t\t\t\ttelephone\n\t\t\t\taddress_type\n\t\t\t\tis_default_address\n\t\t\t\textrafield\n\t\t\t}\n        }\n        totalCustomers\n        currentCount\n    }\n}","variables":"{\n\t\"from_date\": \"2024-05-23\",\n\t\"to_date\": \"2024-05-24\"\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 07:11:09 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"1158"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customers\": {\n            \"customers\": [\n                {\n                    \"userid\": 6,\n                    \"user_type\": \"Default Store\",\n                    \"customers_name\": \"Howard Watkins\",\n                    \"customers_first_name\": \"Howard\",\n                    \"customers_last_name\": \"Watkins\",\n                    \"customers_company\": \"TECHNO\",\n                    \"customers_telephone\": \"99988899999\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"customers_email_address\": \"HowardWatkins@test.com\",\n                    \"customers_corporate_name\": null,\n                    \"customers_status\": \"Active\",\n                    \"customers_payon_enable\": true,\n                    \"customers_pay_limit\": 100000000,\n                    \"customers_balance_amount\": 0,\n                    \"customers_department_name\": null,\n                    \"customers_user_group_name\": \"Prime Group\",\n                    \"customers_register_date\": \"2024-05-24 06:39:44\",\n                    \"customers_username\": null,\n                    \"customers_secondary_emails\": \"DeboraSnow@test.com\",\n                    \"reward_points\": 0,\n                    \"address_detail\": [\n                        {\n                            \"name\": \"Howard Watkins\",\n                            \"first_name\": \"Howard\",\n                            \"last_name\": \"Watkins\",\n                            \"company\": \"Test Company\",\n                            \"street_address\": \"647 Vandervort Haven\",\n                            \"suburb\": \"Port Tyron\",\n                            \"city\": \"Alabama\",\n                            \"postcode\": \"74645\",\n                            \"state\": \"Alabama\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"99988899999\",\n                            \"address_type\": \"Both\",\n                            \"is_default_address\": \"Yes\",\n                            \"extrafield\": []\n                        },\n                        {\n                            \"name\": \"Irene Warren\",\n                            \"first_name\": \"Irene\",\n                            \"last_name\": \"Warren\",\n                            \"company\": \"SYSMG\",\n                            \"street_address\": \"207 Ullrich Throughway\",\n                            \"suburb\": \"Ravenborough\",\n                            \"city\": \"Oklahoma\",\n                            \"postcode\": \"17931-2882\",\n                            \"state\": \"Oklahoma\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"8987418523\",\n                            \"address_type\": \"Billing\",\n                            \"is_default_address\": \"No\",\n                            \"extrafield\": []\n                        },\n                        {\n                            \"name\": \"Sean Preston\",\n                            \"first_name\": \"Sean\",\n                            \"last_name\": \"Preston\",\n                            \"company\": \"Haxxor\",\n                            \"street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                            \"suburb\": \"Zuid Steenovenrecht\",\n                            \"city\": \"Cura Cabai\",\n                            \"postcode\": \"64015\",\n                            \"state\": \"Aruba\",\n                            \"country\": \"Netherlands\",\n                            \"telephone\": \"852963178\",\n                            \"address_type\": \"Shipping\",\n                            \"is_default_address\": \"No\",\n                            \"extrafield\": []\n                        }\n                    ]\n                },\n                {\n                    \"userid\": 7,\n                    \"user_type\": \"Default Store\",\n                    \"customers_name\": \"Brian Farrell\",\n                    \"customers_first_name\": \"Brian\",\n                    \"customers_last_name\": \"Farrell\",\n                    \"customers_company\": \"Wirels\",\n                    \"customers_telephone\": \"(917) 498-7903\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"customers_email_address\": \"BrianFarrell@test.com\",\n                    \"customers_corporate_name\": null,\n                    \"customers_status\": \"Active\",\n                    \"customers_payon_enable\": true,\n                    \"customers_pay_limit\": 77777777,\n                    \"customers_balance_amount\": 0,\n                    \"customers_department_name\": null,\n                    \"customers_user_group_name\": \"Prime Group\",\n                    \"customers_register_date\": \"2024-05-24 07:06:00\",\n                    \"customers_username\": null,\n                    \"customers_secondary_emails\": null,\n                    \"reward_points\": 0,\n                    \"address_detail\": [\n                        {\n                            \"name\": \"Brian Farrell\",\n                            \"first_name\": \"Brian\",\n                            \"last_name\": \"Farrell\",\n                            \"company\": \"TECHNO\",\n                            \"street_address\": \"756 Schowalter Knolls\",\n                            \"suburb\": \"Codyberg\",\n                            \"city\": \"Santa Fe\",\n                            \"postcode\": \"40822\",\n                            \"state\": \"New Mexico\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"(917) 498-7903\",\n                            \"address_type\": \"Both\",\n                            \"is_default_address\": \"Yes\",\n                            \"extrafield\": []\n                        }\n                    ]\n                },\n                {\n                    \"userid\": 8,\n                    \"user_type\": \"Franchise Store\",\n                    \"customers_name\": \"Edith Dodson\",\n                    \"customers_first_name\": \"Edith\",\n                    \"customers_last_name\": \"Dodson\",\n                    \"customers_company\": \"Cybth\",\n                    \"customers_telephone\": \"+44 09502 035218\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"customers_email_address\": \"EdithDodson@test.com\",\n                    \"customers_corporate_name\": \"Franchise Store\",\n                    \"customers_status\": \"Active\",\n                    \"customers_payon_enable\": true,\n                    \"customers_pay_limit\": 555555,\n                    \"customers_balance_amount\": 0,\n                    \"customers_department_name\": null,\n                    \"customers_user_group_name\": \"Prime Group\",\n                    \"customers_register_date\": \"2024-05-24 07:09:11\",\n                    \"customers_username\": null,\n                    \"customers_secondary_emails\": null,\n                    \"reward_points\": 0,\n                    \"address_detail\": [\n                        {\n                            \"name\": \"Edith Dodson\",\n                            \"first_name\": \"Edith\",\n                            \"last_name\": \"Dodson\",\n                            \"company\": \"Cybth\",\n                            \"street_address\": \"Mulckhuijselaan 4\",\n                            \"suburb\": \"Oud Koekensland\",\n                            \"city\": \"Amsterdam\",\n                            \"postcode\": \"1860\",\n                            \"state\": \"North Holland\",\n                            \"country\": \"Netherlands\",\n                            \"telephone\": \"+44 09502 035218\",\n                            \"address_type\": \"Both\",\n                            \"is_default_address\": \"Yes\",\n                            \"extrafield\": []\n                        }\n                    ]\n                }\n            ],\n            \"totalCustomers\": 3\n        }\n    }\n}"},{"id":"cf06a8af-a6d6-4de1-b4f1-919fee19a0c1","name":"Get Customers Details by Date Type Login","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query customers ($email: String, $from_date: String, $to_date: String, $date_type: CustomerDateTypeEnum, $limit: Int, $offset: Int) {\n    customers (email: $email, from_date: $from_date, to_date: $to_date, date_type: $date_type, limit: $limit, offset: $offset) {\n        customers {\n            userid\n            user_type\n            customers_name\n            customers_first_name\n            customers_last_name\n            customers_company\n            customers_telephone\n            extrafield\n            customers_email_address\n            customers_corporate_name\n            customers_status\n            customers_payon_enable\n            customers_pay_limit\n            customers_balance_amount\n            customers_department_name\n            customers_user_group_name\n            customers_register_date\n            customers_username\n            customers_secondary_emails\n            reward_points\n\t\t\taddress_detail {\n\t\t\t\tname\n\t\t\t\tfirst_name\n\t\t\t\tlast_name\n\t\t\t\tcompany\n\t\t\t\tstreet_address\n\t\t\t\tsuburb\n\t\t\t\tcity\n\t\t\t\tpostcode\n\t\t\t\tstate\n\t\t\t\tcountry\n\t\t\t\ttelephone\n\t\t\t\taddress_type\n\t\t\t\tis_default_address\n\t\t\t\textrafield\n\t\t\t}\n        }\n        totalCustomers\n        currentCount\n    }\n}","variables":"{\n\t\"from_date\": \"2024-05-23\",\n\t\"to_date\": \"2024-05-24\",\n\t\"date_type\": \"login\"\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 07:17:42 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"982"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customers\": {\n            \"customers\": [\n                {\n                    \"userid\": 6,\n                    \"user_type\": \"Default Store\",\n                    \"customers_name\": \"Howard Watkins\",\n                    \"customers_first_name\": \"Howard\",\n                    \"customers_last_name\": \"Watkins\",\n                    \"customers_company\": \"TECHNO\",\n                    \"customers_telephone\": \"99988899999\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"customers_email_address\": \"HowardWatkins@test.com\",\n                    \"customers_corporate_name\": null,\n                    \"customers_status\": \"Active\",\n                    \"customers_payon_enable\": true,\n                    \"customers_pay_limit\": 100000000,\n                    \"customers_balance_amount\": 0,\n                    \"customers_department_name\": null,\n                    \"customers_user_group_name\": \"Prime Group\",\n                    \"customers_register_date\": \"2024-05-24 06:39:44\",\n                    \"customers_username\": null,\n                    \"customers_secondary_emails\": \"DeboraSnow@test.com\",\n                    \"reward_points\": 0,\n                    \"address_detail\": [\n                        {\n                            \"name\": \"Howard Watkins\",\n                            \"first_name\": \"Howard\",\n                            \"last_name\": \"Watkins\",\n                            \"company\": \"Test Company\",\n                            \"street_address\": \"647 Vandervort Haven\",\n                            \"suburb\": \"Port Tyron\",\n                            \"city\": \"Alabama\",\n                            \"postcode\": \"74645\",\n                            \"state\": \"Alabama\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"99988899999\",\n                            \"address_type\": \"Both\",\n                            \"is_default_address\": \"Yes\",\n                            \"extrafield\": []\n                        },\n                        {\n                            \"name\": \"Irene Warren\",\n                            \"first_name\": \"Irene\",\n                            \"last_name\": \"Warren\",\n                            \"company\": \"SYSMG\",\n                            \"street_address\": \"207 Ullrich Throughway\",\n                            \"suburb\": \"Ravenborough\",\n                            \"city\": \"Oklahoma\",\n                            \"postcode\": \"17931-2882\",\n                            \"state\": \"Oklahoma\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"8987418523\",\n                            \"address_type\": \"Billing\",\n                            \"is_default_address\": \"No\",\n                            \"extrafield\": []\n                        },\n                        {\n                            \"name\": \"Sean Preston\",\n                            \"first_name\": \"Sean\",\n                            \"last_name\": \"Preston\",\n                            \"company\": \"Haxxor\",\n                            \"street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                            \"suburb\": \"Zuid Steenovenrecht\",\n                            \"city\": \"Cura Cabai\",\n                            \"postcode\": \"64015\",\n                            \"state\": \"Aruba\",\n                            \"country\": \"Netherlands\",\n                            \"telephone\": \"852963178\",\n                            \"address_type\": \"Shipping\",\n                            \"is_default_address\": \"No\",\n                            \"extrafield\": []\n                        }\n                    ]\n                },\n                {\n                    \"userid\": 7,\n                    \"user_type\": \"Default Store\",\n                    \"customers_name\": \"Brian Farrell\",\n                    \"customers_first_name\": \"Brian\",\n                    \"customers_last_name\": \"Farrell\",\n                    \"customers_company\": \"Wirels\",\n                    \"customers_telephone\": \"(917) 498-7903\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"Profle Picture\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        },\n                        {\n                            \"label\": \"Gender\",\n                            \"value\": \"Male\"\n                        }\n                    ],\n                    \"customers_email_address\": \"BrianFarrell@test.com\",\n                    \"customers_corporate_name\": null,\n                    \"customers_status\": \"Active\",\n                    \"customers_payon_enable\": true,\n                    \"customers_pay_limit\": 77777777,\n                    \"customers_balance_amount\": 0,\n                    \"customers_department_name\": null,\n                    \"customers_user_group_name\": \"Prime Group\",\n                    \"customers_register_date\": \"2024-05-24 07:06:00\",\n                    \"customers_username\": null,\n                    \"customers_secondary_emails\": null,\n                    \"reward_points\": 0,\n                    \"address_detail\": [\n                        {\n                            \"name\": \"Brian Farrell\",\n                            \"first_name\": \"Brian\",\n                            \"last_name\": \"Farrell\",\n                            \"company\": \"TECHNO\",\n                            \"street_address\": \"756 Schowalter Knolls\",\n                            \"suburb\": \"Codyberg\",\n                            \"city\": \"Santa Fe\",\n                            \"postcode\": \"40822\",\n                            \"state\": \"New Mexico\",\n                            \"country\": \"United States\",\n                            \"telephone\": \"(917) 498-7903\",\n                            \"address_type\": \"Both\",\n                            \"is_default_address\": \"Yes\",\n                            \"extrafield\": []\n                        }\n                    ]\n                }\n            ],\n            \"totalCustomers\": 2\n        }\n    }\n}"}],"_postman_id":"7f848abb-5953-43f5-89a3-736c305ef805"},{"name":"Get User Basket","id":"a5b55dc4-563a-4a03-871a-2fe59b34f38d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getUserBasket( $user_id: Int!) {\n  getUserBasket( user_id: $user_id ) {\n    baskets {\n        basket_id\n        user_id\n        cart_detail\n        cart_count\n        date\n    }\n    totalBaskets\n  }\n}\n","variables":"{\n\t\"user_id\": 1\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5b55dc4-563a-4a03-871a-2fe59b34f38d"},{"name":"Customer Address Details","id":"935fbbc5-06f1-4dbd-bf42-7c11d1aaba71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query customerAddressDetails ($user_id: Int) {\n    customerAddressDetails (user_id: $user_id) {\n        customerAddressDetails {\n            address_book_id,\n\t\t\tname,\n            first_name,\n\t\t\tlast_name,\n\t\t\tcompany,\n\t\t\tstreet_address,\n\t\t\tsuburb,\n\t\t\tcity,\n\t\t\tpostcode,\n\t\t\tstate,\n\t\t\tcountry,\n\t\t\ttelephone,\n\t\t\taddress_type,\n\t\t\tis_default_address,\n\t\t\textrafield\n        }\n    }\n}","variables":"{\n  \"user_id\": 1\n}"}},"url":"{{api_url}}","description":"<p>This API endpoint allows you to retrieve customer address details, including shipping addresses, billing addresses, or both.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>user_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>This paramter is used to get the particular user address details</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"0d782d4c-57e1-471a-a580-1a5fde499824","name":"Customer Address Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query customerAddressDetails ($user_id: Int) {\n    customerAddressDetails (user_id: $user_id) {\n        customerAddressDetails {\n\t\t\tname,\n            first_name,\n\t\t\tlast_name,\n\t\t\tcompany,\n\t\t\tstreet_address,\n\t\t\tsuburb,\n\t\t\tcity,\n\t\t\tpostcode,\n\t\t\tstate,\n\t\t\tcountry,\n\t\t\ttelephone,\n\t\t\taddress_type,\n\t\t\tis_default_address,\n\t\t\textrafield\n        }\n    }\n}","variables":"{\n  \"user_id\": 1\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 08:07:09 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"582"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customerAddressDetails\": {\n            \"customerAddressDetails\": [\n                {\n                    \"name\": \"Howard Watkins\",\n                    \"first_name\": \"Howard\",\n                    \"last_name\": \"Watkins\",\n                    \"company\": \"Test Company\",\n                    \"street_address\": \"647 Vandervort Haven\",\n                    \"suburb\": \"Port Tyron\",\n                    \"city\": \"Alabama\",\n                    \"postcode\": \"74645\",\n                    \"state\": \"Alabama\",\n                    \"country\": \"United States\",\n                    \"telephone\": \"99988899999\",\n                    \"address_type\": \"Both\",\n                    \"is_default_address\": \"Yes\",\n                    \"extrafield\": []\n                },\n                {\n                    \"name\": \"Irene Warren\",\n                    \"first_name\": \"Irene\",\n                    \"last_name\": \"Warren\",\n                    \"company\": \"SYSMG\",\n                    \"street_address\": \"207 Ullrich Throughway\",\n                    \"suburb\": \"Ravenborough\",\n                    \"city\": \"Oklahoma\",\n                    \"postcode\": \"17931-2882\",\n                    \"state\": \"Oklahoma\",\n                    \"country\": \"United States\",\n                    \"telephone\": \"8987418523\",\n                    \"address_type\": \"Billing\",\n                    \"is_default_address\": \"No\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"File\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Sean Preston\",\n                    \"first_name\": \"Sean\",\n                    \"last_name\": \"Preston\",\n                    \"company\": \"Haxxor\",\n                    \"street_address\": \"1 hoog Haddemanplantsoen 624 I,\",\n                    \"suburb\": \"Zuid Steenovenrecht\",\n                    \"city\": \"Cura Cabai\",\n                    \"postcode\": \"64015\",\n                    \"state\": \"Aruba\",\n                    \"country\": \"Netherlands\",\n                    \"telephone\": \"852963178\",\n                    \"address_type\": \"Shipping\",\n                    \"is_default_address\": \"No\",\n                    \"extrafield\": [\n                        {\n                            \"label\": \"File\",\n                            \"value\": \"https://your.domain.com/image.jpg\"\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"935fbbc5-06f1-4dbd-bf42-7c11d1aaba71"}],"id":"71aa6a1f-21dc-49ef-bae6-3d563afc5c29","_postman_id":"71aa6a1f-21dc-49ef-bae6-3d563afc5c29","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"Store","item":[{"name":"Markup Master","id":"5c272588-f75e-4833-aa3c-b69954b269cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getStoreMarkup($corporate_markup_id: Int, $limit: Int, $offset: Int) {\n  getStoreMarkup(corporate_markup_id: $corporate_markup_id, limit: $limit, offset: $offset) {\n    storeMarkup {\n        corporate_markup_id\n        markup_title\n        markup_type\n        markup_by\n        markup_details\n        status\n        appliedon\n    }\n    totalStoreMarkup\n    currentCount\n  }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Retrieve store markup master records with pricing markup configurations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>corporate_markup_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by markup master ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by store/corporate ID</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter by status (0/1)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Maximum number of records to return</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Starting position of records to return</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>corporate_markup_id</code></td>\n<td><em>Int</em></td>\n<td>Markup master ID</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td><em>Int</em></td>\n<td>Store/corporate ID</td>\n</tr>\n<tr>\n<td><code>markup_type</code></td>\n<td><em>String</em></td>\n<td><code>\"0\"</code> = Fixed, <code>\"1\"</code> = Dynamic</td>\n</tr>\n<tr>\n<td><code>markup_title</code></td>\n<td><em>String</em></td>\n<td>Markup title</td>\n</tr>\n<tr>\n<td><code>markup_details</code></td>\n<td><em>JSON</em></td>\n<td>For Fixed: single percentage value (e.g. <code>\"5\"</code>). For Dynamic: bracket object (e.g. <code>{\"100\": \"10\", \"500\": \"7\", \"1000\": \"5\"}</code>) where key = upto, value = markup %</td>\n</tr>\n<tr>\n<td><code>markup_by</code></td>\n<td><em>String</em></td>\n<td>Lookup type for Dynamic brackets. <code>\"0\"</code> = Price, <code>\"1\"</code> = Quantity</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td><em>Int</em></td>\n<td>Status (0 = inactive, 1 = active)</td>\n</tr>\n<tr>\n<td><code>appliedon</code></td>\n<td><em>String</em></td>\n<td><code>\"0\"</code> = Base Price, <code>\"1\"</code> = Vendor Price</td>\n</tr>\n<tr>\n<td><code>totalStoreMarkup</code></td>\n<td><em>Int</em></td>\n<td>Total count of matching records</td>\n</tr>\n<tr>\n<td><code>currentCount</code></td>\n<td><em>Int</em></td>\n<td>Number of records in current page</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c272588-f75e-4833-aa3c-b69954b269cf"},{"name":"Store Address","id":"5c41d3df-9f9c-4bf2-9f12-9d467ccf05be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query storeaddress($corporate_id: Int, $corporate_address_id: Int, $limit: Int, $offset: Int) {\n    storeaddress(corporate_id: $corporate_id, corporate_address_id: $corporate_address_id, limit: $limit, offset: $offset) {\n        storeaddress {\n            office_name\n            corporate_address_id\n            address_flag\n            corporate_id\n            department_id\n            available_to\n            corporate_address\n            suburb\n            city\n            postcode\n            state\n            country\n            country_iso_code\n            phone_number\n            status\n            extrafield\n            receiver_name\n            companyname\n        }\n        totalStoreAddress\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c41d3df-9f9c-4bf2-9f12-9d467ccf05be"},{"name":"Store Details","id":"e140727d-e5b3-4db3-9925-21f7d42b15b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getStore($corporate_id: Int, $email: String, $status: Int, $limit: Int, $offset: Int) {\n  getStore(corporate_id: $corporate_id, email: $email, status: $status, limit: $limit, offset: $offset) {\n    store {\n        corporate_id\n        email\n        username\n        corporate_name\n        phone_number\n        status\n        tax_exempt\n        tax_exempt_type\n        order_approval\n        price_visible\n        price_text\n        department_module_enable\n        fix_billing_address\n        fix_shipping_address\n        manage_email_notification\n        main_url\n        created_on\n        modified_on\n        url_type\n        parent_corporate_id\n        manage_private_store\n        markup_type\n        flat_markup\n        corporate_markup_id\n        unassigned_products\n        production_days\n        display_in_company_list\n        department {\n            department_id\n            name\n            email_to\n            status\n            cost_center_code\n            production_days\n            created_on\n            modified_on\n        }\n    }\n    totalStore\n    currentCount\n  }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e140727d-e5b3-4db3-9925-21f7d42b15b5"},{"name":"Department Details","id":"414774c1-e029-4338-b54c-29febcaf694b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getDepartments($department_id: Int, $corporate_id: Int, $limit: Int, $offset: Int) {\n  getDepartments(department_id: $department_id, corporate_id: $corporate_id, limit: $limit, offset: $offset) {\n    departments {\n      department_id\n      corporate_id\n      name\n      email_to\n      status\n      cost_center_code\n      production_days\n      created_on\n      modified_on\n    }\n    totalDepartments\n    currentCount\n  }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"414774c1-e029-4338-b54c-29febcaf694b"},{"name":"Store Credit Summary","id":"b06a13e1-6ea6-4edf-b680-6a4dfe03d5a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query storeCreditSummary($storeid: Int, $user_id: Int, $limit: Int, $offset: Int) {\n  storeCreditSummary(storeid: $storeid, user_id: $user_id, limit: $limit, offset: $offset) {\n    storeCreditSummary {\n        user_id\n        storeid\n        customer_name\n        store_name\n        tran_type\n        transaction_msg\n        order_id\n        transaction_date_time\n        maintain_by\n        comments\n    }\n    totalStoreCreditSummary\n    remainingCredit\n    currentCount\n  }\n}","variables":"{\n    \"storeid\" : 9,\n\t\"limit\": 1,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b06a13e1-6ea6-4edf-b680-6a4dfe03d5a2"},{"name":"Account Summary","id":"152ebd47-0167-4bf4-96fe-4daa92a3f291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query accountSummary($storeid: Int, $limit: Int, $offset: Int) {\n  accountSummary(storeid: $storeid, limit: $limit, offset: $offset) {\n    accountSummary {\n        storeid\n        department_id\n        amount\n        type\n        comments\n        paymethod\n        duedate\n        term_title\n        date_added\n    }\n    totalAccountSummary\n    remainingInvoiceAmount\n    remainingPaidLimit\n    currentCount\n  }\n}","variables":"{\n    \"storeid\":14,\n\t\"limit\": 1,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"152ebd47-0167-4bf4-96fe-4daa92a3f291"}],"id":"f9656b40-e34a-4c98-8da3-d92032a18bee","_postman_id":"f9656b40-e34a-4c98-8da3-d92032a18bee","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"Quote","item":[{"name":"Get Quote","id":"88939a8a-2ff2-4d77-b166-ba1df1fe9b5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getQuote( $quote_id: Int, $user_id: Int, $limit: Int, $offset: Int) {\n  getQuote( quote_id: $quote_id, user_id: $user_id, limit: $limit, offset: $offset ) {\n    quote {\n        quote_id\n        user_id\n        quote_title\n        quote_price\n        quote_vendor_price\n        sort_order\n        quote_status\n        quote_date\n        admin_notes\n        quote_shipping_addr\n        quote_billing_addr\n        ship_amt\n        quote_tax_exampt\n        quoteproduct {\n            is_custom_product\n            quote_products_id\n            quote_id\n            products_id\n            products_title\n            quote_products_quantity\n            quote_products_price\n            quote_products_vendor_price\n            quote_products_info\n            products_prd_day\n            products_weight\n            quote_product_sku      \n            quote_product_notes\n            production_description\n        }\n    }\n    totalQuote\n    currentCount\n  }\n}\n","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"88939a8a-2ff2-4d77-b166-ba1df1fe9b5c"},{"name":"Get Quote Product","id":"48e1ced8-5e43-4edb-a677-eae582011fb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query quoteproduct($quote_id: Int,$quote_products_id: Int, $limit: Int, $offset: Int) {\n  quoteproduct(quote_id: $quote_id,quote_products_id: $quote_products_id, limit: $limit, offset: $offset) {\n    quoteproduct {\n      is_custom_product\n      quote_products_id\n      quote_id\n      products_id\n      products_title\n      quote_products_quantity\n      quote_products_price\n      quote_products_vendor_price\n      quote_products_info\n      products_prd_day\n      products_weight\n      quote_product_sku      \n      quote_product_notes\n    }\n    totalQuoteProduct\n    currentCount\n  }\n}\n","variables":"{\n    \"quote_products_id\" : 4764,\n\t\"limit\": 2,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48e1ced8-5e43-4edb-a677-eae582011fb6"}],"id":"c29c40be-26cc-407e-bfd9-18a30e541e41","_postman_id":"c29c40be-26cc-407e-bfd9-18a30e541e41","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"FAQ","item":[{"name":"FAQs","id":"65b5c741-c802-41a8-904b-ab2dbb1ecf7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query faq ($faq_id: Int,$faqcat_id: Int, $limit: Int, $offset: Int) {\n    faq (faq_id: $faq_id,faqcat_id: $faqcat_id, limit: $limit, offset: $offset) {\n        faq {\n            faq_id\n            faqcat_id\n            status\n            sort_order\n            faq_type\n            faq_question\n            faq_answer\n            faq_category_name\n            product_ids\n            category_ids\n        }\n        totalFaq\n        currentCount\n    }\n}","variables":"{\n\t\"limit\": 1,\n\t\"offset\": 1\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65b5c741-c802-41a8-904b-ab2dbb1ecf7f"},{"name":"FAQs Category","id":"6873ae9f-3f68-49df-a75a-17390813e013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getFaqCategory($faqcat_id: Int, $status: Int, $limit: Int, $offset: Int) {\n  getFaqCategory(faqcat_id: $faqcat_id, status: $status, limit: $limit, offset: $offset) {\n    faqCategory {\n      faqcat_id\n      status\n      sort_order\n      faq_category_name\n    }\n    totalFaqCategory\n    currentCount\n  }\n}","variables":"{\n\t\"limit\": 2,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6873ae9f-3f68-49df-a75a-17390813e013"}],"id":"c2df8264-f8e9-4e4b-996d-53943521b557","_postman_id":"c2df8264-f8e9-4e4b-996d-53943521b557","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","name":"Queries","type":"folder"}}},{"name":"Countries","id":"e8a68a6b-3b34-439c-9ce5-ab81d38627cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getCountries($countries_id: Int, $status: Int, $limit: Int, $offset: Int) {\n  getCountries(countries_id: $countries_id, status: $status, limit: $limit, offset: $offset) {\n    countries {\n      countries_id\n      countries_name\n      countries_iso_code_2\n      countries_iso_code_3\n      status\n    }\n    totalCountries\n    currentCount\n  }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8a68a6b-3b34-439c-9ce5-ab81d38627cf"},{"name":"Get Payment Terms","id":"97b6cd68-25ad-42de-bb1b-5c75cc44aed1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query getPaymentTermMaster($term_id: Int, $limit: Int, $offset: Int) {\n  getPaymentTermMaster(term_id: $term_id, limit: $limit, offset: $offset) {\n    paymentTermMaster {\n        term_id\n        term_details\n        default_term\n        check_order\n        status\n        term_title\n        term_description\n    }\n    totalPaymentTermMaster\n    currentCount\n  }\n}","variables":"{\n\t\"limit\": 10,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97b6cd68-25ad-42de-bb1b-5c75cc44aed1"},{"name":"TEST","id":"cb49e8aa-53f6-4c4f-8c31-2f6408eeb31e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"query faq ($faq_id: Int,$faqcat_id: Int, $limit: Int, $offset: Int) {\n    faq (faq_id: $faq_id,faqcat_id: $faqcat_id, limit: $limit, offset: $offset) {\n        faq {\n            faq_id\n            faqcat_id\n            status\n            sort_order\n            faq_type\n            faq_question\n            faq_answer\n            faq_category_name\n            product_ids\n            category_ids\n        }\n        totalFaq\n    }\n}","variables":"{\n    \"faq_id\" : 20,\n\t\"limit\": 50,\n\t\"offset\": 0\n}"}},"url":"{{api_url}}","description":"<p>Here’s your <strong>FAQ API documentation</strong> in the same compact table format you requested 👇</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>faq_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use this parameter to filter the FAQs by their unique ID.</td>\n<td>1</td>\n</tr>\n<tr>\n<td>faqcat_id</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Filter FAQs by their category ID.</td>\n<td>3</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the maximum number of records to return in a single API call.</td>\n<td>50</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This parameter specifies the starting position of the records to return.</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb49e8aa-53f6-4c4f-8c31-2f6408eeb31e"}],"id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"cfb08f17-b382-4492-bd6b-32c48ea598a8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"54675db8-5b1b-45df-8990-815b51d1339f","type":"text/javascript","exec":[""]}}],"_postman_id":"94fa3342-6a12-476e-b4f9-f1519d5f6326","description":""},{"name":"Mutations","item":[{"name":"Products","item":[{"name":"Master Options","item":[{"name":"Set Master Option Rules","id":"3a618f5c-3222-49d2-8234-ce6198880345","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductOptionRules ($input: ProductOptionRulesInput!) {\n    setProductOptionRules (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"rule_id\" : 213,\n        \"rule_name\" : \"TEST rule\",\n        \"rule_type\" : \"param_additional_option_based\",\n        \"source_option_ids\" : \"151,237,456\",\n        \"source_attribute_ids\" : \"316,0,0\",\n        \"hide_option_ids\" : \"\",\n        \"hide_option_attribute_ids\" : \"391,1112,1113,1114,1115\",\n        \"status\" : \"0\",\n        \"custom_param\" : \"area\",\n        \"rules_quantity_select\" : \"0\",\n        \"custom_param_val\" : 1,\n        \"custom_param_val_to\" : 100,\n        \"sort_order\" : 99999,\n        \"hide_size_ids\" : \"\",\n        \"opt_textbox_conditions\" : [\n            {\n                \"opt_key\" : \"237_0\",\n                \"opt_comparison\" : \"<=>\",\n                \"opt_val_from\" : 1,\n                \"opt_val_to\" : 100\n            },\n            {\n                \"opt_key\" : \"456_0\",\n                \"opt_comparison\" : \"<=>\",\n                \"opt_val_from\" : \"\",\n                \"opt_val_to\" : \"\"\n            }\n        ],\n        \"condition\" : \"AND\",\n        \"disabled_for_admin\" : \"0\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>rule_id</code></td>\n<td>No*</td>\n<td><em>Int</em></td>\n<td>Rule ID – required only for update/delete</td>\n<td>213</td>\n</tr>\n<tr>\n<td><code>rule_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Rule name</td>\n<td>\"TEST rule\"</td>\n</tr>\n<tr>\n<td><code>rule_type</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Rule type (See Rule Type Legend)</td>\n<td>\"param_additional_option_based\"</td>\n</tr>\n<tr>\n<td><code>source_option_ids</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Comma-separated option IDs. Required if rule_type is <strong>not</strong> \"Size-Quantity based\". Positionally maps to source_attribute_ids.</td>\n<td>\"151,237,456\"</td>\n</tr>\n<tr>\n<td><code>source_attribute_ids</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Comma-separated attribute IDs. Required if rule_type is <strong>not</strong> \"Size-Quantity based\". Use \"0\" to select entire option.</td>\n<td>\"316,0,0\"</td>\n</tr>\n<tr>\n<td><code>hide_option_ids</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated master option IDs to <strong>completely hide</strong> when rule matches. Hides the entire option (all its attributes become invisible).</td>\n<td>\"45,67\"</td>\n</tr>\n<tr>\n<td><code>hide_option_attribute_ids</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated attribute IDs to hide when rule matches. Hides <strong>specific attributes</strong> within options — the parent option remains visible with remaining attributes.</td>\n<td>\"391,1112,1113\"</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Rule status (0 = inactive, 1 = active). Inactive rules are ignored during evaluation.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>custom_param</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Custom parameter (See Custom Param Legend)</td>\n<td>\"area\"</td>\n</tr>\n<tr>\n<td><code>rules_quantity_select</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Required if rule_type = Size-Quantity based (See Quantity Select Legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>rules_quantity</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Required if rules_quantity_select = 1 (Specific Quantity)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>rules_quantity_to</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Required if rules_quantity_select = 1 (Specific Quantity)</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>custom_param_val</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required if custom_param is NOT \"size\"</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>custom_param_val_to</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required if custom_param is NOT \"size\"</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>custom_param_width</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required if custom_param = \"size\"</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>custom_param_width_to</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required if custom_param = \"size\"</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>custom_param_height</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required if custom_param = \"size\"</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>custom_param_height_to</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required if custom_param = \"size\"</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Evaluation priority. Rules are evaluated in <strong>ascending</strong> sort_order. Lower values execute first. When multiple rules match, later rules (higher sort_order) override earlier ones.</td>\n<td>99999</td>\n</tr>\n<tr>\n<td><code>hide_size_ids</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated size IDs to hide when rule matches</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>opt_textbox_conditions</code></td>\n<td>No</td>\n<td><em>Array</em></td>\n<td>Textbox conditions array (See structure below)</td>\n<td><code>[ {…} ]</code></td>\n</tr>\n<tr>\n<td><code>condition</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>AND / OR relation between different source option attributes</td>\n<td>\"AND\"</td>\n</tr>\n<tr>\n<td><code>disabled_for_admin</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Disable rule on admin side (0 = enabled, 1 = disabled for admin)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use <strong>1</strong> to delete rule</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"source-optionattribute-mapping\"><strong>Source Option/Attribute Mapping</strong></h1>\n<p><code>source_option_ids</code> and <code>source_attribute_ids</code> are positionally mapped comma-separated strings:</p>\n<ul>\n<li>1st value in <code>source_option_ids</code> pairs with 1st value in <code>source_attribute_ids</code></li>\n<li>Use <code>\"0\"</code> as attribute ID to select the entire option (all attributes)</li>\n</ul>\n<p><strong>Example:</strong> Selecting option 123 with attributes 456 and 987, plus entire option 456:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"source_option_ids\": \"123,123,456\",\n\"source_attribute_ids\": \"456,987,0\"\n</code></pre>\n<hr />\n<h1 id=\"hide_option_ids-vs-hide_option_attribute_ids\"><strong>hide_option_ids vs hide_option_attribute_ids</strong></h1>\n<p>These two fields control <strong>what gets hidden</strong> when the rule condition is met:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Scope</th>\n<th>Behavior</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hide_option_ids</code></td>\n<td><strong>Entire option</strong></td>\n<td>Hides the complete option including all its attributes. The option becomes invisible to the user.</td>\n</tr>\n<tr>\n<td><code>hide_option_attribute_ids</code></td>\n<td><strong>Specific attributes</strong></td>\n<td>Hides individual attributes within an option. The parent option remains visible with its remaining (non-hidden) attributes.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Use <code>hide_option_ids</code> when:</strong></p>\n<ul>\n<li>You want to completely remove an option from the user's view</li>\n<li>Example: Hide \"Lamination\" option entirely when paper type is \"Recycled\"</li>\n</ul>\n<p><strong>Use <code>hide_option_attribute_ids</code> when:</strong></p>\n<ul>\n<li>You want to remove specific choices within an option but keep the option visible</li>\n<li>Example: Hide \"Glossy\" and \"Matte\" finishes (attributes) from the \"Finish\" option, but keep \"Satin\" available</li>\n</ul>\n<p><strong>Both can be used together</strong> in the same rule to hide entire options AND specific attributes from other options simultaneously.</p>\n<hr />\n<h1 id=\"sort_order--rule-evaluation-priority\"><strong>sort_order — Rule Evaluation Priority</strong></h1>\n<p>Rules are evaluated in <strong>ascending</strong> <code>sort_order</code> (lowest first).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Behavior</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Evaluation order</td>\n<td>Rules with lower <code>sort_order</code> are evaluated first</td>\n</tr>\n<tr>\n<td>Conflict resolution</td>\n<td>When multiple rules match the same condition, the rule with the <strong>higher</strong> <code>sort_order</code> (evaluated later) takes precedence</td>\n</tr>\n<tr>\n<td>Default value</td>\n<td><code>99999</code> (evaluated last)</td>\n</tr>\n<tr>\n<td>Recommended practice</td>\n<td>Use increments of 10 (10, 20, 30…) to allow inserting rules between existing ones</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example:</strong></p>\n<ul>\n<li>Rule A (<code>sort_order: 10</code>) — hides attribute 391</li>\n<li>Rule B (<code>sort_order: 20</code>) — hides attributes 391, 1112, 1113</li>\n</ul>\n<p>If both rules match, Rule B's hide list takes effect because it has a higher sort_order.</p>\n<hr />\n<h1 id=\"textbox-condition-object-structure\"><strong>Textbox Condition Object Structure</strong></h1>\n<p>Each object inside <code>opt_textbox_conditions</code> must follow this structure:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>KEY</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>opt_key</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Option-attribute key in format <code>optionId_attributeId</code> (use <code>_0</code> for entire option)</td>\n<td>\"237_0\"</td>\n</tr>\n<tr>\n<td><code>opt_comparison</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Comparison operator (See Comparison Operators)</td>\n<td>\"&lt;=&gt;\"</td>\n</tr>\n<tr>\n<td><code>opt_val_from</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required for all operators. The comparison value (or range start for <code>&lt;=&gt;</code>)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>opt_val_to</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Required only for <code>&lt;=&gt;</code> (Between). The range end value.</td>\n<td>100</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"comparison-operators\"><strong>Comparison Operators</strong></h1>\n<p>Used in <code>opt_textbox_conditions</code> to define value-based conditions on textbox options:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operator</th>\n<th>Name</th>\n<th>Description</th>\n<th>Required Fields</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>=</code></td>\n<td>Equal To</td>\n<td>Matches when the textbox value equals <code>opt_val_from</code> exactly</td>\n<td><code>opt_val_from</code></td>\n<td>Value = 5</td>\n</tr>\n<tr>\n<td><code>&gt;=</code></td>\n<td>Greater Or Equal To</td>\n<td>Matches when the textbox value is greater than or equal to <code>opt_val_from</code></td>\n<td><code>opt_val_from</code></td>\n<td>Value &gt;= 10</td>\n</tr>\n<tr>\n<td><code>&lt;=</code></td>\n<td>Less Or Equal To</td>\n<td>Matches when the textbox value is less than or equal to <code>opt_val_from</code></td>\n<td><code>opt_val_from</code></td>\n<td>Value &lt;= 50</td>\n</tr>\n<tr>\n<td><code>&lt;=&gt;</code></td>\n<td>Between</td>\n<td>Matches when the textbox value falls within the range <code>opt_val_from</code> to <code>opt_val_to</code> (inclusive)</td>\n<td><code>opt_val_from</code>, <code>opt_val_to</code></td>\n<td>1 &lt;= Value &lt;= 100</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> If <code>opt_comparison</code> is <code>&lt;=&gt;</code> and either <code>opt_val_from</code> or <code>opt_val_to</code> is missing/empty, the condition for that source option attribute is skipped (removed from evaluation).</p>\n<hr />\n<h1 id=\"legends\"><strong>Legends</strong></h1>\n<hr />\n<h2 id=\"rule-type-legend-rule_type\"><strong>Rule Type Legend (<code>rule_type</code>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n<th>Conditions Evaluated</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param_quantity_based</td>\n<td>Size-Quantity based</td>\n<td>Custom param range + quantity range</td>\n</tr>\n<tr>\n<td>param_additional_option_based</td>\n<td>Size-Additional option based</td>\n<td>Custom param range + option/attribute selection</td>\n</tr>\n<tr>\n<td>additional_option_based</td>\n<td>Additional option based</td>\n<td>Option/attribute selection only</td>\n</tr>\n<tr>\n<td>param_quantity_additional_option_based</td>\n<td>Size-Quantity-Additional option based</td>\n<td>Custom param range + quantity range + option/attribute selection</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"custom-param-legend-custom_param\"><strong>Custom Param Legend (<code>custom_param</code>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>area</td>\n<td>Area</td>\n<td>Evaluated as height × width</td>\n</tr>\n<tr>\n<td>perimeter</td>\n<td>Perimeter</td>\n<td>Evaluated as 2 × (height + width)</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Width</td>\n<td>Product width value</td>\n</tr>\n<tr>\n<td>height</td>\n<td>Height</td>\n<td>Product height value</td>\n</tr>\n<tr>\n<td>size</td>\n<td>Size</td>\n<td>Both width and height evaluated independently (requires width/height range fields)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"rules-quantity-select-rules_quantity_select\"><strong>Rules Quantity Select (<code>rules_quantity_select</code>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>All Quantity — rule applies regardless of quantity</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Specific Quantity — rule applies only within <code>rules_quantity</code> to <code>rules_quantity_to</code> range</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a618f5c-3222-49d2-8234-ce6198880345"},{"name":"Set Option Formulas","id":"5cb667a1-8f2f-4006-886a-0d4e2f29c66a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomFormula ($input: CustomFormulaInput!) {\n    setCustomFormula (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"formula_id\" : 0,\n        \"formula_label\" : \"Price Multiply with Qty\",\n        \"formula_syntax\" : \"{price} * {quantity}\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete custom formulas for option pricing calculations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>formula_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Formula ID. Set 0 for insert. <strong>Required for update/delete.</strong></td>\n<td>55</td>\n</tr>\n<tr>\n<td><code>formula_label</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Formula label/name. <strong>Required for insert.</strong></td>\n<td>Price Multiply with Qty</td>\n</tr>\n<tr>\n<td><code>formula_syntax</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Formula syntax expression. <strong>Required for insert.</strong></td>\n<td>{price} * {quantity}</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the formula. <strong>Requires</strong> <strong><code>formula_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"915c602f-7f2f-406e-8412-1f18374e3fa4","name":"Add Formula","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomFormula ($input: CustomFormulaInput!) {\n    setCustomFormula (input: $input) {\n        result\n        message\n        formula_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"formula_id\" : 0,\n        \"formula_label\" : \"Price Multiply with Qty\",\n        \"formula_syntax\" : \"{price} * {quantity}\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a07fd80f-0ca2-49dd-a2eb-e47e945c34cc","name":"Update Formula","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomFormula ($input: CustomFormulaInput!) {\n    setCustomFormula (input: $input) {\n        result\n        message\n        formula_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"formula_id\" : 55,\n        \"formula_label\" : \"Price Multiply with Qty\",\n        \"formula_syntax\" : \"{price} * {quantity}\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cd2cf1e9-db15-4d2c-bd7c-a5e70b79d097","name":"Delete Formula","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomFormula ($input: CustomFormulaInput!) {\n    setCustomFormula (input: $input) {\n        result\n        message\n        formula_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"formula_id\" : 55,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5cb667a1-8f2f-4006-886a-0d4e2f29c66a"},{"name":"Set Option Group","id":"85759502-9f15-4185-a730-cea642e36ee6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOptionGroup ($input: OptionGroupInput!) {\n    setOptionGroup (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"prod_add_opt_group_id\" : 25,\n        \"opt_group_name\" : \"group name new2\",\n        \"use_for\" : \"0\",\n        \"display_style\" : \"0\",\n        \"option_count\" : 2,\n        \"is_collapse\" : \"0\",\n        \"sort_order\" : 999,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>prod_add_opt_group_id</code></td>\n<td>No*</td>\n<td><em>Int</em></td>\n<td>Group ID — required only for update/delete</td>\n<td>25</td>\n</tr>\n<tr>\n<td><code>opt_group_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Name of the option group</td>\n<td>\"group name new2\"</td>\n</tr>\n<tr>\n<td><code>use_for</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Where to use this group (See Use For Legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>display_style</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Display style of options (See Display Style Legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>option_count</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Number of options per row</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>is_collapse</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Group expanded/collapsed state (See Collapse Legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sorting order</td>\n<td>999</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use <strong>1</strong> to delete group</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"legends\"><strong>Legends</strong></h1>\n<hr />\n<h2 id=\"use-for-use_for\"><strong>Use For (<strong><strong><code>use_for</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Presentation Group</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Export Order Group</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Both</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"display-style-display_style\"><strong>Display Style (<strong><strong><code>display_style</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Default</td>\n</tr>\n<tr>\n<td>0</td>\n<td>Inline</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"collapse-state-is_collapse\"><strong>Collapse State (<strong><strong><code>is_collapse</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Collapse</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Expand</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"56da423e-60b2-4f25-a4f8-50f1da66c6d0","name":"Add Option Group","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOptionGroup ($input: OptionGroupInput!) {\n    setOptionGroup (input: $input) {\n        result\n        message\n        prod_add_opt_group_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"prod_add_opt_group_id\" : 0,\n        \"opt_group_name\" : \"group name new2\",\n        \"use_for\" : \"0\",\n        \"display_style\" : \"0\",\n        \"option_count\" : 2,\n        \"is_collapse\" : \"0\",\n        \"sort_order\" : 999,\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f04d548d-c0f8-4911-9d10-651deebe7fd6","name":"Update Option Group","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOptionGroup ($input: OptionGroupInput!) {\n    setOptionGroup (input: $input) {\n        result\n        message\n        prod_add_opt_group_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"prod_add_opt_group_id\" : 25,\n        \"opt_group_name\" : \"group name new2\",\n        \"use_for\" : \"0\",\n        \"display_style\" : \"0\",\n        \"option_count\" : 2,\n        \"is_collapse\" : \"0\",\n        \"sort_order\" : 999,\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5f3b1ed9-35b4-4ccd-bc90-6f639b6be081","name":"Delete Option Group","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOptionGroup ($input: OptionGroupInput!) {\n    setOptionGroup (input: $input) {\n        result\n        message\n        prod_add_opt_group_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"prod_add_opt_group_id\" : 25,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"85759502-9f15-4185-a730-cea642e36ee6"},{"name":"Set Master Option Tags","id":"fa6841be-b156-4f58-a7a2-6f972e008418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionTag ($input: MasterOptionTagInput!) {\n    setMasterOptionTag (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_tag_id\" : 13,\n        \"master_option_tag_name\" : \"TEST updated tag\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This will change the size or price of order product (Only for Custom size product).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific order product.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Width of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Height of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used for lock price or not. Possible Values - 0,1 <strong>Default :- 1</strong></td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comments</td>\n<td>comments</td>\n</tr>\n<tr>\n<td><code>notify_customer</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Notify customer or not Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"94c1e210-5c34-4dd7-9c5e-425bf585b443","name":"Add Master Option Tags","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionTag ($input: MasterOptionTagInput!) {\n    setMasterOptionTag (input: $input) {\n        result\n        message\n        master_option_tag_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_tag_id\" : 0,\n        \"master_option_tag_name\" : \"TEST new tag\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fa0370f5-1aaf-4871-87d1-801fa9d84511","name":"Update Master Option Tags","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionTag ($input: MasterOptionTagInput!) {\n    setMasterOptionTag (input: $input) {\n        result\n        message\n        master_option_tag_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_tag_id\" : 13,\n        \"master_option_tag_name\" : \"TEST new tag\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"df15a6bb-3b15-46fa-97fc-8a72d6ffdbd1","name":"Delete Master Option Tags","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionTag ($input: MasterOptionTagInput!) {\n    setMasterOptionTag (input: $input) {\n        result\n        message\n        master_option_tag_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_tag_id\" : 13,\n        \"master_option_tag_name\" : \"TEST new tag\",\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa6841be-b156-4f58-a7a2-6f972e008418"},{"name":"Set Master option attributes","id":"f0f18464-0e10-4aa6-80f7-7498528e58ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributes ($inputs: [MasterOptionAttributesInput!]!) {\n    setMasterOptionAttributes (inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : {\n        \"master_attribute_id\" : 1510,\n        \"delete\" : 0,\n        \"master_option_id\" : 268,\n        \"label\" : \"attr\",\n        \"attribute_key\" : \"test_attr_key\",\n        \"attr_desc\" : \"attr desc\",\n        \"attributes_image\" : \"image.jpg\",\n        \"op_statusid\" : 23,\n        \"hex_color\" : \"#ff0000\",\n        \"default_attribute\" : \"0\",\n        \"sort_order\" : 8888,\n        \"status\" : \"1\",\n        \"setup_cost\" : 10.25,\n        \"multiplier\" : 2,\n        \"weight\" : 0.2,\n        \"material_thickness\" : 0.2332,\n        \"production_days\" : 5,\n        \"production_description\" : \"attribute desc\"\n    }\n}"}},"url":"{{api_url}}","description":"<h3 id=\"attribute-image-folder---imagesproduct_icon\"><strong>Attribute Image Folder - images/product_icon</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>master_attribute_id</code></td>\n<td>No*</td>\n<td><em>Int</em></td>\n<td>Attribute ID — required only for <strong>update/delete</strong></td>\n<td>1512</td>\n</tr>\n<tr>\n<td><code>master_option_id</code></td>\n<td><strong>Yes</strong></td>\n<td><em>Int</em></td>\n<td>Option ID where this attribute belongs</td>\n<td>268</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><strong>Yes</strong></td>\n<td><em>String</em></td>\n<td>Label/title of the attribute</td>\n<td>\"attr\"</td>\n</tr>\n<tr>\n<td><code>attribute_key</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Unique key/identifier for attribute</td>\n<td>\"test_attr_key_ok\"</td>\n</tr>\n<tr>\n<td><code>attr_desc</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Attribute description</td>\n<td>\"attr desc\"</td>\n</tr>\n<tr>\n<td><code>attributes_image</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Image filename/url</td>\n<td>\"image.jpg\"</td>\n</tr>\n<tr>\n<td><code>op_statusid</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Order product status ID</td>\n<td>23</td>\n</tr>\n<tr>\n<td><code>hex_color</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Hex code for color</td>\n<td>\"#ff0000\"</td>\n</tr>\n<tr>\n<td><code>default_attribute</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Set default attribute (0 = No, 1 = Yes)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sorting order</td>\n<td>8888</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Status (1 = Active, 0 = Inactive)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Setup cost for attribute</td>\n<td>10.25</td>\n</tr>\n<tr>\n<td><code>multiplier</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Multiplier value</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>weight</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Weight of attribute</td>\n<td>0.2</td>\n</tr>\n<tr>\n<td><code>material_thickness</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Material thickness</td>\n<td>0.2332</td>\n</tr>\n<tr>\n<td><code>production_days</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Production days</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use <strong>1</strong> to delete attribute</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"2b2313b5-0b40-4ec3-b5dc-aa732bb7d2e8","name":"Add Attributes","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributes ($input: MasterOptionAttributesInput!) {\n    setMasterOptionAttributes (input: $input) {\n        result\n        message\n        master_attribute_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_attribute_id\" : 0,\n        \"delete\" : 0,\n        \"master_option_id\" : 268,\n        \"label\" : \"attr\",\n        \"attribute_key\" : \"test_attr_key\",\n        \"attr_desc\" : \"attr desc\",\n        \"attributes_image\" : \"image.jpg\",\n        \"op_statusid\" : 23,\n        \"hex_color\" : \"#ff0000\",\n        \"default_attribute\" : \"0\",\n        \"sort_order\" : 8888,\n        \"status\" : \"1\",\n        \"setup_cost\" : 10.25,\n        \"multiplier\" : 2,\n        \"weight\" : 0.2,\n        \"material_thickness\" : 0.2332,\n        \"production_days\" : 5,\n        \"production_description\" : \"attribute desc\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"efbbb66e-6cf6-4963-aa74-6fc3182639b3","name":"Update Attributes","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributes ($input: MasterOptionAttributesInput!) {\n    setMasterOptionAttributes (input: $input) {\n        result\n        message\n        master_attribute_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_attribute_id\" : 1510,\n        \"delete\" : 0,\n        \"master_option_id\" : 268,\n        \"label\" : \"attr\",\n        \"attribute_key\" : \"test_attr_key\",\n        \"attr_desc\" : \"attr desc\",\n        \"attributes_image\" : \"image.jpg\",\n        \"op_statusid\" : 23,\n        \"hex_color\" : \"#ff0000\",\n        \"default_attribute\" : \"0\",\n        \"sort_order\" : 8888,\n        \"status\" : \"1\",\n        \"setup_cost\" : 10.25,\n        \"multiplier\" : 2,\n        \"weight\" : 0.2,\n        \"material_thickness\" : 0.2332,\n        \"production_days\" : 5,\n        \"production_description\" : \"attribute desc\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"038e985b-3639-4422-ae85-e66e6ba0c381","name":"Delete Attributes","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributes ($input: MasterOptionAttributesInput!) {\n    setMasterOptionAttributes (input: $input) {\n        result\n        message\n        master_attribute_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_attribute_id\" : 1510,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f0f18464-0e10-4aa6-80f7-7498528e58ce"},{"name":"Set Master option range","id":"9aa14bcf-2f2a-4b34-9f3a-eed9be54be83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionRange ($input: MasterOptionRangeInput!) {\n    setMasterOptionRange (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"option_id\" : 268,\n        \"ranges\" : [\n            {\n                \"from_range\" : 1,\n                \"to_range\" : 100,\n                \"delete\":1\n            },\n            {\n                \"from_range\" : 2,\n                \"to_range\" : 103\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add/update or delete quantity ranges for a master option.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>option_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Master option ID</td>\n<td>268</td>\n</tr>\n<tr>\n<td><code>ranges</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of range objects. <strong>Always required</strong> (even for delete, use <code>delete</code> inside range object for specific range deletion, or top-level <code>delete</code> for all).</td>\n<td>[]</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete all ranges for the option</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"range-object-inside-ranges\">Range Object (Inside <code>ranges</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>from_range</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Range start value</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>to_range</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Range end value</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete this specific range</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"2d048341-3fce-4644-ac85-05de427cc0f5","name":"Add/Update range","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionRange ($input: MasterOptionRangeInput!) {\n    setMasterOptionRange (input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"input\" : {\n        \"option_id\" : 268,\n        \"ranges\" : [\n            {\n                \"from_range\" : 1,\n                \"to_range\" : 100\n            },\n            {\n                \"from_range\" : 2,\n                \"to_range\" : 103\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2877d7e9-e052-41e8-9756-c41050ba7b20","name":"Delete specific range","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionRange ($input: MasterOptionRangeInput!) {\n    setMasterOptionRange (input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"input\" : {\n        \"option_id\" : 268,\n        \"ranges\" : [\n            {\n                \"from_range\" : 1,\n                \"to_range\" : 100,\n                \"delete\" : 1\n            },\n            {\n                \"from_range\" : 2,\n                \"to_range\" : 103\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d7bb49e1-0d20-4cb1-af3b-2724d717408a","name":"Delete all range","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionRange ($input: MasterOptionRangeInput!) {\n    setMasterOptionRange (input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"input\" : {\n        \"option_id\" : 268,\n        \"delete\": 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9aa14bcf-2f2a-4b34-9f3a-eed9be54be83"},{"name":"Set Master option Attribute price","id":"563c6658-cc1d-4dd9-bafe-69314be45d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributePrice ($inputs: [MasterOptionAttributePriceInput!]!) {\n    setMasterOptionAttributePrice (inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : [\n        {\n            \"attr_id\" : 386,\n            \"delete\" : 0,\n            \"prices\" : [\n                {\n                    \"range_id\" : 336,\n                    \"price\" : 1,\n                    \"vendor_price\" : 0.5,\n                    \"site_admin_markup\" : 50\n                },\n                {\n                    \"range_id\" : 337,\n                    \"price\" : 1,\n                    \"vendor_price\" : 0.5,\n                    \"site_admin_markup\" : 50,\n                    \"delete\" : 0\n                },\n                {\n                    \"range_id\" : 338,\n                    \"price\" : 1,\n                    \"vendor_price\" : 0.5,\n                    \"site_admin_markup\" : 50\n                }\n            ]\n        },\n        {\n            \"attr_id\" : 380,\n            \"delete\" : 0,\n            \"prices\" : [\n                {\n                    \"range_id\" : 336,\n                    \"price\" : 1,\n                    \"vendor_price\" : 0.5,\n                    \"site_admin_markup\" : 50\n                },\n                {\n                    \"range_id\" : 337,\n                    \"price\" : 1,\n                    \"vendor_price\" : 0.5,\n                    \"site_admin_markup\" : 50,\n                    \"delete\" : 0\n                },\n                {\n                    \"range_id\" : 338,\n                    \"price\" : 1,\n                    \"vendor_price\" : 0.5,\n                    \"site_admin_markup\" : 50\n                }\n            ]\n        }\n    ]\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add/update or delete prices for master option attributes across quantity ranges.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attr_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Master attribute ID</td>\n<td>1509</td>\n</tr>\n<tr>\n<td><code>prices</code></td>\n<td>Conditional</td>\n<td><em>Array</em></td>\n<td>Array of price objects. <strong>Required when</strong> <strong><code>delete</code></strong> <strong>is not 1.</strong></td>\n<td>[]</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete all prices for the attribute</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"price-object-inside-prices\">Price Object (Inside <code>prices</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>range_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Range ID</td>\n<td>343</td>\n</tr>\n<tr>\n<td><code>price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Customer price</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>vendor_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Vendor price</td>\n<td>0.5</td>\n</tr>\n<tr>\n<td><code>site_admin_markup</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Site admin markup percentage</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete this specific price</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"4c7cafaf-85e9-4410-94bc-4c91a0e2c650","name":"Add/Update Attribute price","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributePrice ($input: MasterOptionAttributePriceInput!) {\n    setMasterOptionAttributePrice (input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"input\" : {\n        \"attr_id\" : 1509,\n        \"prices\" : [\n            {\n                \"range_id\" : 343,\n                \"price\" : 1,\n                \"vendor_price\" : 0.5,\n                \"site_admin_markup\" : 50\n            },\n            {\n                \"range_id\" : 344,\n                \"price\" : 1,\n                \"vendor_price\" : 0.5,\n                \"site_admin_markup\" : 50\n            },\n            {\n                \"range_id\" : 345,\n                \"price\" : 1,\n                \"vendor_price\" : 0.5,\n                \"site_admin_markup\" : 50\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"16ef6c15-bb92-4a48-a1c2-f833911cda76","name":"Delete Specific Attribute price","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributePrice ($input: MasterOptionAttributePriceInput!) {\n    setMasterOptionAttributePrice (input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"input\" : {\n        \"attr_id\" : 1509,\n        \"prices\" : [\n            {\n                \"range_id\" : 343,\n                \"price\" : 1,\n                \"vendor_price\" : 0.5,\n                \"site_admin_markup\" : 50,\n                \"delete\" : 1\n            },\n            {\n                \"range_id\" : 344,\n                \"price\" : 1,\n                \"vendor_price\" : 0.5,\n                \"site_admin_markup\" : 50\n            },\n            {\n                \"range_id\" : 345,\n                \"price\" : 1,\n                \"vendor_price\" : 0.5,\n                \"site_admin_markup\" : 50\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c2d237cb-cf79-4d05-a48b-d2784c544834","name":"Delete all Attribute price","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionAttributePrice ($input: MasterOptionAttributePriceInput!) {\n    setMasterOptionAttributePrice (input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"input\" : {\n        \"attr_id\" : 1509,\n        \"dalete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"563c6658-cc1d-4dd9-bafe-69314be45d98"},{"name":"Set Master option","id":"8c89238a-e819-41ac-9204-62fbbc24eded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOption ($inputs: [MasterOptionInput!]!) {\n    setMasterOption (inputs: $inputs) {\n        index\n        result\n        message\n        id\n        external_ref\n    }\n}","variables":"{\n  \"inputs\": {\n    \"master_option_id\": 0,\n    \"title\": \"VGX_AUTOTEST Master Option\",\n    \"description\": \"VGX_AUTOTEST master option\",\n    \"options_type\": \"combo\",\n    \"status\": \"1\",\n    \"option_key\": \"\",\n    \"sort_order\": 9999999,\n    \"prod_add_opt_export_group_id\": 14,\n    \"pricing_method\": \"0\",\n    \"linear_formula\": \"0\",\n    \"weight_setting\": \"0\",\n    \"price_range_lookup\": \"1\",\n    \"custom_lookup\": \"\",\n    \"predefined_formula\": 28,\n    \"formula\": \"\",\n    \"required\": 0,\n    \"display_in_calculator\": 0,\n    \"option_position\": \"I\",\n    \"desc_position\": 1,\n    \"display_above_size\": 0,\n    \"presentation_group\": 2,\n    \"exclude_setup_cost_reorder\": 0,\n    \"master_option_tag\": \"1\",\n    \"hire_designer_option\": \"0\",\n    \"hide_from_calc\": \"0\",\n    \"enable_assoc_qty\": \"0\",\n    \"allow_price_cal\": \"0\",\n    \"production_description\" : \"option desc\",\n    \"delete\": 0,\n    \"external_ref\" : \"OPT-0001\"\n  }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete master options. Accepts a single input object or an array of inputs for batch operations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>master_option_id</code></td>\n<td>No*</td>\n<td><em>Int</em></td>\n<td>Master option ID — required only for update/delete operations</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Title of the product option</td>\n<td>\"Size Option\"</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Description of the product option</td>\n<td>\"Select a size\"</td>\n</tr>\n<tr>\n<td><code>options_type</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Type of option (See Options Type Legend)</td>\n<td>\"combo\"</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Status of the option (0/1)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>option_key</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Unique key for the option</td>\n<td>\"size_key\"</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sorting order</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_export_group_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Export order group ID</td>\n<td>14</td>\n</tr>\n<tr>\n<td><code>pricing_method</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Price method (See Pricing Method Legend). For <code>admin_only</code> must be <strong>1</strong></td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>linear_formula</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Apply linear formula (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>weight_setting</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Weight setting (See Weight Setting Legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>price_range_lookup</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Required if <code>pricing_method = 1</code> (Formula Based). See Price Range Lookup Legend</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>custom_lookup</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Required if <code>price_range_lookup = 13</code></td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>predefined_formula</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Required if <code>formula</code> is blank</td>\n<td>28</td>\n</tr>\n<tr>\n<td><code>formula</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Required if <code>predefined_formula</code> is blank</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>required</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Whether option is required (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>display_in_calculator</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Show in calculator (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>option_position</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Label position (See Option Position Legend)</td>\n<td>\"I\"</td>\n</tr>\n<tr>\n<td><code>desc_position</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Description position</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>display_above_size</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Display above size (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>presentation_group</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Presentation group ID</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>exclude_setup_cost_reorder</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Exclude setup cost for reorder (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>master_option_tag</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated tag IDs</td>\n<td>\"1,2,3\"</td>\n</tr>\n<tr>\n<td><code>hire_designer_option</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Hire designer option (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>hide_from_calc</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Hide from user/calculator (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>enable_assoc_qty</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Associate quantity option (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>allow_price_cal</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Single-use (0/1)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Use <strong>1</strong> to delete entry</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>External reference identifier for third-party system integration (max 255 chars)</td>\n<td>\"ERP-10001\"</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"validation-rules\"><strong>Validation Rules</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Rule</th>\n<th>Condition</th>\n<th>Requirement</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>options_type = \"admin_only\"</code></td>\n<td>Always</td>\n<td><code>pricing_method</code> must be <code>1</code> (Formula Based)</td>\n</tr>\n<tr>\n<td><code>pricing_method = \"1\"</code></td>\n<td>Always</td>\n<td><code>price_range_lookup</code> must be non-empty</td>\n</tr>\n<tr>\n<td><code>pricing_method != \"0\"</code></td>\n<td>When <code>predefined_formula</code> is empty/0</td>\n<td><code>formula</code> must be non-empty</td>\n</tr>\n<tr>\n<td><code>pricing_method = \"0\"</code></td>\n<td>Always</td>\n<td><code>predefined_formula</code> and <code>formula</code> are not required</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Note:</strong> <code>admin_only</code> options implicitly require both <code>pricing_method = 1</code> AND a valid <code>price_range_lookup</code> value.</p>\n</blockquote>\n<hr />\n<h1 id=\"legends\"><strong>Legends</strong></h1>\n<h3 id=\"options-type-options_type\"><strong>Options Type (<strong><strong><code>options_type</code></strong></strong>)</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>radio</td>\n<td>Radio Button</td>\n</tr>\n<tr>\n<td>combo</td>\n<td>Drop Down</td>\n</tr>\n<tr>\n<td>checkbox</td>\n<td>Check Box</td>\n</tr>\n<tr>\n<td>textmp</td>\n<td>TextBox</td>\n</tr>\n<tr>\n<td>text</td>\n<td>Additional Information – TextBox</td>\n</tr>\n<tr>\n<td>area</td>\n<td>Text Area</td>\n</tr>\n<tr>\n<td>admin_only</td>\n<td>Admin Only</td>\n</tr>\n<tr>\n<td>file</td>\n<td>Upload File</td>\n</tr>\n<tr>\n<td>multiple_file</td>\n<td>Upload Multiple Files</td>\n</tr>\n<tr>\n<td>datepicker</td>\n<td>Date Picker</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"option-position-option_position\"><strong>Option Position (<strong><strong><code>option_position</code></strong></strong>)</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>I</td>\n<td>Default</td>\n</tr>\n<tr>\n<td>B</td>\n<td>Up and Down</td>\n</tr>\n<tr>\n<td>S</td>\n<td>Side by Side</td>\n</tr>\n<tr>\n<td>BO</td>\n<td>Up and Down with Offset</td>\n</tr>\n<tr>\n<td>SO</td>\n<td>Side by Side with Offset</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"price-range-lookup-price_range_lookup\"><strong>Price Range Lookup (<strong><strong><code>price_range_lookup</code></strong></strong>)</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ID</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Quantity</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Area (Height × Width)</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Total Area (Height × Width × Qty)</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Sheet</td>\n</tr>\n<tr>\n<td>5</td>\n<td>No of Pages</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Width</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Height/Depth</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Length</td>\n</tr>\n<tr>\n<td>9</td>\n<td>Unfold Width</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Unfold Height</td>\n</tr>\n<tr>\n<td>11</td>\n<td>(Quantity × Sum of Additional Pages) / Jobs per sheet</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Total Area × Sum of Additional Pages</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Formula Based Range Lookup</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"pricing-method-pricing_method\"><strong>Pricing Method (<strong><strong><code>pricing_method</code></strong></strong>)</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ID</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>No Price</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Formula Based</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Multiplier in Subtotal</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Multiplier on Base Price</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"weight-setting-weight_setting\"><strong>Weight Setting (<strong><strong><code>weight_setting</code></strong></strong>)</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Multiply With Quantity</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Multiply With Qty &amp; Area</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Product Specific Weight</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Multiply With Sheet</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"45436794-69c1-4abf-bb6a-c1fed6a17129","name":"Add Master option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOption ($input: MasterOptionInput!) {\n    setMasterOption (input: $input) {\n        result\n        message\n        master_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_id\" : 0,\n        \"title\":\"new option title\",\n        \"description\":\"new option desc\",\n        \"options_type\" : \"combo\",\n        \"status\" : \"1\",\n        \"option_key\" : \"\",\n        \"sort_order\" : 9999999,\n        \"prod_add_opt_export_group_id\" : 14,\n        \"pricing_method\" : \"0\",\n        \"linear_formula\" : \"0\",\n        \"weight_setting\" : \"0\",\n        \"price_range_lookup\" : \"1\",\n        \"custom_lookup\" : \"\",\n        \"predefined_formula\" : 28,\n        \"formula\" : \"\",\n        \"required\" : 0,\n        \"display_in_calculator\" : 0,\n        \"option_position\" : \"I\",\n        \"desc_position\" : 1,\n        \"display_above_size\" : 0,\n        \"presentation_group\" : 2,\n        \"exclude_setup_cost_reorder\" : 0,\n        \"master_option_tag\" : \"1\",\n        \"hire_designer_option\" : \"0\",\n        \"hide_from_calc\" : \"0\",\n        \"enable_assoc_qty\" : \"0\",\n        \"allow_price_cal\" : \"0\",\n        \"production_description\" : \"option desc\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c72f96a8-ef66-4aaa-ae1b-aa90c9c10025","name":"Edit Master option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOption ($input: MasterOptionInput!) {\n    setMasterOption (input: $input) {\n        result\n        message\n        master_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_id\" : 276,\n        \"title\":\"new option title edited\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e8b265d2-6d26-4982-a3d5-de430662bf81","name":"Delete Master option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOption ($input: MasterOptionInput!) {\n    setMasterOption (input: $input) {\n        result\n        message\n        master_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"master_option_id\" : 276,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8c89238a-e819-41ac-9204-62fbbc24eded"},{"name":"Set Master Option Stock - Staging","id":"799ceeaa-a87d-4e7b-be91-8c754a566191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addMasterOptionStockConfig($input: AddMasterOptionStockConfigInput!) {\n    addMasterOptionStockConfig(input: $input) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\": {\n        \"stock_type\": 3,\n        \"combinations\": [\n            { \n                \"option_ids\": \"50,52\", \n                \"attribute_ids\": \"137,1017\", \n                \"stock\": 1000 \n            },\n            { \n                \"option_ids\": \"50,52\", \n                \"attribute_ids\": \"138,1017\", \n                \"stock\": 1000 \n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API creates a new master option stock configuration. Supports three stock types: Option Wise (type 1), Attribute Wise (type 2), and Option Combination Wise (type 3). Already existing entries are skipped with a message.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock_type</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Stock type: 1 (Option Wise), 2 (Attribute Wise), 3 (Combination Wise).</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>option_id</code></td>\n<td>Yes (type 1, 2)</td>\n<td><em>Int</em></td>\n<td>Master option ID (required for Option Wise and Attribute Wise).</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>default_stock</code></td>\n<td>Yes (type 1)</td>\n<td><em>Int</em></td>\n<td>Default stock quantity (minimum 1, for Option Wise only).</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>custom_multiplier</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Set to 1 to enable custom multipliers per attribute (Option Wise only). Default 0.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>multipliers</code></td>\n<td>No</td>\n<td><em>[Object]</em></td>\n<td>Custom multipliers (only used when custom_multiplier = 1). Each: <code>{ attribute_id: Int, multiplier: Float }</code></td>\n<td>[{ \"attribute_id\": 132, \"multiplier\": 2.0 }]</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td>Yes (type 2)</td>\n<td><em>[Object]</em></td>\n<td>Attributes with stock (for Attribute Wise). Each: <code>{ attribute_id: Int, stock: Int }</code></td>\n<td>[{ \"attribute_id\": 140, \"stock\": 500 }]</td>\n</tr>\n<tr>\n<td><code>combinations</code></td>\n<td>Yes (type 3)</td>\n<td><em>[Object]</em></td>\n<td>Combinations with stock (for Combination Wise). Each: <code>{ option_ids: String, attribute_ids: String, stock: Int }</code></td>\n<td>[{ \"option_ids\": \"50,52\", \"attribute_ids\": \"132,140\", \"stock\": 1000 }]</td>\n</tr>\n<tr>\n<td><code>apply_to_all</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Apply this stock value to all attributes/combinations (overrides individual values, minimum 1).</td>\n<td>500</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"validation-rules\"><strong>Validation Rules</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Rule</th>\n<th>Condition</th>\n<th>Requirement</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Option Wise ↔ Attribute Wise</td>\n<td>Mutually exclusive</td>\n<td>Same option cannot have both type 1 and type 2</td>\n</tr>\n<tr>\n<td>Attribute Wise option type</td>\n<td>Always</td>\n<td>Option must be of type <code>radio</code> or <code>combo</code></td>\n</tr>\n<tr>\n<td>Combination Wise</td>\n<td>Always</td>\n<td>Must have attributes from at least 2 different options</td>\n</tr>\n<tr>\n<td>Each option in combination</td>\n<td>Always</td>\n<td>Must have at least 1 attribute assigned</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"stock-type-legend\"><strong>Stock Type Legend</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Option Wise — single stock with optional multipliers</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Attribute Wise — individual stock per attribute</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Option Combination Wise — stock per attribute combination</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c87db6c4-ebe0-412f-8f20-80ea8f957614","name":"Add Master Option Stock - Option Wise","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addMasterOptionStockConfig($input: AddMasterOptionStockConfigInput!) {\n    addMasterOptionStockConfig(input: $input) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\": {\n        \"stock_type\": 1,\n        \"option_id\": 50,\n        \"default_stock\": 100,\n        \"custom_multiplier\": 0,\n        \"multipliers\": [\n            { \"attribute_id\": 132, \"multiplier\": 1.5 }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d81fae53-cae8-4e46-bd80-8c1fc933b8d6","name":"Add Master Option Stock - Attribute Wise","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addMasterOptionStockConfig($input: AddMasterOptionStockConfigInput!) {\n    addMasterOptionStockConfig(input: $input) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\": {\n        \"stock_type\": 2,\n        \"option_id\": 52,\n        \"attributes\": [\n            { \"attribute_id\": 137, \"stock\": 500 },\n            { \"attribute_id\": 138, \"stock\": 1000 },\n            { \"attribute_id\": 139, \"stock\": 1000 }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"19594134-f095-41d4-bf66-21096dd671b6","name":"Add Master Option Stock - Combination Wise","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation addMasterOptionStockConfig($input: AddMasterOptionStockConfigInput!) {\n    addMasterOptionStockConfig(input: $input) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\": {\n        \"stock_type\": 3,\n        \"combinations\": [\n            { \n                \"option_ids\": \"50,52\", \n                \"attribute_ids\": \"137,1017\", \n                \"stock\": 1000 \n            },\n            { \n                \"option_ids\": \"50,52\", \n                \"attribute_ids\": \"137,139\", \n                \"stock\": 1000 \n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"799ceeaa-a87d-4e7b-be91-8c754a566191"},{"name":"Delete Master Option Stock - Staging","id":"b7bf6ccf-215c-4943-b98d-cd79c9045d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteMasterOptionStockConfig($config_id: Int, $option_ids: String) {\n    deleteMasterOptionStockConfig(config_id: $config_id, option_ids: $option_ids) {\n        index\n        result\n        message\n        id\n    }\n}\n","variables":"{\n    \"option_ids\": \"59,89\"\n}"}},"url":"{{api_url}}","description":"<p>This API deletes a master option stock configuration and all its associated history and multiplier records. Provide either config_id (single entry) or option_ids (entire group). Exactly one must be provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>config_id</code></td>\n<td>No*</td>\n<td><em>Int</em></td>\n<td>Stock configuration ID to delete (single entry).</td>\n<td>15</td>\n</tr>\n<tr>\n<td><code>option_ids</code></td>\n<td>No*</td>\n<td><em>String</em></td>\n<td>Comma-separated option IDs to delete all configs for that option group.</td>\n<td>\"59,89\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>*Exactly one of <code>config_id</code> or <code>option_ids</code> must be provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"6ee68b49-9c0f-4193-9999-fedcc0aa0893","name":"Delete Specific config","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteMasterOptionStockConfig($config_id: Int, $option_ids: String) {\n    deleteMasterOptionStockConfig(config_id: $config_id, option_ids: $option_ids) {\n        index\n        result\n        message\n        id\n    }\n}\n","variables":"{\n    \"config_id\": 43\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a72d32be-df2c-4eb1-9c3e-30a39a90bcee","name":"Delete single/combo option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation deleteMasterOptionStockConfig($config_id: Int, $option_ids: String) {\n    deleteMasterOptionStockConfig(config_id: $config_id, option_ids: $option_ids) {\n        index\n        result\n        message\n        id\n    }\n}\n","variables":"{\n    \"option_ids\": \"59,89\"\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b7bf6ccf-215c-4943-b98d-cd79c9045d98"},{"name":"Credit/Debit Master Option Stock - Staging","id":"bbca7ba3-a8b1-4974-ac0d-58c87f362f11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateMasterOptionStock($inputs: [UpdateMasterOptionStockInput!]!) {\n    updateMasterOptionStock(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : [\n        { \n            \"config_id\": 44,\n            \"stock_quantity\": 50, \n            \"change_type\": \"C\", \n            \"comments\": \"Restocked\" \n        },\n        { \n            \"config_id\": 34,\n            \"stock_quantity\": 50, \n            \"change_type\": \"D\", \n            \"comments\": \"Restocked\" \n        }\n    ]\n}\n"}},"url":"{{api_url}}","description":"<p>This API credits or debits stock for existing master option stock configurations. Supports bulk operations — multiple entries can be processed in a single call.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>config_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Stock configuration ID to credit/debit.</td>\n<td>15</td>\n</tr>\n<tr>\n<td><code>stock_quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Quantity to add or remove (1 to 999,999,999).</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>change_type</code></td>\n<td>Yes</td>\n<td><em>Enum</em></td>\n<td>Type of stock change: C (Credit/Add) or D (Debit/Remove).</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Reason for stock change (max 255 characters).</td>\n<td>\"Restocked from warehouse\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbca7ba3-a8b1-4974-ac0d-58c87f362f11"},{"name":"Set Master Option Stock Setting - Staging","id":"640967c1-f22a-4938-8c06-b893e4a6e30a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setMasterOptionStockSettings($inputs: [SetMasterOptionStockSettingsInput!]!) {\n    setMasterOptionStockSettings(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\":[\n        {\n            \"option_id\": 264, \n            \"allow_order_out_of_stock\": 0, \n            \"notify_quantity\": 10 \n        },\n        {\n            \"option_id\": 50, \n            \"allow_order_out_of_stock\": 0, \n            \"notify_quantity\": 10 \n        }\n    ]\n}"}},"url":"{{api_url}}","description":"<p>This API configures stock settings for master options. Controls whether out-of-stock ordering is allowed and sets the stock notification threshold. Supports bulk operations — multiple options can be configured in a single call.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>option_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Master option ID.</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>allow_order_out_of_stock</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Allow ordering when out of stock: 0 (No) or 1 (Yes).</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>notify_quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Notify admin when stock reaches this quantity (0 = disabled).</td>\n<td>10</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"640967c1-f22a-4938-8c06-b893e4a6e30a"}],"id":"33a04ed1-d72f-4857-9b85-994a8d956865","_postman_id":"33a04ed1-d72f-4857-9b85-994a8d956865","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}},{"name":"Set Product","id":"b81a0929-48e7-4609-a9a2-07452d43a45a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProduct ($inputs: [ProductInput!]!) {\n    setProduct (inputs: $inputs) {\n        index\n        result\n        message\n        id\n        external_ref\n        sizes_result {\n            index\n            result\n            message\n            id\n        }\n        pages_result {\n            index\n            result\n            message\n            id\n        }\n    }\n}","variables":"{\n    \"inputs\" : [\n        {\n            \"products_id\":0,\n            \"category_id\"  : 46,\n            \"multiple_category\" : \"29,46\",\n            \"products_draw_area_margins\" : \".125,.125,.125,.125\",\n            \"visible\" : 1,\n            \"sort_order\" : 99999,\n            \"products_draw_cutting_margins\" : \".0625,.0625,.0625,.0625\",\n            \"product_type\" : \"15,8\",\n            \"corporate_id\" : \"0\",\n            \"department_id\" : \"0\",\n            \"user_type_id\" : \"0\",\n            \"predefined_product_type\" : \"0\",\n            \"price_defining_method\" : \"0\",\n            \"size_visible\" : \"Yes\",\n            \"enable_stock_management\" : \"0\",\n            \"measurement_unit_id\" : 1,\n            \"enable_sheet_calculation\" : \"0\",\n            \"product_service_type\" : \"1\",\n            \"linear_multiplication\" : \"0\",\n            \"custom_panel\" : \"N\",\n            \"predefined_panel\" : \"N\",\n            \"order_product_status_template\" : 0,\n            \"imagename\" : \"image.jpeg\",\n            \"product_desc_image\" : \"imageasd.jpeg\",\n            \"products_title\" : \"my product\",\n            \"products_internal_title\" : \"internal prd title\",\n            \"product_description\" : \"product desc\",\n            \"long_description\" : \"long desc\",\n            \"long_description_two\" : \"long two\",\n            \"seo_page_title\" : \"seo title\",\n            \"seo_page_description\" : \"seo desc\",\n            \"seo_page_metatags\" : \"seo metatags\",\n            \"schema_markup\" : \"schema markup\",\n            \"production_description\" : \"product desc\",\n            \"external_ref\" : \"\",\n            \"main_sku\" : \"TESTnew1\",\n            \"sizes\" : [\n                {\n                    \"size_title\" : \"3x3\",\n                    \"size_image\" : \"image.jpg\",\n                    \"size_width\" : 11,\n                    \"size_height\" : 5,\n                    \"size_hex_color\" : \"#ff0000\",\n                    \"default_size\" : 1,\n                    \"sort_order\" : 1,\n                    \"visible\" : \"1\",\n                    \"setup_cost\" : 10\n                },\n                {\n                    \"size_title\" : \"4x4\",\n                    \"size_image\" : \"image.jpg\",\n                    \"size_hex_color\" : \"#ff0000\",\n                    \"default_size\" : 1,\n                    \"sort_order\" : 1,\n                    \"visible\" : \"1\",\n                    \"setup_cost\" : 10\n                }\n            ],\n            \"pages\" : [\n                {\n                    \"page_title\" : \"lll\",\n                    \"sort_order\" : 2,\n                    \"visible\" : \"1\"\n                },\n                {\n                    \"page_title\" : \"\",\n                    \"sort_order\" : 2,\n                    \"visible\" : \"1\"\n                }\n            ]\n        }\n    ]\n}"}},"url":"{{api_url}}","description":"<h3 id=\"small-and-large-image-folder---imagesproduct\"><strong>Small and large image folder - images/product</strong></h3>\n<p>This API is used to create, update, or delete products. Accepts an array of inputs for batch operations. Supports nested sizes and pages creation along with product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAM</th>\n<th>REQUIRED</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>Conditional</td>\n<td>Int</td>\n<td>Product ID. <strong>Required for update/delete.</strong> Omit or set 0 for insert.</td>\n<td>336</td>\n</tr>\n<tr>\n<td><code>category_id</code></td>\n<td>Yes</td>\n<td>Int</td>\n<td>Category ID for product. <strong>Must exist in product_category table.</strong></td>\n<td>46</td>\n</tr>\n<tr>\n<td><code>multiple_category</code></td>\n<td>No</td>\n<td>String</td>\n<td>Multiple categories (comma separated). <strong>All IDs must exist.</strong> If <code>category_id</code> value is present, it will be automatically removed.</td>\n<td>\"29,46\"</td>\n</tr>\n<tr>\n<td><code>products_draw_area_margins</code></td>\n<td>No</td>\n<td>String</td>\n<td>Product draw margins (comma separated)</td>\n<td>\".125,.125,.125,.125\"</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Product visibility status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Sorting order</td>\n<td>99999</td>\n</tr>\n<tr>\n<td><code>products_draw_cutting_margins</code></td>\n<td>No</td>\n<td>String</td>\n<td>Product cutting margins</td>\n<td>\".0625,.0625,.0625,.0625\"</td>\n</tr>\n<tr>\n<td><code>product_type</code></td>\n<td>Yes</td>\n<td>String</td>\n<td>Product type(s) (comma separated) (See legend)</td>\n<td>\"15,8\"</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Assign store</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>department_id</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Assign department</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>user_type_id</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Select user type (See legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>predefined_product_type</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Predefined product flag</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>price_defining_method</code></td>\n<td>Yes</td>\n<td>Int</td>\n<td>Price defining method (See legend)</td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>size_visible</code></td>\n<td>No</td>\n<td>String</td>\n<td>Enable size (Only for predefined product). <strong>If predefined_product_type=0, this is always forced to \"Yes\".</strong></td>\n<td>\"Yes\"</td>\n</tr>\n<tr>\n<td><code>enable_stock_management</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Stock management type (See legend)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>measurement_unit_id</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Measurement unit</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>enable_sheet_calculation</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Enable sheet calculation</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>product_service_type</code></td>\n<td>Yes</td>\n<td>Int</td>\n<td>Must be <strong>1</strong> always</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>linear_multiplication</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Apply Linear Formula</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>custom_panel</code></td>\n<td>No</td>\n<td>String</td>\n<td>Custom Panel (Y/N)</td>\n<td>\"N\"</td>\n</tr>\n<tr>\n<td><code>predefined_panel</code></td>\n<td>No</td>\n<td>String</td>\n<td>Predefined Panel (Y/N)</td>\n<td>\"N\"</td>\n</tr>\n<tr>\n<td><code>order_product_status_template</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Order product status ID</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>imagename</code></td>\n<td>No</td>\n<td>String</td>\n<td>Thumbnail image</td>\n<td>\"image.jpeg\"</td>\n</tr>\n<tr>\n<td><code>product_desc_image</code></td>\n<td>No</td>\n<td>String</td>\n<td>Large image</td>\n<td>\"imageasd.jpeg\"</td>\n</tr>\n<tr>\n<td><code>products_title</code></td>\n<td>Yes</td>\n<td>String</td>\n<td>Product title</td>\n<td>\"my product\"</td>\n</tr>\n<tr>\n<td><code>products_internal_title</code></td>\n<td>No</td>\n<td>String</td>\n<td>Internal product title</td>\n<td>\"internal prd title\"</td>\n</tr>\n<tr>\n<td><code>product_description</code></td>\n<td>No</td>\n<td>String</td>\n<td>Short description</td>\n<td>\"product desc\"</td>\n</tr>\n<tr>\n<td><code>long_description</code></td>\n<td>No</td>\n<td>String</td>\n<td>Long description</td>\n<td>\"long desc\"</td>\n</tr>\n<tr>\n<td><code>long_description_two</code></td>\n<td>No</td>\n<td>String</td>\n<td>Long description 2</td>\n<td>\"long two\"</td>\n</tr>\n<tr>\n<td><code>seo_page_title</code></td>\n<td>No</td>\n<td>String</td>\n<td>SEO page title</td>\n<td>\"seo title\"</td>\n</tr>\n<tr>\n<td><code>seo_page_description</code></td>\n<td>No</td>\n<td>String</td>\n<td>SEO page description</td>\n<td>\"seo desc\"</td>\n</tr>\n<tr>\n<td><code>seo_page_metatags</code></td>\n<td>No</td>\n<td>String</td>\n<td>SEO meta tags</td>\n<td>\"seo metatags\"</td>\n</tr>\n<tr>\n<td><code>schema_markup</code></td>\n<td>No</td>\n<td>String</td>\n<td>Schema markup</td>\n<td>\"schema markup\"</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td>No</td>\n<td>String</td>\n<td>External reference identifier for third-party system integration (max 255 chars)</td>\n<td>\"ERP-10001\"</td>\n</tr>\n<tr>\n<td><code>main_sku</code></td>\n<td>No</td>\n<td>String</td>\n<td>Main product SKU (stored with size_id=0). Send empty string to remove existing main SKU. Omit to leave unchanged.</td>\n<td>\"PROD-001\"</td>\n</tr>\n<tr>\n<td><code>external_catalogue</code></td>\n<td>No</td>\n<td>Int</td>\n<td>External catalogue flag</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>sizes</code></td>\n<td>Conditional</td>\n<td>Array</td>\n<td>Array of product sizes to create. <strong>Required for new products when predefined_product_type=0 &amp; price_defining_method!=3, or predefined_product_type=1 &amp; size_visible=\"Yes\".</strong> See <a href=\"set-product-size.md\">setProductSize API</a> for field details.</td>\n<td>See below</td>\n</tr>\n<tr>\n<td><code>pages</code></td>\n<td>No</td>\n<td>Array</td>\n<td>Array of product pages to create. <strong>If not provided for new products, a default \"Front\" page is created automatically.</strong> See <a href=\"set-product-pages.md\">setProductPages API</a> for field details.</td>\n<td>See below</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td>Int</td>\n<td>Set <strong>1</strong> to delete the product. <strong>Requires</strong> <strong><code>products_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"nested-sizes-fields\">Nested Sizes Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAM</th>\n<th>REQUIRED</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>size_title</code></td>\n<td>Yes</td>\n<td>String</td>\n<td>Size title</td>\n<td>\"Standard\"</td>\n</tr>\n<tr>\n<td><code>size_width</code></td>\n<td>Yes</td>\n<td>Float</td>\n<td>Size width</td>\n<td>3.5</td>\n</tr>\n<tr>\n<td><code>size_height</code></td>\n<td>Yes</td>\n<td>Float</td>\n<td>Size height</td>\n<td>2.0</td>\n</tr>\n<tr>\n<td><code>size_image</code></td>\n<td>No</td>\n<td>String</td>\n<td>Size image</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>size_hex_color</code></td>\n<td>No</td>\n<td>String</td>\n<td>Hex color</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>default_size</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Default size flag</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Sort order</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>No</td>\n<td>String</td>\n<td>Visibility</td>\n<td>\"1\"</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td>Float</td>\n<td>Setup cost</td>\n<td>0.00</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"nested-pages-fields\">Nested Pages Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAM</th>\n<th>REQUIRED</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page_title</code></td>\n<td>Yes</td>\n<td>String</td>\n<td>Page title</td>\n<td>\"Front\"</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Sort order</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>No</td>\n<td>String</td>\n<td>Visibility</td>\n<td>\"1\"</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"size-requirement-rules\">Size Requirement Rules</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><code>predefined_product_type</code></th>\n<th><code>price_defining_method</code></th>\n<th><code>size_visible</code></th>\n<th>Size required?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>!= 3</td>\n<td>Always \"Yes\"</td>\n<td>✅ Yes</td>\n</tr>\n<tr>\n<td>0</td>\n<td>3 (custom size)</td>\n<td>Always \"Yes\"</td>\n<td>❌ No</td>\n</tr>\n<tr>\n<td>1</td>\n<td>any</td>\n<td>\"Yes\"</td>\n<td>✅ Yes</td>\n</tr>\n<tr>\n<td>1</td>\n<td>any</td>\n<td>\"No\"</td>\n<td>❌ No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<ul>\n<li>If <code>price_defining_method = 3</code> (custom size), sizes cannot be added.</li>\n<li>If all sizes fail during creation, the product is rolled back (not saved).</li>\n<li>If all pages fail during creation, the product is rolled back (not saved).</li>\n<li>If at least one size/page succeeds, the product is kept.</li>\n</ul>\n<hr />\n<h1 id=\"legends\"><strong>Legends</strong></h1>\n<hr />\n<h2 id=\"product-type-product_type\"><strong>Product Type (<strong><strong><code>product_type</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Custom Design</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Upload Center</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Browse Design</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Quote Product</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Hire Designer</td>\n</tr>\n<tr>\n<td>15</td>\n<td>Add to cart</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"enable-stock-management-enable_stock_management\"><strong>Enable Stock Management (<strong><strong><code>enable_stock_management</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>None</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Only Size</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Size with Product Option</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"user-type-user_type_id\"><strong>User Type (<strong><strong><code>user_type_id</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Both</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Default Store (Retailer)</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Only Store</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"price-defining-method-price_defining_method\"><strong>Price Defining Method (<strong><strong><code>price_defining_method</code></strong></strong>)</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Fixed Quantity &amp; Price</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Range Based With Multiplication</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Range Based Without Multiplication</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Size Based Price (Dynamic Size)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"6d139ef6-3eb0-48a6-845c-4ed432f07421","name":"Add Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProduct ($input: ProductInput!) {\n    setProduct (input: $input) {\n        result\n        message\n        products_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"category_id\"  : 46,\n        \"multiple_category\" : \"29,46\",\n        \"products_draw_area_margins\" : \".125,.125,.125,.125\",\n        \"visible\" : 1,\n        \"sort_order\" : 99999,\n        \"products_draw_cutting_margins\" : \".0625,.0625,.0625,.0625\",\n        \"product_type\" : \"15,8\",\n        \"corporate_id\" : \"0\",\n        \"department_id\" : \"0\",\n        \"user_type_id\" : \"0\",\n        \"predefined_product_type\" : \"0\",\n        \"price_defining_method\" : \"3\",\n        \"size_visible\" : \"Yes\",\n        \"enable_stock_management\" : \"0\",\n        \"measurement_unit_id\" : 1,\n        \"enable_sheet_calculation\" : \"0\",\n        \"product_service_type\" : \"1\",\n        \"linear_multiplication\" : \"0\",\n        \"custom_panel\" : \"N\",\n        \"predefined_panel\" : \"N\",\n        \"order_product_status_template\" : 0,\n        \"imagename\" : \"image.jpeg\",\n        \"product_desc_image\" : \"imageasd.jpeg\",\n        \"products_title\" : \"my product\",\n        \"products_internal_title\" : \"internal prd title\",\n        \"product_description\" : \"product desc\",\n        \"long_description\" : \"long desc\",\n        \"long_description_two\" : \"long two\",\n        \"seo_page_title\" : \"seo title\",\n        \"seo_page_description\" : \"seo desc\",\n        \"seo_page_metatags\" : \"seo metatags\",\n        \"schema_markup\" : \"schema markup\",\n        \"production_description\" : \"product desc\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5927c82a-bd05-4a37-b504-d8686e72908b","name":"Update Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProduct ($input: ProductInput!) {\n    setProduct (input: $input) {\n        result\n        message\n        products_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"products_id\" : 336,\n        \"category_id\"  : 46,\n        \"multiple_category\" : \"29,46\",\n        \"products_draw_area_margins\" : \".125,.125,.125,.125\",\n        \"visible\" : 1,\n        \"sort_order\" : 99999,\n        \"products_draw_cutting_margins\" : \".0625,.0625,.0625,.0625\",\n        \"product_type\" : \"15,8\",\n        \"corporate_id\" : \"0\",\n        \"department_id\" : \"0\",\n        \"user_type_id\" : \"0\",\n        \"predefined_product_type\" : \"0\",\n        \"price_defining_method\" : \"3\",\n        \"size_visible\" : \"Yes\",\n        \"enable_stock_management\" : \"0\",\n        \"measurement_unit_id\" : 1,\n        \"enable_sheet_calculation\" : \"0\",\n        \"product_service_type\" : \"1\",\n        \"linear_multiplication\" : \"0\",\n        \"custom_panel\" : \"N\",\n        \"predefined_panel\" : \"N\",\n        \"order_product_status_template\" : 0,\n        \"imagename\" : \"image.jpeg\",\n        \"product_desc_image\" : \"imageasd.jpeg\",\n        \"products_title\" : \"my product\",\n        \"products_internal_title\" : \"internal prd title\",\n        \"product_description\" : \"product desc\",\n        \"long_description\" : \"long desc\",\n        \"long_description_two\" : \"long two\",\n        \"seo_page_title\" : \"seo title\",\n        \"seo_page_description\" : \"seo desc\",\n        \"seo_page_metatags\" : \"seo metatags\",\n        \"schema_markup\" : \"schema markup\",\n        \"production_description\" : \"product desc\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"efad01b0-125f-4217-9146-02dfcb86788e","name":"Delete Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProduct ($input: ProductInput!) {\n    setProduct (input: $input) {\n        result\n        message\n        products_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"products_id\" : 336,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b81a0929-48e7-4609-a9a2-07452d43a45a"},{"name":"Set Product Price","id":"a7bdcc1a-6f4f-4eec-beee-9f465b970a11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPrice ($inputs: [ProductPriceInput!]!) {\n    setProductPrice (inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : [\n        {\n        \"product_price_id\" : 0,\n        \"products_id\" : 336,\n        \"qty\" : 10,\n        \"qty_to\" : 100,\n        \"price\" : 0.9,\n        \"vendor_price\" : 50,\n        \"size_id\" : 541,\n        \"visible\" : \"1\",\n        \"user_type_id\" : \"2\",\n        \"corporate_id\" : 2,\n        \"price_defining_method\" : \"3\",\n        \"delete\" : 0\n    }\n    ]\n    \n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete product prices.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>product_price_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Price record ID. <strong>Required for update/delete.</strong></td>\n<td>1335</td>\n</tr>\n<tr>\n<td><code>products_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product ID. <strong>Required for insert.</strong></td>\n<td>336</td>\n</tr>\n<tr>\n<td><code>qty</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Quantity from (range start). <strong>Required for insert.</strong></td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>qty_to</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Quantity to (range end). <strong>Required for insert.</strong></td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Customer price</td>\n<td>0.9</td>\n</tr>\n<tr>\n<td><code>vendor_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Vendor/cost price</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>size_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Size ID for size-based pricing. <strong>Required for insert.</strong></td>\n<td>541</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Visibility status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>user_type_id</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>User type ID for type-specific pricing</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Corporate/store ID for store-specific pricing</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>price_defining_method</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Price defining method. <strong>Required for insert.</strong></td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the price record. <strong>Requires</strong> <strong><code>product_price_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"74581190-56e0-46b7-b6ad-9e1b061a1ca5","name":"Add Product Price","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPrice ($input: ProductPriceInput!) {\n    setProductPrice (input: $input) {\n        result\n        message\n        product_price_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"products_id\" : 336,\n        \"qty\" : 10,\n        \"qty_to\" : 100,\n        \"price\" : 0.9,\n        \"vendor_price\" : 50,\n        \"size_id\" : 541,\n        \"visible\" : \"1\",\n        \"user_type_id\" : \"2\",\n        \"corporate_id\" : 2,\n        \"price_defining_method\" : \"3\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f9e24f0d-3ad1-47ff-9e80-518576eef15f","name":"Update Product Price","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPrice ($input: ProductPriceInput!) {\n    setProductPrice (input: $input) {\n        result\n        message\n        product_price_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"product_price_id\" : 1335,\n        \"qty\" : 10,\n        \"qty_to\" : 100,\n        \"price\" : 0.9,\n        \"vendor_price\" : 50,\n        \"size_id\" : 541,\n        \"visible\" : \"1\",\n        \"user_type_id\" : \"2\",\n        \"corporate_id\" : 2,\n        \"price_defining_method\" : \"3\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c40b8b2c-246c-4ea0-a88f-453e950bd8e1","name":"Delete Product Price","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPrice ($input: ProductPriceInput!) {\n    setProductPrice (input: $input) {\n        result\n        message\n        product_price_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"product_price_id\" : 1335,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a7bdcc1a-6f4f-4eec-beee-9f465b970a11"},{"name":"Set Product Size","id":"a0b85680-7afc-48e2-ab76-069b5ac9f9c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductSize ($inputs: [ProductSizeInput!]!) {\n    setProductSize (inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : [\n        {\n            \"size_id\" : 0,\n            \"products_id\" : 374,\n            \"size_title\" : \"3x3\",\n            \"size_image\" : \"image.jpg\",\n            \"size_hex_color\" : \"#ff0000\",\n            \"size_width\" : 11,\n            \"size_height\" : 5,\n            \"default_size\" : 1,\n            \"sort_order\" : 1,\n            \"visible\" : \"1\",\n            \"delete\" : 1,\n            \"setup_cost\" : 10\n        }\n\n    ]\n    \n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete product sizes.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>size_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Size ID. <strong>Required for update/delete.</strong></td>\n<td>547</td>\n</tr>\n<tr>\n<td><code>products_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product ID. <strong>Required for insert.</strong></td>\n<td>288</td>\n</tr>\n<tr>\n<td><code>size_title</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Title/name of the size. <strong>Required for insert.</strong></td>\n<td>2x2</td>\n</tr>\n<tr>\n<td><code>size_image</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Size image filename</td>\n<td>image.jpg</td>\n</tr>\n<tr>\n<td><code>size_hex_color</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Hex color for size display</td>\n<td>#ff0000</td>\n</tr>\n<tr>\n<td><code>size_width</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Width dimension</td>\n<td>11</td>\n</tr>\n<tr>\n<td><code>size_height</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Height dimension</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>default_size</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Set as default size. Possible Values: 0, 1</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Visibility status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Setup cost for this size</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the size. <strong>Requires</strong> <strong><code>size_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"8486a038-c0b3-468b-bca0-d537b3179ed9","name":"Add Product Size","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductSize ($input: ProductSizeInput!) {\n    setProductSize (input: $input) {\n        result\n        message\n        product_size_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"products_id\" : 288,\n        \"size_title\" : \"2x2\",\n        \"size_image\" : \"image.jpg\",\n        \"size_hex_color\" : \"#ff0000\",\n        \"size_width\" : 10,\n        \"size_height\" : 5,\n        \"default_size\" : 1,\n        \"sort_order\" : 1,\n        \"visible\" : \"1\",\n        \"setup_cost\" : 10\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4d460e98-8fa2-4733-8630-bab3ebfa2753","name":"Update Product Size","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductSize ($input: ProductSizeInput!) {\n    setProductSize (input: $input) {\n        result\n        message\n        product_size_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"size_id\" : 547,\n        \"size_title\" : \"2x2\",\n        \"size_image\" : \"image.jpg\",\n        \"size_hex_color\" : \"#ff0000\",\n        \"size_width\" : 10,\n        \"size_height\" : 5,\n        \"default_size\" : 1,\n        \"sort_order\" : 1,\n        \"visible\" : \"1\",\n        \"setup_cost\" : 10\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c41c68b5-596f-4958-a7cd-b2ff660cb61a","name":"Delete Product Size","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductSize ($input: ProductSizeInput!) {\n    setProductSize (input: $input) {\n        result\n        message\n        product_size_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"size_id\" : 547,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a0b85680-7afc-48e2-ab76-069b5ac9f9c4"},{"name":"Set Product Pages","id":"976448c9-9e67-45d8-b84c-22bffd1302d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPages ($inputs: [ProductPagesInput!]!) {\n    setProductPages (inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : [\n        {\n            \"pages_id\" : 0,\n            \"products_id\" : 397,\n            \"page_title\" : \"new \",\n            \"sort_order\" : 2,\n            \"visible\" : \"1\"\n        },\n        {\n            \"pages_id\" : 0,\n            \"products_id\" : 397,\n            \"page_title\" : \"new11 \",\n            \"sort_order\" : 2,\n            \"visible\" : \"1\"\n        }\n    ]\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete product pages (for multi-page products like photobooks, catalogs). Accepts an array of inputs for batch operations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>pages_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Page ID. <strong>Required for update/delete.</strong> Omit or set 0 for insert.</td>\n<td>311</td>\n</tr>\n<tr>\n<td><code>products_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product ID. <strong>Required for insert.</strong></td>\n<td>288</td>\n</tr>\n<tr>\n<td><code>page_title</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Title of the page. <strong>Required for insert.</strong></td>\n<td>\"Front\"</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Visibility status</td>\n<td>\"1\"</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the page. <strong>Requires</strong> <strong><code>pages_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"49fa4822-55cc-4191-959a-cb12baf72d2e","name":"Add Product Pages","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPages ($input: ProductPagesInput!) {\n    setProductPages (input: $input) {\n        result\n        message\n        product_page_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"pages_id\" : 0,\n        \"products_id\" : 288,\n        \"page_title\" : \"new \",\n        \"sort_order\" : 2,\n        \"visible\" : \"1\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d5ca5f74-18c7-47c8-b295-236795485a50","name":"Update Product Pages","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPages ($input: ProductPagesInput!) {\n    setProductPages (input: $input) {\n        result\n        message\n        product_page_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"pages_id\" : 325,\n        \"products_id\" : 288,\n        \"page_title\" : \"new \",\n        \"sort_order\" : 2,\n        \"visible\" : \"1\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a5a33eec-63c0-45bf-9ed1-b40d9ac0ca83","name":"Delete Product Pages","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductPages ($input: ProductPagesInput!) {\n    setProductPages (input: $input) {\n        result\n        message\n        product_page_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"pages_id\" : 325,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"976448c9-9e67-45d8-b84c-22bffd1302d5"},{"name":"Set Product Image Gallery","id":"d1413720-9f93-4046-99d4-d41e1b62714e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductsImageGallery($products_id : Int!, $optimizeimg : Int, $input: ProductsImageGalleryBulkInput!) {\n  setProductsImageGallery(products_id: $products_id, optimizeimg: $optimizeimg, input: $input) {\n    index\n    result\n    message\n    id\n  }\n}","variables":"{\n    \"products_id\": 262,\n    \"optimizeimg\": 0,\n    \"input\": {\n        \"image_arr\": [\n            {\n                \"products_image_gallery_id\": 1438,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"Update Image 1093\",\n                \"products_large_image_name\": \"test22.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            },\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"New Entry\",\n                \"products_large_image_name\": \"test23.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            },\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"New Entry\",\n                \"products_large_image_name\": \"test24.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            },\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"New Entry\",\n                \"products_large_image_name\": \"test.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete product image gallery images.</p>\n<h3 id=\"image-folder---imagesproducts_gallery_images\"><strong>Image Folder - images/products_gallery_images</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Product ID for which images will be uploaded</td>\n<td>108</td>\n</tr>\n<tr>\n<td><code>optimizeimg</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Optimize image or not. Possible Values - 0,1</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>image_arr</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of product gallery images</td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"product-image-object-inside-image_arr\">Product Image Object (Inside <code>image_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>productsImageGallery_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Image ID. Required only for update and delete</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete image. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to override images for store</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Title of image</td>\n<td>Product Image</td>\n</tr>\n<tr>\n<td><code>products_large_image_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Image filename</td>\n<td>image.jpg</td>\n</tr>\n<tr>\n<td><code>option_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to assign image option combination wise</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>attribute_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to assign image option combination wise</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>option_ids</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Multiple option IDs (comma separated)</td>\n<td>\"1,2\"</td>\n</tr>\n<tr>\n<td><code>attribute_ids</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Multiple attribute IDs (comma separated)</td>\n<td>\"10,20\"</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order of image</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Status of image. Possible Values - 0,1</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e5ae57dc-3164-41e6-b011-0e9461647bc0","name":"Add Image","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductsImageGallery($products_id : Int!, $optimizeimg : Int, $input: ProductsImageGalleryBulkInput!) {\n  setProductsImageGallery(products_id: $products_id, optimizeimg: $optimizeimg, input: $input) {\n    result\n    message {\n      id\n      status\n      message\n    }\n  }\n}","variables":"{\n    \"products_id\": 262,\n    \"optimizeimg\": 0,\n    \"input\": {\n        \"image_arr\": [\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"Update Image 1093\",\n                \"products_large_image_name\": \"test22.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            },\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"New Entry\",\n                \"products_large_image_name\": \"test23.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            },\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"New Entry\",\n                \"products_large_image_name\": \"test24.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            },\n            {\n                \"products_image_gallery_id\": 0,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"New Entry\",\n                \"products_large_image_name\": \"test.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"19cc2502-cdd3-4743-82f9-d5e9bf9c1528","name":"Update Image","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductsImageGallery($products_id : Int!, $optimizeimg : Int, $input: ProductsImageGalleryBulkInput!) {\n  setProductsImageGallery(products_id: $products_id, optimizeimg: $optimizeimg, input: $input) {\n    result\n    message {\n      id\n      status\n      message\n    }\n  }\n}","variables":"{\n    \"products_id\": 262,\n    \"optimizeimg\": 0,\n    \"input\": {\n        \"image_arr\": [\n            {\n                \"products_image_gallery_id\": 1002,\n                \"delete\": 0,\n                \"corporate_id\": 0,\n                \"title\": \"Update Image 1093\",\n                \"products_large_image_name\": \"test22.jpg\",\n                \"option_id\": 0,\n                \"attribute_id\": 11605,\n                \"option_ids\": \"\",\n                \"attribute_ids\": \"11605,11601\",\n                \"sort_order\": 13,\n                \"status\": \"1\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"916795d0-0f0c-4695-ad92-6daba02c12b8","name":"Delete Image","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductsImageGallery($products_id : Int!, $optimizeimg : Int, $input: ProductsImageGalleryBulkInput!) {\n  setProductsImageGallery(products_id: $products_id, optimizeimg: $optimizeimg, input: $input) {\n    result\n    message {\n      id\n      status\n      message\n    }\n  }\n}","variables":"{\n    \"products_id\": 262,\n    \"optimizeimg\": 0,\n    \"input\": {\n        \"image_arr\": [\n            {\n                \"products_image_gallery_id\": 1002,\n                \"delete\": 1\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d1413720-9f93-4046-99d4-d41e1b62714e"},{"name":"Set Product Additional Option","id":"d9fbe1ed-3c52-4563-aaf5-e3c7061fdc69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAdditionalOption($inputs: [AdditionalOptionInput!]!) {\n    setAdditionalOption(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\": [\n        {\n        \"prod_add_opt_id\": 0,\n        \"delete\":0,\n        \"products_id\": 108,\n        \"options_type\": \"radio\",\n        \"title\": \"Api Option\",\n        \"price_calculate_type\": \"1\",\n        \"product_option_position\" : \"I\",\n        \"product_option_desc_position\" : \"I\",\n        \"description\": \"Api option\",\n        \"status\": \"1\",\n        \"sort_order\": 1,\n        \"display_in_calculator\": \"1\",\n        \"apply_multiplication\": \"1\",\n        \"option_key\" : \"test_apiopt\",\n        \"required\": \"0\",\n        \"hide_from_calc\": \"0\",\n        \"exclude_price\": \"0\",\n        \"hire_designer_option\" : \"0\",\n        \"setup_cost\": 1,\n        \"exclude_setup_cost_reorder\": 0,\n        \"display_above_size\": 0,\n        \"prod_add_opt_group_id\": 0\n    },\n    {\n        \"prod_add_opt_id\": 0,\n        \"delete\":0,\n        \"products_id\": 108,\n        \"options_type\": \"radio\",\n        \"title\": \"Api Option\",\n        \"price_calculate_type\": \"1\",\n        \"product_option_position\" : \"I\",\n        \"product_option_desc_position\" : \"I\",\n        \"description\": \"Api option\",\n        \"status\": \"1\",\n        \"sort_order\": 1,\n        \"display_in_calculator\": \"1\",\n        \"apply_multiplication\": \"1\",\n        \"option_key\" : \"test_apiopt\",\n        \"required\": \"0\",\n        \"hide_from_calc\": \"0\",\n        \"exclude_price\": \"0\",\n        \"setup_cost\": 1,\n        \"exclude_setup_cost_reorder\": 0,\n        \"display_above_size\": 0,\n        \"prod_add_opt_group_id\": 0\n    }\n    ]\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete product options.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>prod_add_opt_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product option ID. Required only for update and delete</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete the product option. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Product ID where option will be assigned</td>\n<td>108</td>\n</tr>\n<tr>\n<td><code>options_type</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Type of product option</td>\n<td>radio</td>\n</tr>\n<tr>\n<td><code>product_option_position</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Position of product option label</td>\n<td>I</td>\n</tr>\n<tr>\n<td><code>product_option_desc_position</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Position of product option description</td>\n<td>I</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Title of the option</td>\n<td>Api Option</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Description of the option</td>\n<td>Api option</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Status of option</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>display_in_calculator</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Show option in calculator. Possible Values - 0,1</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>price_calculate_type</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Price calculate type</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>apply_multiplication</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Apply multiplication. Possible Values - 0,1</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>option_key</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Unique key of the option</td>\n<td>test_apiopt</td>\n</tr>\n<tr>\n<td><code>required</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Set option as required. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>hide_from_calc</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Hide option from calculator. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>exclude_price</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Exclude option price. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Setup cost of the option</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>exclude_setup_cost_reorder</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Exclude setup cost on reorder. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>display_above_size</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Display option above size. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_group_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Product option group ID</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9fbe1ed-3c52-4563-aaf5-e3c7061fdc69"},{"name":"Set Product SKU - Staging","id":"7bbc6957-699a-4a8e-b741-2dcbf1d97088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductSku($inputs: [ProductSkuInput!]!) {\n    setProductSku(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\": [\n        {\n            \"products_id\" : 288,\n            \"sku_type\" : \"size_option_wise\",\n            \"size_id\" : 611,\n            \"prod_add_opt_ids\" : \"6557\",\n            \"attribute_ids\" : \"11481\",\n            \"sku\" : \"test1sku\",\n            \"delete\" : 0\n        },\n        {\n            \"products_id\" : 288,\n            \"sku_type\" : \"size_option_wise\",\n            \"size_id\" : 508,\n            \"prod_add_opt_ids\" : \"6557\",\n            \"attribute_ids\" : \"11481\",\n            \"sku\" : \"SKU-001\",\n            \"delete\" : 0\n        },\n        {\n            \"products_id\" : 350,\n            \"sku_type\" : \"size_option_wise\",\n            \"size_id\" : 601,\n            \"prod_add_opt_ids\" : \"8021,8022\",\n            \"attribute_ids\" : \"13868,13871\",\n            \"sku\" : \"ok new\",\n            \"delete\" : 0\n        }\n    ]\n}"}},"url":"{{api_url}}","description":"<p>This API is used to set product SKU variants. You can setup SKU for products based on two different methods. SKU will be considered for only one method at a time.</p>\n<ul>\n<li><strong>Size Wise</strong> : SKU can be defined based on product sizes.</li>\n<li><strong>Size Option Wise</strong> : SKU can be defined for each combination of Size and Option attributes.</li>\n</ul>\n<p>Remaining sizes or combinations that are not provided will be auto-filled with blank SKU entries. Switching between methods will remove previous method's records automatically.</p>\n<p>To set the main product SKU, use the <code>setProduct</code> mutation with the <code>main_sku</code> field.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Product ID</td>\n<td>336</td>\n</tr>\n<tr>\n<td><code>sku_type</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>SKU method. <strong>Required for insert/update.</strong> Possible Values: <code>size_wise</code>, <code>size_option_wise</code></td>\n<td>\"size_wise\"</td>\n</tr>\n<tr>\n<td><code>size_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product size ID. <strong>Required for insert/update.</strong></td>\n<td>101</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_ids</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Comma-separated option IDs. <strong>Required for</strong> <strong><code>size_option_wise</code>****.</strong></td>\n<td>\"8021,8022\"</td>\n</tr>\n<tr>\n<td><code>attribute_ids</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Comma-separated attribute IDs (one per option, same order). <strong>Required for</strong> <strong><code>size_option_wise</code>****.</strong> Count must match <code>prod_add_opt_ids</code>.</td>\n<td>\"13868,13871\"</td>\n</tr>\n<tr>\n<td><code>sku</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>SKU value (can be empty). <strong>Required for insert/update.</strong></td>\n<td>\"SKU-BLK-LG-001\"</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete all variant SKUs for the product. Only <code>products_id</code> needed.</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"size-option-wise--matrix-example\"><strong>Size Option Wise — Matrix Example</strong></h2>\n<p>When using <code>size_option_wise</code>, each entry represents one cell in the matrix of <strong>Sizes × Option Attribute Combinations</strong>.</p>\n<p><strong>Setup:</strong></p>\n<ul>\n<li>Product has 2 sizes: <code>Small (101)</code>, <code>Large (102)</code></li>\n<li>2 options selected: <code>Color (8021)</code>, <code>Material (8022)</code></li>\n<li>Color attributes: <code>Black (13868)</code>, <code>White (13869)</code></li>\n<li>Material attributes: <code>Cotton (13871)</code>, <code>Polyester (13872)</code></li>\n</ul>\n<p><strong>How</strong> <strong><code>prod_add_opt_ids</code></strong> <strong>and</strong> <strong><code>attribute_ids</code></strong> <strong>work:</strong></p>\n<p><code>prod_add_opt_ids</code> stays the same for all entries — it's the selected options: <code>\"8021,8022\"</code></p>\n<p><code>attribute_ids</code> changes per entry — one attribute per option in the <strong>same order</strong>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Size</th>\n<th>Color (8021)</th>\n<th>Material (8022)</th>\n<th><code>attribute_ids</code></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Small (101)</td>\n<td>Black (13868)</td>\n<td>Cotton (13871)</td>\n<td>\"13868,13871\"</td>\n</tr>\n<tr>\n<td>Small (101)</td>\n<td>Black (13868)</td>\n<td>Polyester (13872)</td>\n<td>\"13868,13872\"</td>\n</tr>\n<tr>\n<td>Small (101)</td>\n<td>White (13869)</td>\n<td>Cotton (13871)</td>\n<td>\"13869,13871\"</td>\n</tr>\n<tr>\n<td>Small (101)</td>\n<td>White (13869)</td>\n<td>Polyester (13872)</td>\n<td>\"13869,13872\"</td>\n</tr>\n<tr>\n<td>Large (102)</td>\n<td>Black (13868)</td>\n<td>Cotton (13871)</td>\n<td>\"13868,13871\"</td>\n</tr>\n<tr>\n<td>Large (102)</td>\n<td>Black (13868)</td>\n<td>Polyester (13872)</td>\n<td>\"13868,13872\"</td>\n</tr>\n<tr>\n<td>Large (102)</td>\n<td>White (13869)</td>\n<td>Cotton (13871)</td>\n<td>\"13869,13871\"</td>\n</tr>\n<tr>\n<td>Large (102)</td>\n<td>White (13869)</td>\n<td>Polyester (13872)</td>\n<td>\"13869,13872\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Total entries = Sizes (2) × Color attrs (2) × Material attrs (2) = 8</strong></p>\n<p>You only need to send entries where you want to set a SKU value. Remaining combinations will be auto-filled with blank SKU.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bbc6957-699a-4a8e-b741-2dcbf1d97088"},{"name":"Set Product Additional Option  Attribute","id":"a18d2601-e48d-4838-a709-68c61c6d7aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAdditionalOptionAttributes($inputs: [AdditionalOptionAttributesInput!]!) {\n    setAdditionalOptionAttributes(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\": {\n        \"attribute_id\": 0,\n        \"prod_add_opt_id\": 6620,\n        \"label\": \"Test API Gloass\",\n        \"attr_desc\": \"API Attr1\",\n        \"attribute_key\" : \"\",\n        \"status\": \"1\",\n        \"sort_order\": 1,\n        \"default_attribute\": \"0\",\n        \"setup_cost\": 5.00,\n        \"hex_color\": \"\",\n        \"op_statusid\": 0,\n        \"delete\": 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete product option attributes.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attribute_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Attribute ID. Required only for update and delete</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Product option ID where attribute will be assigned</td>\n<td>6620</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Label of the attribute</td>\n<td>Test API Gloass</td>\n</tr>\n<tr>\n<td><code>attr_desc</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Description of the attribute</td>\n<td>API Attr1</td>\n</tr>\n<tr>\n<td><code>attribute_key</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Unique key of the attribute</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Status of the attribute</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>default_attribute</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Set default attribute. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Setup cost of the attribute</td>\n<td>5.00</td>\n</tr>\n<tr>\n<td><code>hex_color</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Hex color code of the attribute</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>op_statusid</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Order product status ID</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete the product option attribute. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a18d2601-e48d-4838-a709-68c61c6d7aa9"},{"name":"Set Product Additional Option Attribute Price","id":"64631530-6563-4e16-92f0-af78357b8975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductsAttributePrice($inputs: [ProductsAttributePriceInput!]!) {\n    setProductsAttributePrice(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\": {\n        \"attribute_id\": 11621,\n        \"size_from\": 0.01,\n        \"size_to\": 99999999.99,\n        \"attributes_price\": 100,\n        \"vendor_price\" : 50,\n        \"site_admin_markup\":200,\n        \"delete\": 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete product attribute price.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attribute_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Attribute ID where price will be added, updated, or deleted</td>\n<td>11605</td>\n</tr>\n<tr>\n<td><code>size_from</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>From size of product</td>\n<td>0.01</td>\n</tr>\n<tr>\n<td><code>size_to</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>To size of product</td>\n<td>99999999.99</td>\n</tr>\n<tr>\n<td><code>attributes_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Price of attribute</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>vendor_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Cost of attribute</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>site_admin_markup</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Admin markup for price</td>\n<td>200</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete attribute price. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"64631530-6563-4e16-92f0-af78357b8975"},{"name":"Set Quantity Based Attribute Price","id":"2fd99847-6cd9-4b6f-949f-4a726afc5b3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setQuantityBasedAttributePrice($inputs: [QuantityBasedAttributePriceInput!]!) {\n    setQuantityBasedAttributePrice(inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\": {\n        \"attribute_id\": 100,\n        \"size_from\": 1,\n        \"size_to\": 11,\n        \"quantity_from\": 5,\n        \"quantity_to\": 55,\n        \"attribute_price\": 7,\n        \"delete\":0,\n        \"vendor_price\" : 50,\n        \"site_admin_markup\":200\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete quantity based product attribute price.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attribute_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Attribute ID where price will be added, updated, or deleted</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>size_from</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>From size of product</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>size_to</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>To size of product</td>\n<td>11</td>\n</tr>\n<tr>\n<td><code>quantity_from</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>From quantity of product</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>quantity_to</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>To quantity of product</td>\n<td>55</td>\n</tr>\n<tr>\n<td><code>attribute_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Price of attribute</td>\n<td>7</td>\n</tr>\n<tr>\n<td><code>vendor_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Cost of attribute</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>site_admin_markup</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Admin markup for price</td>\n<td>200</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete attribute price. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fd99847-6cd9-4b6f-949f-4a726afc5b3b"},{"name":"Update Product Stock","id":"49ad6e7a-375b-498b-8418-74e95efeec17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateProductStock ($stock_id: Int, $product_sku: String, $action: UpdateProductStockActionEnum!, $input: UpdateProductStockInput!) {\n    updateProductStock (stock_id: $stock_id, product_sku: $product_sku, action: $action, input: $input) {\n        result\n        message\n        stock_id\n        stock_quantity\n    }\n}","variables":"{\n  \"stock_id\": 88,\n  \"product_sku\": \"\",\n  \"action\": \"Remove\",\n  \"input\": {\n    \"stock_quantity\": 20,\n    \"comment\": \"Removed.\"\n  }\n}"}},"url":"{{api_url}}","description":"<p>This API facilitates the management of product stock levels by allowing users to add new stock, update existing stock, or delete stock entries. Users can provide comments to document the reason for the stock change.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMETERS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Use this parameter to make modification of stock by it's stock id.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>product_sku</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Use this parameter to make modification of stock by product SKU.</td>\n<td>AOP-123</td>\n</tr>\n<tr>\n<td><code>action</code></td>\n<td>Yes</td>\n<td><em>Enum</em></td>\n<td>Use this parameter to perform particular action of a stock</td>\n<td>Add / Remove / Reset</td>\n</tr>\n<tr>\n<td><code>stock_quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Use this parameter to define quantity of stock.</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Use this paramter to put comment for modification.</td>\n<td>New stock updated</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"840eb1e6-f37c-4360-8fce-9cb2d1db6d9c","name":"Add Product Stock Using Stock Id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation updateProductStock ($stock_id: Int, $product_sku: String, $action: UpdateProductStockActionEnum!, $input: UpdateProductStockInput!) {\n    updateProductStock (stock_id: $stock_id, product_sku: $product_sku, action: $action, input: $input) {\n        result\n        message\n        stock_id\n        stock_quantity\n    }\n}","variables":"{\n  \"stock_id\": 1,\n  \"action\": \"Add\",\n  \"input\": {\n    \"stock_quantity\": 100,\n    \"comment\": \"Add 100 new stock.\"\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"updateProductStock\": {\n        \"result\": true,\n        \"message\": \"Product Stock action successfully done.\",\n        \"stock_id\": 1,\n        \"stock_quantity\": 200\n    }\n  }\n}"},{"id":"9e6d4e93-da7e-4de3-8312-71b2d2eeae8f","name":"Remove Product Stock Using Stock Id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation updateProductStock ($stock_id: Int, $product_sku: String, $action: UpdateProductStockActionEnum!, $input: UpdateProductStockInput!) {\n    updateProductStock (stock_id: $stock_id, product_sku: $product_sku, action: $action, input: $input) {\n        result\n        message\n        stock_id\n        stock_quantity\n    }\n}","variables":"{\n  \"stock_id\": 1,\n  \"action\": \"Remove\",\n  \"input\": {\n    \"stock_quantity\": 50,\n    \"comment\": \"Remove 50 stock.\"\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"updateProductStock\": {\n      \"result\": true,\n      \"message\": \"Product Stock action successfully done.\",\n      \"stock_id\": 1,\n      \"stock_quantity\": 150\n    }\n  }\n}"},{"id":"da779bd5-e463-406c-aafc-5ea412976444","name":"Reset Product Stock Using Stock Id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation updateProductStock ($stock_id: Int, $product_sku: String, $action: UpdateProductStockActionEnum!, $input: UpdateProductStockInput!) {\n    updateProductStock (stock_id: $stock_id, product_sku: $product_sku, action: $action, input: $input) {\n        result\n        message\n        stock_id\n        stock_quantity\n    }\n}","variables":"{\n  \"stock_id\": 1,\n  \"action\": \"Reset\",\n  \"input\": {\n    \"stock_quantity\": 50,\n    \"comment\": \"Reset existing stock to 50.\"\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"updateProductStock\": {\n      \"result\": true,\n      \"message\": \"Product Stock action successfully done.\",\n      \"stock_id\": 1,\n      \"stock_quantity\": 50\n    }\n  }\n}"}],"_postman_id":"49ad6e7a-375b-498b-8418-74e95efeec17"},{"name":"Assign Options","id":"8bad5989-2d7b-4902-bf2f-a7ef717fca22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAssignOptions ($inputs: [AssignOptionsInput!]!) {\n    setAssignOptions (inputs: $inputs) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"inputs\" : {\n        \"products_id\" : 131,\n        \"product_option_id\" : 8246,\n        \"attribute_ids\":[\n            {\n                \"attrid\" : 1399,\n                \"setup_cost\": 10,\n                \"label\": \"new lbl\"\n            },\n            {\n                \"attrid\" : 161,\n                \"setup_cost\": 10\n            }\n        ],\n        \"setup_cost\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to assign, update, or delete product options and their attributes for a specific product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product ID. <strong>Required when assigning new option</strong> (i.e. <code>product_option_id</code> is 0 or not provided)</td>\n<td>336</td>\n</tr>\n<tr>\n<td><code>master_option_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Master option ID to assign. <strong>Required when assigning new option</strong> (i.e. <code>product_option_id</code> is 0 or not provided). Must be a valid master option ID. Cannot assign same master option twice to a product.</td>\n<td>50</td>\n</tr>\n<tr>\n<td><code>product_option_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Existing product option ID. <strong>Required for update or delete operations.</strong> When provided with value &gt; 0, the API performs update/delete instead of insert.</td>\n<td>6624</td>\n</tr>\n<tr>\n<td><code>option_lbl</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Custom label for the option.</td>\n<td>new lbl</td>\n</tr>\n<tr>\n<td><code>attribute_ids</code></td>\n<td>Conditional</td>\n<td><em>Array</em></td>\n<td>Array of attributes to assign/update/delete. <strong>Required when assigning new option.</strong> For update, only include attributes you want to add/modify/delete.</td>\n<td>[]</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Setup cost for the option</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the assigned option. <strong>Requires</strong> <strong><code>product_option_id</code></strong> <strong>to be set.</strong> Also deletes associated description records.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>display_in_calculator</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Show in calculator. Possible Values: 0, 1. <strong>Default:</strong> Inherited from master option's <code>presentation_settings</code> if not provided.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>hide_from_calc</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Hide from calculator. Possible Values: 0, 1. <strong>Default:</strong> Inherited from master option if not provided.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>product_option_position</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Option position. <strong>Default:</strong> Inherited from master option's <code>presentation_settings</code> if not provided.</td>\n<td>I</td>\n</tr>\n<tr>\n<td><code>product_option_desc_position</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Option description position. <strong>Default:</strong> Inherited from master option's <code>presentation_settings</code> if not provided.</td>\n<td>I</td>\n</tr>\n<tr>\n<td><code>display_above_size</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Display above size. Possible Values: 0, 1. <strong>Default:</strong> Inherited from master option's <code>presentation_settings</code> if not provided.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>hire_designer_option</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Hire designer option. Possible Values: 0, 1. <strong>Note:</strong> When set to <code>1</code>, <code>display_above_size</code> is automatically set to <code>0</code>.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>prod_add_opt_group_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Option group ID. <strong>Default:</strong> Inherited from master option's <code>presentation_settings</code> if not provided.</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>exclude_setup_cost_reorder</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Exclude setup cost on reorder. Possible Values: 0, 1. <strong>Default:</strong> Inherited from master option's <code>presentation_settings</code> if not provided.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>exclude_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Exclude price. Possible Values: 0, 1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order. <strong>Default:</strong> Inherited from master option's <code>sort_order</code> if not provided.</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"attribute-object-inside-attribute_ids\">Attribute Object (Inside <code>attribute_ids</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attrid</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Master attribute ID. Must be a valid attribute belonging to the specified <code>master_option_id</code>.</td>\n<td>132</td>\n</tr>\n<tr>\n<td><code>setup_cost</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Setup cost for this attribute. <strong>Default:</strong> Inherited from master option attribute if not provided.</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Custom label for this attribute</td>\n<td>lbl1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order for this attribute. <strong>Default:</strong> Inherited from master option attribute if not provided.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete this attribute from the assigned option. <strong>Only works during update</strong> (when <code>product_option_id</code> is provided).</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"61a2cfda-9353-4515-b52b-bfce31909049","name":"Assign Option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAssignOptions ($input: AssignOptionsInput!) {\n    setAssignOptions (input: $input) {\n        result\n        message\n        product_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"products_id\" : 336,\n        \"master_option_id\" : 50,\n        \"option_lbl\" : \"new lbl\",\n        \"attribute_ids\":[\n            {\n                \"attrid\" : 132,\n                \"setup_cost\": 10,\n                \"label\": \"lbl1\"\n            },\n            {\n                \"attrid\" : 1017,\n                \"setup_cost\": 10,\n                \"label\": \"lbl2\"\n            }\n        ],\n        \"setup_cost\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"643d8341-22e4-45ff-b070-411dbe81d9a4","name":"Assign Option With override","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAssignOptions ($input: AssignOptionsInput!) {\n    setAssignOptions (input: $input) {\n        result\n        message\n        product_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"products_id\" : 336,\n        \"master_option_id\" : 50,\n        \"option_lbl\" : \"new lbl\",\n        \"attribute_ids\":[\n            {\n                \"attrid\" : 132,\n                \"setup_cost\": 10,\n                \"label\": \"lbl1\"\n            },\n            {\n                \"attrid\" : 1017,\n                \"setup_cost\": 10,\n                \"label\": \"lbl2\"\n            }\n        ],\n        \"setup_cost\" : 0,\n        \"display_in_calculator\" : \"1\",\n        \"hide_from_calc\" : \"0\",\n        \"product_option_position\" : \"I\",\n        \"product_option_desc_position\" : \"I\",\n        \"display_above_size\" : \"0\",\n        \"hire_designer_option\" : \"0\",\n        \"prod_add_opt_group_id\" : 5,\n        \"exclude_setup_cost_reorder\" : 0,\n        \"exclude_price\" : 0,\n        \"sort_order\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"678990e7-8462-4c22-8070-dc279efea961","name":"Update Assigned Option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAssignOptions ($input: AssignOptionsInput!) {\n    setAssignOptions (input: $input) {\n        result\n        message\n        product_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"product_option_id\" : 6624,\n        \"option_lbl\" : \"new lbl\",\n        \"attribute_ids\":[\n            {\n                \"attrid\" : 132,\n                \"setup_cost\": 10,\n                \"label\": \"lbl1\"\n            },\n            {\n                \"attrid\" : 1017,\n                \"setup_cost\": 10,\n                \"label\": \"lbl2\"\n            }\n        ],\n        \"setup_cost\" : 0,\n        \"display_in_calculator\" : \"1\",\n        \"hide_from_calc\" : \"0\",\n        \"product_option_position\" : \"I\",\n        \"product_option_desc_position\" : \"I\",\n        \"display_above_size\" : \"0\",\n        \"hire_designer_option\" : \"0\",\n        \"prod_add_opt_group_id\" : 5,\n        \"exclude_setup_cost_reorder\" : 0,\n        \"exclude_price\" : 0,\n        \"sort_order\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3b0b5699-41a1-47af-80d0-852acfdda433","name":"Delete Assigned Option Attribute","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAssignOptions ($input: AssignOptionsInput!) {\n    setAssignOptions (input: $input) {\n        result\n        message\n        product_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"product_option_id\" : 6624,\n        \"attribute_ids\":[\n            {\n                \"attrid\" : 132,\n                \"delete\": 1\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cf895175-8150-43e4-9d63-fbaa125ca73a","name":"Delete Assigned Option","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setAssignOptions ($input: AssignOptionsInput!) {\n    setAssignOptions (input: $input) {\n        result\n        message\n        product_option_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"product_option_id\" : 6624,\n        \"delete\": 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8bad5989-2d7b-4902-bf2f-a7ef717fca22"},{"name":"Set Product Category","id":"6c251c82-2d7b-49b6-830c-88efbbadd0a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductCategory($inputs: [ProductCategoryInput!]!) {\n  setProductCategory(inputs: $inputs) {\n    index\n    result\n    message\n    id\n    external_ref\n  }\n}","variables":"{\n  \"inputs\": {\n    \"category_id\": 0,\n    \"category_name\": \"TEST prd categroy\",\n    \"category_internal_name\": \"internal name prd categroy\",\n    \"category_image\" : \"category_image.jpg\",\n    \"category_icon\" : \"category_icon.jpg\",\n    \"category_header_content\": \"categroy header content\",\n    \"description\": \"desc prd categroy\",\n    \"long_description\": \"long desc prd categroy\",\n    \"long_description_two\": \"long desc two prd categroy\",\n    \"seo_page_title\" : \"seo page title\",\n    \"seo_page_description\": \"seo page desc\",\n    \"parent_id\": -1,\n    \"status\": \"1\",\n    \"delete\": 0,\n    \"sort_order\": 5,\n    \"external_ref\" : \"CATE-00001\"\n  }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete product categories. Accepts a single input object or an array of inputs for batch operations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>category_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Category ID. Set 0 for insert. <strong>Required for update/delete.</strong></td>\n<td>120</td>\n</tr>\n<tr>\n<td><code>category_name</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Category name. <strong>Required for insert.</strong></td>\n<td>TEST prd categroy</td>\n</tr>\n<tr>\n<td><code>category_internal_name</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Internal category name</td>\n<td>internal name prd categroy</td>\n</tr>\n<tr>\n<td><code>category_image</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Category image filename</td>\n<td>category_image.jpg</td>\n</tr>\n<tr>\n<td><code>category_icon</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Category icon filename</td>\n<td>category_icon.jpg</td>\n</tr>\n<tr>\n<td><code>category_header_content</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Header content for category page</td>\n<td>categroy header content</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Short description</td>\n<td>desc prd categroy</td>\n</tr>\n<tr>\n<td><code>long_description</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Long description</td>\n<td>long desc prd categroy</td>\n</tr>\n<tr>\n<td><code>long_description_two</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Secondary long description</td>\n<td>long desc two prd categroy</td>\n</tr>\n<tr>\n<td><code>seo_page_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>SEO page title</td>\n<td>seo page title</td>\n</tr>\n<tr>\n<td><code>seo_page_description</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>SEO meta description</td>\n<td>seo page desc</td>\n</tr>\n<tr>\n<td><code>parent_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Parent category ID. Use -1 for root level.</td>\n<td>-1</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Category status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>sort_order</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Sort order</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>External reference identifier (max 255 chars). Used to link category to external systems (e.g., ERP).</td>\n<td>ERP-10001</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the category. <strong>Requires <code>category_id</code>.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>index</code></td>\n<td><em>Int</em></td>\n<td>Index of the input item in the batch</td>\n</tr>\n<tr>\n<td><code>result</code></td>\n<td><em>Boolean</em></td>\n<td>Whether the operation succeeded</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td><em>String</em></td>\n<td>Success or error message</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><em>Int</em></td>\n<td>The category ID of the created/updated category</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td><em>String</em></td>\n<td>The persisted external reference value (nullable)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"67834874-cadd-42a2-bed0-7f71c7724b8a","name":"Add Product Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductCategory($input: ProductCategoryInput!) {\n  setProductCategory(input: $input) {\n    result\n    message\n    category_id\n  }\n}","variables":"{\n  \"input\": {\n    \"category_id\": 0,\n    \"category_name\": \"TEST prd categroy\",\n    \"category_internal_name\": \"internal name prd categroy\",\n    \"category_image\" : \"category_image.jpg\",\n    \"category_icon\" : \"category_icon.jpg\",\n    \"category_header_content\": \"categroy header content\",\n    \"description\": \"desc prd categroy\",\n    \"long_description\": \"long desc prd categroy\",\n    \"long_description_two\": \"long desc two prd categroy\",\n    \"seo_page_title\" : \"seo page title\",\n    \"seo_page_description\": \"seo page desc\",\n    \"parent_id\": -1,\n    \"status\": \"1\",\n    \"delete\": 0,\n    \"sort_order\": 5\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0a150cee-f733-45a2-9145-a9a35ba6ab34","name":"Update Product Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductCategory($input: ProductCategoryInput!) {\n  setProductCategory(input: $input) {\n    result\n    message\n    category_id\n  }\n}","variables":"{\n  \"input\": {\n    \"category_id\": 120,\n    \"category_name\": \"TEST prd categroy ok\"\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"efad4a7e-e842-4fcc-9149-5d6114995d50","name":"Delete Product Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductCategory($input: ProductCategoryInput!) {\n  setProductCategory(input: $input) {\n    result\n    message\n    category_id\n  }\n}","variables":"{\n  \"input\": {\n    \"category_id\": 120,\n    \"delete\": 1\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6c251c82-2d7b-49b6-830c-88efbbadd0a8"}],"id":"d2ecfcb9-b3f0-4bba-95e8-86e23fa020b6","_postman_id":"d2ecfcb9-b3f0-4bba-95e8-86e23fa020b6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}},{"name":"Orders","item":[{"name":"Update Order or Order Product Status","id":"e0d8519e-cbcd-4b0c-b798-fdde2d355fea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation updateOrderStatus ($type: OrderStatusUpdateTypeEnum!, $orders_id: Int, $orders_products_id: Int, $input: UpdateOrderStatusInput!) {\n    updateOrderStatus (type: $type, orders_id: $orders_id, orders_products_id: $orders_products_id, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n  \"type\": \"product\",\n  \"orders_products_id\": 5029,\n  \"input\": {\n    \"order_product_status\":\"Awaiting Artwork\",\n    \"comment\": \"No Proof requested, Your Proof has been Approved automatically. Proof URL: https://2ctmedia.ziflow.io/proof/8qmjeol9aqmitdc8e0h7sggk8m\",\n    \"notify\" : 1\n  }\n}"}},"url":"{{api_url}}","description":"<p>This API allows users to update the status of an entire order or specific products within an order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>Yes</td>\n<td><em>Enum</em></td>\n<td>Specifies whether the status update is for the order or for specific products within the order. Possible values are:  <br />  <br /><strong>order:</strong> To update the status of the entire order.  <br />  <br /><strong>product:</strong> To update the status of specific products within the order.</td>\n<td>order / product</td>\n</tr>\n<tr>\n<td><code>orders_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the order whose status is being updated.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific product within the order.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>order_status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This parameter is used to define status of \"order\".</td>\n<td>Pending</td>\n</tr>\n<tr>\n<td><code>order_product_status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This parameter is used to define status of \"product\".</td>\n<td>Awaiting Artwork</td>\n</tr>\n<tr>\n<td><code>courier_company_name</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This parameter is used to define courior company name to set.</td>\n<td>Lester Courior</td>\n</tr>\n<tr>\n<td><code>tracking_number</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This paramter is used to define tracking number to set.</td>\n<td>210211</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>This parameter is used to define comment.</td>\n<td>Update the order specify parameter</td>\n</tr>\n<tr>\n<td><code>notify</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>This paramter is used to notify customer about modification “0 for No And 1 for Yes”</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>product_info</code></td>\n<td>No</td>\n<td>String</td>\n<td>This parameter can be used to update product information</td>\n<td></td>\n</tr>\n<tr>\n<td><code>template_info</code></td>\n<td>No</td>\n<td>String</td>\n<td>This parameter can be used to update template information</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"26ba581e-94db-44b0-bcfe-7f57ba95ac92","name":"Update Order Status Using Order Status Name","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation updateOrderStatus ($type: OrderStatusUpdateTypeEnum!, $orders_id: Int, $orders_products_id: Int, $input: UpdateOrderStatusInput!) {\n    updateOrderStatus (type: $type, orders_id: $orders_id, orders_products_id: $orders_products_id, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n  \"type\": \"order\",\n  \"orders_id\": 1,\n  \"input\": {\n    \"order_status\": \"Order Processing\",\n    \"courier_company_name\": \"XYZ Pvt. Ltd.\",\n    \"tracking_number\": \"12345785\",\n    \"comment\": \"Order Processing\",\n    \"notify\": 0\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOrderStatus\": {\n            \"result\": true,\n            \"message\": \"Order status successfully updated.\"\n        }\n    }\n}"},{"id":"a4a9f79b-0beb-4561-ae79-7694613833a7","name":"Update Order Status Using Order Status Id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation updateOrderStatus ($type: OrderStatusUpdateTypeEnum!, $orders_id: Int, $orders_products_id: Int, $input: UpdateOrderStatusInput!) {\n    updateOrderStatus (type: $type, orders_id: $orders_id, orders_products_id: $orders_products_id, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n  \"type\": \"order\",\n  \"orders_id\": 1,\n  \"input\": {\n    \"order_status\": \"2\",\n    \"courier_company_name\": \"XYZ Pvt. Ltd.\",\n    \"tracking_number\": \"12345785\",\n    \"comment\": \"Order Processing\",\n    \"notify\": 0\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOrderStatus\": {\n            \"result\": true,\n            \"message\": \"Order status successfully updated.\"\n        }\n    }\n}"},{"id":"adec9cf3-a161-4826-bc3a-2682fcbc299e","name":"Update Order Product Status Using Order Product Id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearer_token}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation updateOrderStatus ($type: OrderStatusUpdateTypeEnum!, $orders_id: Int, $orders_products_id: Int, $input: UpdateOrderStatusInput!) {\n    updateOrderStatus (type: $type, orders_id: $orders_id, orders_products_id: $orders_products_id, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n  \"type\": \"product\",\n  \"orders_products_id\": 2,\n  \"input\": {\n    \"order_product_status\": \"Awaiting Artwork\",\n    \"courier_company_name\": \"FedEx\",\n    \"tracking_number\": \"85710\",\n    \"comment\": \"Product Status Changed By Admin\",\n    \"notify\": 0\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"updateOrderStatus\": {\n      \"result\": true,\n      \"message\": \"Order status successfully updated.\"\n    }\n  }\n}"}],"_postman_id":"e0d8519e-cbcd-4b0c-b798-fdde2d355fea"},{"name":"Set Shipment","id":"55f59216-59df-434b-b882-2ba755efef3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setShipment ($order_id: Int,$shipment_id: Int,$tracking_number: String, $shipmentinfo: JSON) {\n    setShipment (order_id: $order_id, shipment_id: $shipment_id, tracking_number: $tracking_number, shipmentinfo: $shipmentinfo) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"order_id\": 2162,\n    \"shipment_id\": 0,\n    \"tracking_number\": \"393752281939\",\n    \"courier_company_name\": \"FedEx\",\n    \"shipmentinfo\": [\n        {\n            \"packageinfo\": [\n                {\n                    \"weight\": 2,\n                    \"length\": 36,\n                    \"width\": 5,\n                    \"height\": 30,\n                    \"tracking\": \"393752281939\",\n                    \"opdata\": [\n                        {\n                        \"opid\": 6950,\n                        \"qty\": \"1\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"}},"url":"{{api_url}}","description":"<p>This API allows users to update the status of an entire order or specific products within an order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the order whose shipment is being created.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>shipment_id</code></td>\n<td>No  <br />Only Required in case of Update</td>\n<td><em>Int</em></td>\n<td>The ID of the specific shipment of the order.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>tracking_number</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Tracking Number of shipment.</td>\n<td>ABCDEF123456</td>\n</tr>\n<tr>\n<td><code>shipmentinfo</code></td>\n<td>Yes</td>\n<td><em>JSON</em></td>\n<td>Array of packages info</td>\n<td>refer below params for packages info</td>\n</tr>\n<tr>\n<td><code>packageinfo</code></td>\n<td>Yes</td>\n<td><em>JSON</em></td>\n<td>This contains package dimension info</td>\n<td>refer below params for dimension info</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>Package width</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>Package height</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>weight</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>Package weight</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>length</code></td>\n<td>Yes</td>\n<td><em>Float</em></td>\n<td>Package length</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>tracking</code></td>\n<td>No</td>\n<td>String</td>\n<td>Used for package wise tracking</td>\n<td>ABCDEF123456</td>\n</tr>\n<tr>\n<td><code>opdata</code></td>\n<td>Yes</td>\n<td>JSON</td>\n<td>Array of quantity order item wise</td>\n<td>refer below params for data</td>\n</tr>\n<tr>\n<td>opid</td>\n<td>Yes</td>\n<td>Int</td>\n<td>order product Id</td>\n<td>1</td>\n</tr>\n<tr>\n<td>qty</td>\n<td>Yes</td>\n<td>Int</td>\n<td>quantity</td>\n<td>200</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"55f59216-59df-434b-b882-2ba755efef3e"},{"name":"Set Order Product","id":"356037d6-4d7c-44b5-9524-3591cf92893e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrderProduct ($order_product_id: Int, $width: Float, $height: Float, $input: SetOrderProductInput!) {\n    setOrderProduct (order_product_id: $order_product_id, width: $width, height: $height, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"order_product_id\" : 1242,\n    \"width\" : 12,\n    \"height\" : 12,\n    \"input\" : {\n        \"lock_price\" : 0,\n        \"comment\" : \"comment\",\n        \"notify_customer\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to update the size/price of an order product (only for custom size products).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order_product_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific order product</td>\n<td>1242</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Width of custom product. <strong>Required when <code>is_extra_info</code> is not true.</strong></td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Height of custom product. <strong>Required when <code>is_extra_info</code> is not true.</strong></td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Lock price flag. Possible Values: 0, 1. <strong>Default: 1</strong></td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comments</td>\n<td>comment</td>\n</tr>\n<tr>\n<td><code>notify_customer</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Notify customer. Possible Values: 0, 1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"356037d6-4d7c-44b5-9524-3591cf92893e"},{"name":"Set Order Product Extra info only","id":"9325d322-55c2-4c30-8d30-f856706805bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrderProduct ($order_product_id: Int, $width: Float, $height: Float, $input: SetOrderProductInput!) {\n    setOrderProduct (order_product_id: $order_product_id, width: $width, height: $height, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"order_product_id\" : 3844,\n    \"width\" : 0,\n    \"height\" : 0,\n    \"input\" : {\n        \"is_extra_info\": true,\n        \"extra_json_info\" : \"{}\"\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to update the size/price of an order product (only for custom size products).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order_product_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific order product</td>\n<td>1242</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Width of custom product. <strong>Required when</strong> <strong><code>is_extra_info</code></strong> <strong>is not true.</strong></td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Height of custom product. <strong>Required when</strong> <strong><code>is_extra_info</code></strong> <strong>is not true.</strong></td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Lock price flag. Possible Values: 0, 1. <strong>Default: 1</strong></td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comments</td>\n<td>comment</td>\n</tr>\n<tr>\n<td><code>notify_customer</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Notify customer. Possible Values: 0, 1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9325d322-55c2-4c30-8d30-f856706805bb"},{"name":"Set Batch","id":"a17a0eef-b77d-4668-8ed5-4768a10cbc14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setBatch ($batch_id: Int, $input: SetBatchMasterInput!) {\n    setBatch (batch_id: $batch_id, input: $input) {\n        result\n        message\n        id\n        batch_link\n        batch_pdf_link\n    }\n}","variables":"{\n    \"batch_id\": 0,\n    \"input\": {\n        \"batch_name\": \"okok.pdf\",\n        \"nesting_size\": \"Print Size: 36.5\\\" w x 24.25\\\" h\",\n        \"nest_width\": 36.5,\n        \"nest_height\": 24.25,\n        \"print_count\": 1,\n        \"send_mail\" : 1,\n        \"print_instructions\": [\n            \n        ],\n        \"finishing_instructions\": [\n        ],\n        \"front_print_filename\": \"FRONT_MC0924248569_Vanguard VK300D-HS_NewLife 030 magnet_Lam-None.pdf\",\n        \"front_cut_filename\": \"MC0924248569.pdf\",\n        \"front_image_link\": \"BingWallpaper(28).jpg\",\n        \"rear_print_filename\": \"hthh\",\n        \"rear_cut_filename\": \"vffvf\",\n        \"rear_image_link\": \"BingWallpaper(28).jpg\",\n        \"jobs\": [\n            {\n                \"quantity\": 2,\n                \"client\": \"Primetime Electric, LLC\",\n                \"orderID\": \"1146\",\n                \"lineID\": \"4033\",\n                \"pagename\": \"Front_1\",\n                \"pagename_rear\": \"Rear_1\",\n                \"filename\": \"749-2240 Replacement Magnets_Qnty-2.pdf\"\n            },\n            {\n                \"quantity\": 2,\n                \"client\": \"Primetime Electric, LLC\",\n                \"orderID\": \"1146\",\n                \"lineID\": \"4034\",\n                \"pagename\": \"Front_1\",\n                \"pagename_rear\": \"Rear_1\",\n                \"filename\": \"749-2240 Replacement Magnets_Qnty-2.pdf\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create or update a production batch with nesting, print files, and job assignments.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>batch_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Batch ID. Set 0 for new batch. <strong>Required for update.</strong></td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>batch_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Batch name. <strong>Always required.</strong></td>\n<td>okok.pdf</td>\n</tr>\n<tr>\n<td><code>nesting_size</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Nesting size label</td>\n<td>Print Size: 36.5\" w x 24.25\" h</td>\n</tr>\n<tr>\n<td><code>nest_width</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Nesting width</td>\n<td>36.5</td>\n</tr>\n<tr>\n<td><code>nest_height</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Nesting height</td>\n<td>24.25</td>\n</tr>\n<tr>\n<td><code>print_count</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Number of prints</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>send_mail</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Send email notification. Possible Values: 0, 1</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>print_instructions</code></td>\n<td>No</td>\n<td><em>JSON</em></td>\n<td>Print instructions</td>\n<td>[]</td>\n</tr>\n<tr>\n<td><code>finishing_instructions</code></td>\n<td>No</td>\n<td><em>JSON</em></td>\n<td>Finishing instructions</td>\n<td>[]</td>\n</tr>\n<tr>\n<td><code>front_print_filename</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Front print file name</td>\n<td>front_print.pdf</td>\n</tr>\n<tr>\n<td><code>front_cut_filename</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Front cut file name</td>\n<td>cut_file.pdf</td>\n</tr>\n<tr>\n<td><code>front_image_link</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Front image preview link</td>\n<td>image.jpg</td>\n</tr>\n<tr>\n<td><code>rear_print_filename</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Rear print file name</td>\n<td>rear_print.pdf</td>\n</tr>\n<tr>\n<td><code>rear_cut_filename</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Rear cut file name</td>\n<td>rear_cut.pdf</td>\n</tr>\n<tr>\n<td><code>rear_image_link</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Rear image preview link</td>\n<td>image.jpg</td>\n</tr>\n<tr>\n<td><code>jobs</code></td>\n<td>No</td>\n<td><em>JSON</em></td>\n<td>Array of job objects to assign to batch</td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"job-object-inside-jobs\">Job Object (Inside <code>jobs</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Quantity for this job</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>client</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Client name</td>\n<td>Primetime Electric, LLC</td>\n</tr>\n<tr>\n<td><code>orderID</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Order ID</td>\n<td>1146</td>\n</tr>\n<tr>\n<td><code>lineID</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Order product/line ID</td>\n<td>4033</td>\n</tr>\n<tr>\n<td><code>pagename</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Front page name</td>\n<td>Front_1</td>\n</tr>\n<tr>\n<td><code>pagename_rear</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Rear page name</td>\n<td>Rear_1</td>\n</tr>\n<tr>\n<td><code>filename</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Job filename</td>\n<td>file.pdf</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a17a0eef-b77d-4668-8ed5-4768a10cbc14"},{"name":"Set Order","id":"4b90c683-77d6-40bb-bed0-6b6bf3c6c827","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrder ($userid: Int!, $order_id: Int, $selected_shipping_type: Int, $order_title: String!, $input: SetOrderInput!) {\n    setOrder (userid: $userid, order_title: $order_title, selected_shipping_type: $selected_shipping_type, order_id: $order_id, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"userid\" : 1,\n    \"order_title\" : \"api order title\",\n    \"selected_shipping_type\" : 182,\n    \"input\" : {\n        \"products_arr\" : [\n            {\n                \"product_id\" : 131,\n                \"products_quantity\":100,\n                \"width\":8.5,\n                \"height\":11,\n                \"job_title\": \"api product 1\",\n                \"production_description\": \"order product production info\",\n                \"options\" : [\n                    {\n                        \"3504\" : \"5924\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create an order with standard or custom products.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userid</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Customer ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>order_title</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Order title</td>\n<td>api order title</td>\n</tr>\n<tr>\n<td><code>selected_shipping_type</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Shipping type ID used for background shipping call</td>\n<td>182</td>\n</tr>\n<tr>\n<td><code>products_arr</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of products to add in order</td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"standard-product-object-inside-products_arr\">Standard Product Object (Inside <code>products_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>product_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>ID of product</td>\n<td>263</td>\n</tr>\n<tr>\n<td><code>products_quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Quantity of product</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>size_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Size ID (required for non-custom size product)</td>\n<td>551</td>\n</tr>\n<tr>\n<td><code>job_title</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Job title for product</td>\n<td>api product 1</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>No</td>\n<td><em>Array</em></td>\n<td>Array of selected options</td>\n<td>[]</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Width of product (required for custom size products)</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Height of product (required for custom size products)</td>\n<td>10</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"custom-product-object-inside-products_arr\">Custom Product Object (Inside <code>products_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Quantity of product</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>is_custom_product</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> if this is a custom product</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>product_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Name of the custom product</td>\n<td>custom prd Name</td>\n</tr>\n<tr>\n<td><code>prd_sku</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>SKU of product</td>\n<td>custsku</td>\n</tr>\n<tr>\n<td><code>per_unit_weight</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Weight per unit</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>prd_days</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Production days</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>size_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Size title for product</td>\n<td>site title</td>\n</tr>\n<tr>\n<td><code>customer_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Customer price of product</td>\n<td>20</td>\n</tr>\n<tr>\n<td><code>cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Vendor cost of product</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>job_title</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Job title for product</td>\n<td>API Product 1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b90c683-77d6-40bb-bed0-6b6bf3c6c827"},{"name":"Modify Order Product","id":"071bd0a9-c9bb-4e56-afae-8a1d5d283945","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation modifyOrderProduct ($orderid: Int!, $input: ModifyOrderProductInput!) {\n    modifyOrderProduct (orderid: $orderid, input: $input) {\n        index\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"orderid\" : 2316,\n    \"input\" : {\n        \"product_arr\" : [\n            {\n                \"order_product_id\": 0,\n                \"product_id\": 131,\n                \"products_quantity\": 100,\n                \"width\": 8.5,\n                \"height\": 11,\n                \"lock_price\": 0,\n                \"notify_customer\": 1,\n                \"job_title\": \"new api product\",\n                \"comment\": \"Product changed from Business Card to Flyer\"\n            },\n            {\n                \"order_product_id\": 7142,\n                \"products_quantity\": 200,\n                \"product_id\": 131,\n                \"width\": 10,\n                \"height\": 11,\n                \"lock_price\": 0,\n                \"notify_customer\": 1,\n                \"job_title\": \"new api product\",\n                \"comment\": \"Product changed from Business Card to Flyer\"\n            },\n            {\n                \"order_product_id\" : 0,\n                \"is_custom_product\": 1,\n                \"product_name\": \"Custom Banner\",\n                \"job_title\": \"Custom Banner Job\",\n                \"products_quantity\": 5,\n                \"customer_price\": 400.00,\n                \"cost\": 90.00,\n                \"per_unit_weight\": 0.5,\n                \"size_title\": \"24x36\",\n                \"prd_sku\": \"CUST-001\",\n                \"prd_days\": 3,\n                \"lock_price\" : 0,\n                \"options\": [{\"Material\": \"Vinyl\", \"Finish\": \"Matte\"}]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete order products in an existing order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderid</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Order ID where product needs to be added, updated, or deleted</td>\n<td>2316</td>\n</tr>\n<tr>\n<td><code>product_arr</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of order products</td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"standard-product-object-inside-product_arr\">Standard Product Object (Inside <code>product_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order_product_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Order product ID. Required only for update and delete</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>product_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product ID to replace existing product or add new order product. Required except in delete case</td>\n<td>131</td>\n</tr>\n<tr>\n<td><code>size_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Size ID of product. Required for non-custom size product</td>\n<td>160</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Width of product. Required for custom size product</td>\n<td>8.5</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Height of product. Required for custom size product</td>\n<td>11</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to lock price or not. Possible Values - 0,1 <strong>Default :- 1</strong></td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>job_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Job name of product</td>\n<td>product job anme</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comment for product</td>\n<td>\"\"</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete the order product. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"custom-product-object-inside-products_arr\">Custom Product Object (Inside <code>products_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>products_quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Quantity of product</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>is_custom_product</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> if this is a custom product</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>product_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Name of the custom product</td>\n<td>custom prd Name</td>\n</tr>\n<tr>\n<td><code>prd_sku</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>SKU of product</td>\n<td>custsku</td>\n</tr>\n<tr>\n<td><code>per_unit_weight</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Weight per unit</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>prd_days</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Production days</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>size_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Size title for product</td>\n<td>site title</td>\n</tr>\n<tr>\n<td><code>customer_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Customer price of product</td>\n<td>20</td>\n</tr>\n<tr>\n<td><code>cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Vendor cost of product</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>job_title</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Job title for product</td>\n<td>API Product 1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"29c0c4f0-f517-4837-b37f-b0b13555f526","name":"Add Order Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation modifyOrderProduct ($orderid: Int!, $input: ModifyOrderProductInput!) {\n    modifyOrderProduct (orderid: $orderid, input: $input) {\n        result\n        message\n        results {\n            success\n            message\n            order_product_id\n        }\n    }\n}","variables":"{\n    \"orderid\" : 2316,\n    \"input\" : {\n        \"product_arr\" : [\n            {\n                \"order_product_id\": 0,\n                \"product_id\": 131,\n                \"products_quantity\": 100,\n                \"width\": 8.5,\n                \"height\": 11,\n                \"lock_price\": 0,\n                \"job_title\": \"new api product\",\n                \"comment\": \"New product added\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"538e0dd9-5440-4791-9988-7d24a34572cd","name":"Edit Order Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation modifyOrderProduct ($orderid: Int!, $input: ModifyOrderProductInput!) {\n    modifyOrderProduct (orderid: $orderid, input: $input) {\n        result\n        message\n        results {\n            success\n            message\n            order_product_id\n        }\n    }\n}","variables":"{\n    \"orderid\" : 2316,\n    \"input\" : {\n        \"product_arr\" : [\n            {\n                \"order_product_id\": 7142,\n                \"products_quantity\": 200,\n                \"width\": 10,\n                \"height\": 11,\n                \"lock_price\": 0,\n                \"job_title\": \"new api product\",\n                \"comment\": \"Change qty of product\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e35f10d3-c99f-4901-8b45-6193b9a2a674","name":"Delete Order Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation modifyOrderProduct ($orderid: Int!, $input: ModifyOrderProductInput!) {\n    modifyOrderProduct (orderid: $orderid, input: $input) {\n        result\n        message\n        results {\n            success\n            message\n            order_product_id\n        }\n    }\n}","variables":"{\n    \"orderid\" : 2316,\n    \"input\" : {\n        \"product_arr\" : [\n            {\n                \"order_product_id\": 7142,\n                \"delete\" : 1\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"071bd0a9-c9bb-4e56-afae-8a1d5d283945"},{"name":"Update Order Product Images","id":"bc826519-cc2e-4519-b2e4-8b6bc896de2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrderProductImage ($order_product_id: Int, $input: SetOrderProductImageInput!) {\n    setOrderProductImage (order_product_id: $order_product_id, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"order_product_id\": 4034,\n    \"input\": {\n        \"imagefiles\" : [\n            {\n                \"thumb\" : \"108_50_21620095_1_thumb.jpg\",\n                \"large\" : \"108_50_21620095_1.jpg\",\n                \"original\" : \"\",\n                \"pagename\" : \"Front_1\"\n            },\n            {\n                \"thumb\" : \"108_50_21620095_1_thumb.jpg\",\n                \"large\" : \"108_50_21620095_1.jpg\",\n                \"original\" : \"108_50_21620095_1.jpg\",\n                \"pagename\" : \"Front_2\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to update order product images.</p>\n<h3 id=\"order-related-files---imagesordersorderid\"><strong>Order related files - images/orders/{orderid}/</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order_product_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Order product ID for which images will be updated</td>\n<td>1254</td>\n</tr>\n<tr>\n<td><code>imagefiles</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of order product images</td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"order-product-image-object-inside-imagefiles\">Order Product Image Object (Inside <code>imagefiles</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>thumb</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Thumbnail image name</td>\n<td>thumb.jpg</td>\n</tr>\n<tr>\n<td><code>large</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Large image name</td>\n<td>large.jpg</td>\n</tr>\n<tr>\n<td><code>original</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Original image name</td>\n<td>original.jpg</td>\n</tr>\n<tr>\n<td><code>pagename</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Page name of image</td>\n<td>Front Page</td>\n</tr>\n<tr>\n<td><code>ziflow_link</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Ziflow proof link</td>\n<td><a href=\"https://example.com/proof\">https://example.com/proof</a></td>\n</tr>\n<tr>\n<td><code>ziflow_preflight_link</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Ziflow preflight proof link</td>\n<td><a href=\"https://example.com/preflight\">https://example.com/preflight</a></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"6945da10-f908-47ee-821e-dc47eb952b61","name":"Update Order Product Images only","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrderProductImage ($order_product_id: Int, $input: SetOrderProductImageInput!) {\n    setOrderProductImage (order_product_id: $order_product_id, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"order_product_id\": 4034,\n    \"input\": {\n        \"imagefiles\" : [\n            {\n                \"thumb\" : \"108_50_21620095_1_thumb.jpg\",\n                \"large\" : \"108_50_21620095_1.jpg\",\n                \"original\" : \"\",\n                \"pagename\" : \"Front_1\"\n            },\n            {\n                \"thumb\" : \"108_50_21620095_1_thumb.jpg\",\n                \"large\" : \"108_50_21620095_1.jpg\",\n                \"original\" : \"108_50_21620095_1.jpg\",\n                \"pagename\" : \"Front_2\"\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ea490767-f236-45a3-917b-179ca8f049ae","name":"Update ziflow link images wise","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrderProductImage ($order_product_id: Int, $update_ziflow_link_only: Int, $input: SetOrderProductImageInput!) {\n    setOrderProductImage (order_product_id: $order_product_id, update_ziflow_link_only: $update_ziflow_link_only, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n  \"order_product_id\": 6101,\n  \"update_ziflow_link_only\": 1,\n  \"input\": {\n    \"imagefiles\": [\n      {\n        \"pagename\": \"Front_1\",\n        \"ziflow_link\": \"https://vg.ziflow.io/proof/5rq3vjiuh5khui26vgn1kkat8r\",\n        \"ziflow_preflight_link\": \"https://google.com\"\n      },\n      {\n        \"pagename\": \"Front_2\",\n        \"ziflow_link\": \"https://vg.ziflow.io/proof/5rq3vjiuh5khui26vgn1kkat8r\",\n        \"ziflow_preflight_link\": \"https://google.com\"\n      }\n    ]\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"77ca8023-6aee-4873-b147-f6ca8253bcce","name":"Add proof version","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setOrderProductImage ($order_product_id: Int, $update_ziflow_link_only: Int, $add_version_file_only: Int, $ask_for_approval:Int, $input: SetOrderProductImageInput!) {\n    setOrderProductImage (order_product_id: $order_product_id, update_ziflow_link_only: $update_ziflow_link_only, add_version_file_only: $add_version_file_only, ask_for_approval:$ask_for_approval, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n  \"order_product_id\": 6344,\n  \"add_version_file_only\" : 1,\n  \"ask_for_approval\" : 1,\n  \"input\": {\n    \"imagefiles\": [\n        {\n            \"thumb\": \"213_41_18036177_1_thumb.jpg\",\n            \"large\": \"213_41_18036177_1.jpg\",\n            \"orig_file\" : \"1912_6344_polyboard_526629.pdf\",\n            \"isVersionControl\": true,\n            \"isSelectedVersion\": null,\n            \"pagename\": \"Front_1V1\",\n            \"version\" : 1,\n            \"parentVersionID\": \"Front_1\",\n            \"extraFiles\" : [\n                \"213_41_10325777_2.jpg\",\n                \"213_41_78131323_1.jpg\",\n                \"213_41_18036177_1.jpg\"\n            ]\n        },\n        {\n            \"thumb\": \"213_41_18036177_1_thumb.jpg\",\n            \"large\": \"213_41_18036177_1.jpg\",\n            \"orig_file\" : \"1912_6344_polyboard_526629.pdf\",\n            \"isVersionControl\": true,\n            \"isSelectedVersion\": true,\n            \"version\" : 2,\n            \"pagename\": \"Front_1V2\",\n            \"parentVersionID\": \"Front_1\"\n        }\n    ]\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bc826519-cc2e-4519-b2e4-8b6bc896de2a"},{"name":"Set Product Design","id":"60c9965d-67a1-41a2-8153-ee6fd639c80e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setProductDesign ($order_product_id: Int, $ziflow_link: String, $ziflow_preflight_link: String) {\n    setProductDesign (order_product_id: $order_product_id, ziflow_link: $ziflow_link, ziflow_preflight_link: $ziflow_preflight_link) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"order_product_id\" : 6032,\n    \"ziflow_link\":\"https://vg.ziflow.io/proof/5rq3vjiuh5khui26vgn1kkat8r\",\n    \"ziflow_preflight_link\":\"https://google.com\"\n}"}},"url":"{{api_url}}","description":"<p>This will update the print ready file for the product. The Customer Uploaded file should not change. This will also send the Proof to the client if Selected and Proofing is available.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific product within the order.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>ziflow_link</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>ZiFlow Link</td>\n<td><a href=\"https://google.com\">https://google.com</a></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60c9965d-67a1-41a2-8153-ee6fd639c80e"}],"id":"2a1333fd-c3e1-45ca-a27b-941ebee8002c","_postman_id":"2a1333fd-c3e1-45ca-a27b-941ebee8002c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}},{"name":"Customers","item":[{"name":"Notify User","id":"eb339964-032a-46c5-a66f-b1c60ec9ea09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation notifyUser ($usertype: UserNotifyTypeEnum!, $cust_id: Int, $input: UserNotifyInput!) {\n    notifyUser (cust_id: $cust_id, usertype: $usertype, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n  \"cust_id\": 1,\n  \"usertype\": \"admin\",\n  \"input\": {\n    \"cc\" : \"asd\",\n    \"body\": \"<h1>This is body</h1>\",\n    \"subject\": \"subject\"\n  }\n}"}},"url":"{{api_url}}","description":"<p>This will send an SMS or Email Message to the user/customer. ID can only be an integer.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>cust_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Send to customer ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>usertype</code></td>\n<td>Yes</td>\n<td><em>Enum</em></td>\n<td>Set whom you want to send email</td>\n<td>user / admin / workflow</td>\n</tr>\n<tr>\n<td><code>cc</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Email requires Valid Email format, SMS require valid 10 digit mobile number. Comma Separated Values to send to multiple</td>\n<td><a href=\"https://mailto:abc@gmail.com\">abc@gmail.com</a>,<a href=\"mailto:xyz@gmail.com\">xyz@gmail.com</a></td>\n</tr>\n<tr>\n<td><code>bcc</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Email requires Valid Email format. Comma Separated Values to send to multiple.</td>\n<td><a href=\"https://mailto:abc@gmail.com\">abc@gmail.com</a>,<a href=\"mailto:xyz@gmail.com\">xyz@gmail.com</a></td>\n</tr>\n<tr>\n<td><code>subject</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>String value for the Subject Line. Optional for SMS, <strong>Mandatory</strong> for Email.</td>\n<td>Mail subject</td>\n</tr>\n<tr>\n<td><code>body</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>HTML Formatted or Text Formatted Email Body. Text Formatted SMS Body.</td>\n<td># This is body</td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>File(s) to attach to the message. Size is limited to the Email sender. Not available for SMS.</td>\n<td><a href=\"http://www.abc.com/xyz.jpg\">www.abc.com/xyz.jpg</a></td>\n</tr>\n<tr>\n<td><code>msg_type</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Send a Message via Email or SMS.</td>\n<td>email / sms</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb339964-032a-46c5-a66f-b1c60ec9ea09"},{"name":"Set Customer","id":"7a669132-1cf8-4c37-beef-b6ca2970bcc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomer ($customer_id: Int, $input: SetCustomerInput!) {\n    setCustomer (customer_id: $customer_id, input: $input) {\n        result\n        message\n        id\n        external_ref\n    }\n}","variables":"{\n    \"customer_id\" : 0,\n    \"input\" : {\n        \"registration_type\" : 0,\n        \"corporateid\" : 0,\n        \"departmentid\" : 0,\n        \"first_name\" : \"John\",\n        \"last_name\" : \"Doe\",\n        \"email\" : \"johndoerrrrrr@test.com\",\n        \"password\" : \"9786542\",\n        \"set_password\" : 1,\n        \"phone_no\" : \"9876543210\",\n        \"company_name\" : \"Radix\",\n        \"user_group\" : 0,\n        \"secondary_emails\" : \"johndoe_secondary@test.com\",\n        \"status\" : 1,\n        \"tax_exemption\" : 0,\n        \"payon_account\" : 0,\n        \"payon_limit\" : 0,\n        \"external_ref\" : \"ERP-10002\"\n    }\n}"}},"url":"{{api_url}}","description":"<p>This will use to create/update customer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>customer_id</code></td>\n<td>No  <br /><strong>Required in case of Update</strong></td>\n<td><em>Int</em></td>\n<td>Customer ID for update only.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>registration_type</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>0 for normal register ,  <br />1 for two step register  <br /><strong>Default is 0</strong></td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>corporateid</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Store Id OR 0 for default store.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>departmentid</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Department ID if any.</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>first_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Customer First Name.</td>\n<td>John</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Customer Last Name.</td>\n<td>Doe</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Customer Email.</td>\n<td><a href=\"https://mailto:johndoe@test.com\">johndoe@test.com</a></td>\n</tr>\n<tr>\n<td><code>set_password</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>In case of update customer if you want to change password then set this to 1 else 0 .</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>password</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Customer Password.</td>\n<td>123456</td>\n</tr>\n<tr>\n<td><code>phone_no</code></td>\n<td>Yes</td>\n<td>String</td>\n<td>Customer Phone number</td>\n<td>9876543210</td>\n</tr>\n<tr>\n<td><code>company_name</code></td>\n<td>Yes</td>\n<td>String</td>\n<td>Customer Company name.</td>\n<td>Radix</td>\n</tr>\n<tr>\n<td><code>user_group</code></td>\n<td>No</td>\n<td>Int</td>\n<td>Customer user group id</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>secondary_emails</code></td>\n<td>No</td>\n<td>String</td>\n<td>comma saperated secondary emails of customer.</td>\n<td><a href=\"https://mailto:abc@test.com\">abc@test.com</a>,  <br /><a href=\"https://mailto:xyz@test.com\">xyz@test.com</a></td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>Yes</td>\n<td>Int</td>\n<td>Customer Status</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>tax_exemption</code></td>\n<td>No</td>\n<td>Int</td>\n<td>pass 1 if customer is tax exempted else 0</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>payon_account</code></td>\n<td>No</td>\n<td>Int</td>\n<td>1 for enable payon for this customer else 0</td>\n<td>10000</td>\n</tr>\n<tr>\n<td><code>payon_limit</code></td>\n<td>No</td>\n<td>Int</td>\n<td>set payon limit for this customer Required if payon_account is 1</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td>No</td>\n<td>String</td>\n<td>External reference identifier (max 255 chars). Used to link customer to external systems (e.g., ERP, CRM).</td>\n<td>ERP-10001</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>FIELD</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>result</code></td>\n<td><em>Boolean</em></td>\n<td>Whether the operation succeeded</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td><em>String</em></td>\n<td>Success or error message</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><em>Int</em></td>\n<td>The customer ID of the created/updated customer</td>\n</tr>\n<tr>\n<td><code>external_ref</code></td>\n<td><em>String</em></td>\n<td>The persisted external reference value (nullable)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"f3a0b3f2-05e4-448b-b076-59a6a3c1b0fb","name":"Add Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomer ($customer_id: Int, $input: SetCustomerInput!) {\n    setCustomer (customer_id: $customer_id, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"customer_id\" : 0,\n    \"input\" : {\n        \"registration_type\" : 0,\n        \"corporateid\" : 0,\n        \"departmentid\" : 0,\n        \"first_name\" : \"John\",\n        \"last_name\" : \"Doe\",\n        \"email\" : \"johndoe@test.com\",\n        \"password\" : \"9786542\",\n        \"set_password\" : 1,\n        \"phone_no\" : \"9876543210\",\n        \"company_name\" : \"Radix\",\n        \"user_group\" : 0,\n        \"secondary_emails\" : \"johndoe_secondary@test.com\",\n        \"status\" : 1,\n        \"tax_exemption\" : 0,\n        \"payon_account\" : 0,\n        \"payon_limit\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1c364412-e658-46d7-86dd-6dc42daa28ad","name":"Edit Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomer ($customer_id: Int, $input: SetCustomerInput!) {\n    setCustomer (customer_id: $customer_id, input: $input) {\n        result\n        message\n    }\n}","variables":"{\n    \"customer_id\" : 0,\n    \"input\" : {\n        \"registration_type\" : 0,\n        \"corporateid\" : 0,\n        \"departmentid\" : 0,\n        \"first_name\" : \"John\",\n        \"last_name\" : \"Doe\",\n        \"email\" : \"johndoe@test.com\",\n        \"password\" : \"9786542\",\n        \"set_password\" : 1,\n        \"phone_no\" : \"9876543210\",\n        \"company_name\" : \"Radix\",\n        \"user_group\" : 0,\n        \"secondary_emails\" : \"johndoe_secondary@test.com\",\n        \"status\" : 1,\n        \"tax_exemption\" : 0,\n        \"payon_account\" : 0,\n        \"payon_limit\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7a669132-1cf8-4c37-beef-b6ca2970bcc3"},{"name":"Set Customer Address","id":"f431adcb-ea41-4571-b27a-72a268c9fd56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomerAddressDetail ($input: CustomerAddressInput!) {\n    setCustomerAddressDetail (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\": {\n        \"user_id\": 1,\n        \"address_book_id\": 0,\n        \"firstname\": \"Rahul\",\n        \"lastname\": \"Shekhawat\",\n        \"companyname\": \"Radixweb\",\n        \"street_address\": \"Sector 2\",\n        \"suburb\": \"Test\",\n        \"postcode\": \"382021\",\n        \"city\": \"Arizona\",\n        \"state\": \"AZ\",\n        \"country\": \"223\",\n        \"phone_number\": \"9876543210\"\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to add, update, or delete customer address.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>user_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Customer ID. Required for create only</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>address_book_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Address book ID. Required for update only</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>firstname</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>First name of customer. Required for create only</td>\n<td>Rahul</td>\n</tr>\n<tr>\n<td><code>lastname</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Last name of customer</td>\n<td>Shekhawat</td>\n</tr>\n<tr>\n<td><code>companyname</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Company name of customer</td>\n<td>Radixweb</td>\n</tr>\n<tr>\n<td><code>street_address</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Street address. Required for create only</td>\n<td>Sector 2</td>\n</tr>\n<tr>\n<td><code>suburb</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Suburb / Address line 2</td>\n<td>Test</td>\n</tr>\n<tr>\n<td><code>postcode</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Postal code</td>\n<td>382021</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>City. Required for create only</td>\n<td>Arizona</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>State</td>\n<td>AZ</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Country ID. Required for create only</td>\n<td>223</td>\n</tr>\n<tr>\n<td><code>phone_number</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Phone number</td>\n<td>9876543210</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used to delete address. Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e65425da-b49c-4911-9113-416e4dd34a06","name":"Add Customer Address","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomerAddressDetail ($input: CustomerAddressInput!) {\n    setCustomerAddressDetail(input: $input) {\n        result\n        message\n        address_book_id\n    }\n}","variables":"{\n    \"input\": {\n        \"user_id\": 1,\n        \"address_book_id\": 0,\n        \"firstname\": \"Rahul\",\n        \"lastname\": \"Shekhawat\",\n        \"companyname\": \"Radixweb\",\n        \"street_address\": \"Sector 2\",\n        \"suburb\": \"Test\",\n        \"postcode\": \"382021\",\n        \"city\": \"Arizona\",\n        \"state\": \"AZ\",\n        \"country\": \"223\",\n        \"phone_number\": \"9876543210\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"2607f70b-243b-4995-9fd9-946c1b125479","name":"Update Customer Address","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomerAddressDetail ($input: CustomerAddressInput!) {\n    setCustomerAddressDetail(input: $input) {\n        result\n        message\n        address_book_id\n    }\n}","variables":"{\n    \"input\": {\n        \"address_book_id\": 490,\n        \"firstname\": \"Rahul\",\n        \"lastname\": \"Shekhawat\",\n        \"companyname\": \"Radixweb\",\n        \"street_address\": \"Sector 2\",\n        \"suburb\": \"Test\",\n        \"postcode\": \"382021\",\n        \"city\": \"Arizona\",\n        \"state\": \"AZ\",\n        \"country\": \"223\",\n        \"phone_number\": \"9876543210\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b41d00b4-3ee0-411f-979b-7970c550d98f","name":"Delete Customer Address","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setCustomerAddressDetail ($input: CustomerAddressInput!) {\n    setCustomerAddressDetail(input: $input) {\n        result\n        message\n        address_book_id\n    }\n}","variables":"{\n    \"input\": {\n        \"address_book_id\": 490,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f431adcb-ea41-4571-b27a-72a268c9fd56"},{"name":"Set User Basket","id":"e78e9cb8-d9f0-47c6-9e39-4c532bacf0dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setUserBasket ($user_id: Int!, $action: String!, $item_index: Int!, $input: SetUserBasketInput!) {\n    setUserBasket (user_id: $user_id, action: $action, item_index: $item_index, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"user_id\" : 1,\n    \"action\" : \"add\",\n    \"item_index\" : 0,\n    \"input\" : {\n        \"items\" : [\n            {\n                \"product_id\" : 131,\n                \"job_name\": \"std job\",\n                \"quantity\" : 1,\n                \"size_id\" : 0,\n                \"width\" : 10,\n                \"height\" : 10, \n                \"options\" : [\n                    {\n                        \"3504\" : \"5924\"\n                    }\n                ]\n            }, \n            {\n                \"is_custom_product\": true,\n                \"product_name\": \"Custom Banner\",\n                \"job_name\": \"Large Banner Print\",\n                \"quantity\": 5,\n                \"customer_price\": 150.00,\n                \"cost\": 80.00,\n                \"size_title\": \"24x36 inches\",\n                \"prd_sku\": \"BNR-001\",\n                \"width\" : 10,\n                \"height\" : 10, \n                \"per_unit_weight\": 0.5,\n                \"options\": {\"Material\": \"Vinyl\", \"Finish\": \"Matte\"}\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to manage the user's shopping basket (add, remove, or update items).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>user_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Customer ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>action</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Action to perform. Valid values: <code>add</code>, <code>remove</code>, <code>update</code></td>\n<td>add</td>\n</tr>\n<tr>\n<td><code>item_index</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Index of item in basket (required for <code>remove</code> and <code>update</code> actions)</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>input</code></td>\n<td>Conditional</td>\n<td><em>Object</em></td>\n<td>Input object containing items (required for <code>add</code> and <code>update</code> actions)</td>\n<td>{}</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"input-object\">Input Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>items</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of basket items</td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"basket-item-object-inside-items\">Basket Item Object (Inside <code>items</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>product_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>ID of product (required for non-custom products)</td>\n<td>263</td>\n</tr>\n<tr>\n<td><code>quantity</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Quantity of product</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>size_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Size ID</td>\n<td>551</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Width of product (for custom size products)</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Height of product (for custom size products)</td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>template_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Template ID</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>No</td>\n<td><em>JSON</em></td>\n<td>Selected options</td>\n<td>{}</td>\n</tr>\n<tr>\n<td><code>job_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Job name for the item</td>\n<td>my business card</td>\n</tr>\n<tr>\n<td><code>is_custom_product</code></td>\n<td>No</td>\n<td><em>Boolean</em></td>\n<td>Set <code>true</code> if this is a custom product</td>\n<td>true</td>\n</tr>\n<tr>\n<td><code>product_name</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Name of custom product (required if <code>is_custom_product</code> is true)</td>\n<td>Custom Product</td>\n</tr>\n<tr>\n<td><code>customer_price</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Price of custom product (required if <code>is_custom_product</code> is true)</td>\n<td>20.00</td>\n</tr>\n<tr>\n<td><code>cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Vendor cost</td>\n<td>5.00</td>\n</tr>\n<tr>\n<td><code>size_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Size title</td>\n<td>4x6</td>\n</tr>\n<tr>\n<td><code>prd_sku</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Product SKU</td>\n<td>SKU123</td>\n</tr>\n<tr>\n<td><code>prd_days</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Production days</td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>per_unit_weight</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Weight per unit</td>\n<td>0.5</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"8dc4580e-dbb2-4529-8425-d2d03388a50f","name":"Add Item","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setUserBasket ($userId: Int!, $action: String!, $itemIndex: Int!, $input: SetUserBasketInput!) {\n    setUserBasket (userId: $userId, action: $action, itemIndex: $itemIndex, input: $input) {\n        result\n        message\n        basket_id\n    }\n}","variables":"{\n    \"user_id\" : 1,\n    \"action\" : \"add\",\n    \"item_index\" : 0,\n    \"input\" : {\n        \"items\" : [\n            {\n                \"product_id\" : 131,\n                \"job_name\": \"std job\",\n                \"quantity\" : 1,\n                \"size_id\" : 0,\n                \"width\" : 10,\n                \"height\" : 10, \n                \"options\" : [\n                    {\n                        \"3504\" : \"5924\"\n                    }\n                ]\n            }, \n            {\n                \"is_custom_product\": true,\n                \"product_name\": \"Custom Banner\",\n                \"job_name\": \"Large Banner Print\",\n                \"quantity\": 5,\n                \"customer_price\": 150.00,\n                \"cost\": 80.00,\n                \"size_title\": \"24x36 inches\",\n                \"prd_sku\": \"BNR-001\",\n                \"width\" : 10,\n                \"height\" : 10, \n                \"per_unit_weight\": 0.5,\n                \"options\": {\"Material\": \"Vinyl\", \"Finish\": \"Matte\"}\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"04844bbe-df29-4272-a1e7-fcfd377fca9c","name":"Update Item","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setUserBasket ($userId: Int!, $action: String!, $itemIndex: Int!, $input: SetUserBasketInput!) {\n    setUserBasket (userId: $userId, action: $action, itemIndex: $itemIndex, input: $input) {\n        result\n        message\n        basket_id\n    }\n}","variables":"{\n    \"user_id\" : 1,\n    \"action\" : \"update\",\n    \"item_index\" : 1,\n    \"input\" : {\n        \"items\" : [\n            {\n                \"product_id\" : 131,\n                \"job_name\": \"std job\",\n                \"quantity\" : 10,\n                \"size_id\" : 0,\n                \"width\" : 11,\n                \"height\" : 11, \n                \"options\" : [\n                    {\n                        \"3504\" : \"5924\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a4f23668-dba4-4af7-92f2-64d997821545","name":"Remove Item","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setUserBasket ($userId: Int!, $action: String!, $itemIndex: Int!, $input: SetUserBasketInput!) {\n    setUserBasket (userId: $userId, action: $action, itemIndex: $itemIndex, input: $input) {\n        result\n        message\n        basket_id\n    }\n}","variables":"{\n    \"user_id\" : 1,\n    \"action\" : \"remove\",\n    \"item_index\" : 0,\n    \"input\" : {}\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e78e9cb8-d9f0-47c6-9e39-4c532bacf0dc"}],"id":"380a335c-8b90-4e31-a891-ab9d56bb32ca","_postman_id":"380a335c-8b90-4e31-a891-ab9d56bb32ca","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}},{"name":"Store","item":[{"name":"Set Store Address","id":"bf8bdc07-526a-4f13-a67d-5936e71f7c4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreAddress ($input: StoreAddressInput!) {\n    setStoreAddress (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_address_id\" : 0,\n        \"corporate_id\" : 277,\n        \"department_id\" : 0,\n        \"office_name\" : \"ofc name\",\n        \"available_to\" : \"c\",\n        \"address_flag\" : \"0\",\n        \"corporate_address\" : \"street address\",\n        \"suburb\" : \"sub\",\n        \"city\" : \"Mesa\",\n        \"postcode\" : \"85204\",\n        \"state\" : \"AZ\",\n        \"country\" : \"223\",\n        \"phone_number\" : \"6026885811\",\n        \"status\" : \"1\",\n        \"receiver_name\" : \"test user\",\n        \"companyname\" : \"ER2\",\n        \"used_as_quote_address\" : \"0\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete store addresses.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>corporate_address_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Address ID. Set 0 for insert. <strong>Required for update/delete.</strong></td>\n<td>583</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Store/corporate ID. <strong>Required for insert.</strong></td>\n<td>277</td>\n</tr>\n<tr>\n<td><code>department_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Department ID</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>office_name</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Office name</td>\n<td>ofc name</td>\n</tr>\n<tr>\n<td><code>available_to</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Available to</td>\n<td>c</td>\n</tr>\n<tr>\n<td><code>address_flag</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Address flag type</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>corporate_address</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Street address. <strong>Required for insert.</strong></td>\n<td>street address</td>\n</tr>\n<tr>\n<td><code>suburb</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Suburb/area</td>\n<td>sub</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>City</td>\n<td>Mesa</td>\n</tr>\n<tr>\n<td><code>postcode</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Postal/zip code</td>\n<td>85204</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>State/province</td>\n<td>AZ</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Country ID</td>\n<td>223</td>\n</tr>\n<tr>\n<td><code>phone_number</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Phone number</td>\n<td>6026885811</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>receiver_name</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Receiver name</td>\n<td>test user</td>\n</tr>\n<tr>\n<td><code>companyname</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Company name</td>\n<td>ER2</td>\n</tr>\n<tr>\n<td><code>used_as_quote_address</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Use as quote address</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the address. <strong>Requires</strong> <strong><code>corporate_address_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"488de691-0ceb-4333-a251-8f4dd6d56bc3","name":"Add Store Address","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreAddress ($input: StoreAddressInput!) {\n    setStoreAddress (input: $input) {\n        result\n        message\n        corporate_address_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_address_id\" : 0,\n        \"corporate_id\" : 277,\n        \"department_id\" : 0,\n        \"office_name\" : \"ofc name\",\n        \"available_to\" : \"c\",\n        \"address_flag\" : \"0\",\n        \"corporate_address\" : \"street address\",\n        \"suburb\" : \"sub\",\n        \"city\" : \"Mesa\",\n        \"postcode\" : \"85204\",\n        \"state\" : \"AZ\",\n        \"country\" : \"223\",\n        \"phone_number\" : \"6026885811\",\n        \"status\" : \"1\",\n        \"receiver_name\" : \"test user\",\n        \"companyname\" : \"ER2\",\n        \"used_as_quote_address\" : \"0\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"df557a3f-6d92-41f9-be4f-845aec39c90d","name":"Update Store Address","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreAddress ($input: StoreAddressInput!) {\n    setStoreAddress (input: $input) {\n        result\n        message\n        corporate_address_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_address_id\" : 583,\n        \"corporate_id\" : 277,\n        \"department_id\" : 0,\n        \"office_name\" : \"ofc name\",\n        \"available_to\" : \"c\",\n        \"address_flag\" : \"0\",\n        \"corporate_address\" : \"street address\",\n        \"suburb\" : \"sub\",\n        \"city\" : \"Mesa\",\n        \"postcode\" : \"85204\",\n        \"state\" : \"AZ\",\n        \"country\" : \"223\",\n        \"phone_number\" : \"6026885811\",\n        \"status\" : \"1\",\n        \"receiver_name\" : \"test user\",\n        \"companyname\" : \"ER2\",\n        \"used_as_quote_address\" : \"0\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"20bd45b3-216e-473e-9ce8-42527b0ff973","name":"Delete Store Address","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreAddress ($input: StoreAddressInput!) {\n    setStoreAddress (input: $input) {\n        result\n        message\n        corporate_address_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_address_id\" : 583,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bf8bdc07-526a-4f13-a67d-5936e71f7c4d"},{"name":"Set Department","id":"c749877b-201c-4402-8857-a267f48c81a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setDepartment ($input: DepartmentInput!) {\n    setDepartment (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"department_id\" : 141,\n        \"corporate_id\" : 3,\n        \"name\" : \"test depart test\",\n        \"email_to\" : \"gggg@vfvfcdcd.cc\",\n        \"status\" : \"1\",\n        \"cost_center_code\" : \"cc code bnbnccc\",\n        \"production_days\" : 1,\n        \"department_payment\" : \"25,40\",\n        \"dept_tax_exempt\" : \"1\",\n        \"use_dept_markup\" : \"1\",\n        \"dept_markup_type\" : \"1\",\n        \"dept_markup_id\" : 1,\n        \"dept_flat_markup\" : 0,\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}","description":"<p>This will change the size or price of order product (Only for Custom size product).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific order product.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Width of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Height of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used for lock price or not. Possible Values - 0,1 <strong>Default :- 1</strong></td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comments</td>\n<td>comments</td>\n</tr>\n<tr>\n<td><code>notify_customer</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Notify customer or not Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"acd022d5-d625-4269-a859-f2b3797e068f","name":"Add Department","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setDepartment ($input: DepartmentInput!) {\n    setDepartment (input: $input) {\n        result\n        message\n        department_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"department_id\" : 0,\n        \"corporate_id\" : 3,\n        \"name\" : \"test depart ok12\",\n        \"email_to\" : \"gggg@vfvf.cc\",\n        \"status\" : \"1\",\n        \"cost_center_code\" : \"cc code bnbn\",\n        \"production_days\" : 1,\n        \"department_payment\" : \"25,40\",\n        \"dept_tax_exempt\" : \"1\",\n        \"use_dept_markup\" : \"1\",\n        \"dept_markup_type\" : \"1\",\n        \"dept_markup_id\" : 1,\n        \"dept_flat_markup\" : 0,\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4c66eaff-e00b-469d-93f1-3c64ab90b4a9","name":"Update Department","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setDepartment ($input: DepartmentInput!) {\n    setDepartment (input: $input) {\n        result\n        message\n        department_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"department_id\" : 143,\n        \"corporate_id\" : 3,\n        \"name\" : \"test depart ok12\",\n        \"email_to\" : \"gggg@vfvf.cc\",\n        \"status\" : \"1\",\n        \"cost_center_code\" : \"cc code bnbn\",\n        \"production_days\" : 1,\n        \"department_payment\" : \"25,40\",\n        \"dept_tax_exempt\" : \"1\",\n        \"use_dept_markup\" : \"1\",\n        \"dept_markup_type\" : \"1\",\n        \"dept_markup_id\" : 1,\n        \"dept_flat_markup\" : 0,\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"86b3f595-a1c4-4bbb-928a-0ba129cf6d41","name":"Delete Department","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setDepartment ($input: DepartmentInput!) {\n    setDepartment (input: $input) {\n        result\n        message\n        department_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"department_id\" : 143,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c749877b-201c-4402-8857-a267f48c81a8"},{"name":"Set Store","id":"d74108db-527d-433d-b55a-17c71fb05453","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStore ($input: StoreInput!) {\n    setStore (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\" : 0,\n        \"email\" : \"newuser1@gmail.lgg\",\n        \"username\" : \"newuser1\",\n        \"password\" : \"asdasdasdadllvvvv\",\n        \"corporate_name\" : \"newstorenamennyy1\",\n        \"phone_number\" : \"123123123123\",\n        \"url_type\" : \"0\",\n        \"main_url\" : \"newmain.com\",\n        \"status\" : \"1\",\n        \"payon\" : \"1\",\n        \"pay_limit\" : \"100\",\n        \"tax_exempt\" : \"1\",\n        \"tax_exempt_type\" : \"0\",\n        \"order_approval\" : \"1\",\n        \"price_visible\" : \"no\",\n        \"price_text\" : \"pricetest\",\n        \"department_module_enable\" : \"1\",\n        \"fix_billing_address\" : \"1\",\n        \"fix_shipping_address\" : \"1\",\n        \"default_shipping_address\" : 0,\n        \"default_billing_address\" : 0,\n        \"markup_type\" : \"1\",\n        \"flat_markup\" : 0,\n        \"corporate_markup_id\" : 1,\n        \"production_days\" : 12,\n        \"display_in_company_list\" : \"1\",\n        \"allow_partial_payment\" : 1,\n        \"payment_term_id\": 1,\n        \"assign_product\" : \"236,123\",\n        \"unassign_product\" : \"214,456\"\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete a store (corporate account).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>corporate_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Store/corporate ID. Set 0 for insert. <strong>Required for update/delete.</strong></td>\n<td>200</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Store email. <strong>Required for insert when</strong> <strong><code>user_create_type</code></strong> <strong>is 0 or not provided (two-step creation).</strong></td>\n<td><a href=\"mailto:store@example.com\">store@example.com</a></td>\n</tr>\n<tr>\n<td><code>username</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Username. <strong>Required for insert with two-step creation.</strong></td>\n<td>testusername</td>\n</tr>\n<tr>\n<td><code>password</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Password. <strong>Required for insert with two-step creation.</strong></td>\n<td></td>\n</tr>\n<tr>\n<td><code>corporate_name</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Store/company name. <strong>Required for insert.</strong></td>\n<td>newstorenamennyy</td>\n</tr>\n<tr>\n<td><code>phone_number</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Phone number</td>\n<td>123123123123</td>\n</tr>\n<tr>\n<td><code>url_type</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>URL type</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>main_url</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Store main URL</td>\n<td>store.com</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Status</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>payon</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Pay on account setting</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>pay_limit</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Pay on account limit</td>\n<td>100</td>\n</tr>\n<tr>\n<td><code>tax_exempt</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Tax exempt flag</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>tax_exempt_type</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Tax exempt type</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>order_approval</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Order approval required</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>price_visible</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Price visibility. Possible Values: yes, no</td>\n<td>no</td>\n</tr>\n<tr>\n<td><code>price_text</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Custom price text (when price hidden)</td>\n<td>pricetest</td>\n</tr>\n<tr>\n<td><code>department_module_enable</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Enable department module</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>fix_billing_address</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Fix billing address</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>fix_shipping_address</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Fix shipping address</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>default_shipping_address</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Default shipping address ID</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>default_billing_address</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Default billing address ID</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>markup_type</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Markup type</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>flat_markup</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Flat markup value</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>corporate_markup_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Markup master ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>production_days</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Production days</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>display_in_company_list</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Display in company list</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>allow_partial_payment</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Allow partial payment</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>payment_term_id</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Payment term ID</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>user_create_type</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>User creation type. Set <strong>1</strong> to use existing customer.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>customerid</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Customer ID. <strong>Required when</strong> <strong><code>user_create_type</code></strong> <strong>= 1.</strong></td>\n<td>10</td>\n</tr>\n<tr>\n<td><code>assign_product</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated product IDs to assign</td>\n<td>236,123</td>\n</tr>\n<tr>\n<td><code>unassign_product</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Comma-separated product IDs to unassign</td>\n<td>214,456</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the store. <strong>Requires</strong> <strong><code>corporate_id</code>****.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"a32f8213-562d-4f6f-8a68-ad0134c9b778","name":"Add new Store with Existing","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStore ($input: StoreInput!) {\n    setStore (input: $input) {\n        result\n        message\n        corporate_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\" : 0,\n        \"user_create_type\" : 1,\n        \"customerid\":10,\n        \"corporate_name\" : \"newstorenamennyy\",\n        \"phone_number\" : \"123123123123\",\n        \"url_type\" : \"0\",\n        \"main_url\" : \"asdsadaagcdppjj.com\",\n        \"status\" : \"1\",\n        \"payon\" : \"1\",\n        \"pay_limit\" : \"100\",\n        \"tax_exempt\" : \"1\",\n        \"tax_exempt_type\" : \"0\",\n        \"order_approval\" : \"1\",\n        \"price_visible\" : \"no\",\n        \"price_text\" : \"pricetest\",\n        \"department_module_enable\" : \"1\",\n        \"fix_billing_address\" : \"1\",\n        \"fix_shipping_address\" : \"1\",\n        \"default_shipping_address\" : 0,\n        \"default_billing_address\" : 0,\n        \"markup_type\" : \"1\",\n        \"flat_markup\" : 0,\n        \"corporate_markup_id\" : 1,\n        \"production_days\" : 12,\n        \"display_in_company_list\" : \"1\",\n        \"allow_partial_payment\" : 1,\n        \"payment_term_id\": 1,\n        \"assign_product\" : \"236,123\",\n        \"unassign_product\" : \"214,456\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a83bc650-4429-44fe-8cdd-1ea06bbc84fe","name":"Add new Store with Two step","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStore ($input: StoreInput!) {\n    setStore (input: $input) {\n        result\n        message\n        corporate_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\" : 0,\n        \"email\" : \"asas@cdcssdsddqq.lgg\",\n        \"username\" : \"testusernameqqq1ddttll\",\n        \"password\" : \"asdasdasdadllvvvv\",\n        \"corporate_name\" : \"newstorenamennyy\",\n        \"phone_number\" : \"123123123123\",\n        \"url_type\" : \"0\",\n        \"main_url\" : \"asdsadaagcdppjj.com\",\n        \"status\" : \"1\",\n        \"payon\" : \"1\",\n        \"pay_limit\" : \"100\",\n        \"tax_exempt\" : \"1\",\n        \"tax_exempt_type\" : \"0\",\n        \"order_approval\" : \"1\",\n        \"price_visible\" : \"no\",\n        \"price_text\" : \"pricetest\",\n        \"department_module_enable\" : \"1\",\n        \"fix_billing_address\" : \"1\",\n        \"fix_shipping_address\" : \"1\",\n        \"default_shipping_address\" : 0,\n        \"default_billing_address\" : 0,\n        \"markup_type\" : \"1\",\n        \"flat_markup\" : 0,\n        \"corporate_markup_id\" : 1,\n        \"production_days\" : 12,\n        \"display_in_company_list\" : \"1\",\n        \"allow_partial_payment\" : 1,\n        \"payment_term_id\": 1,\n        \"assign_product\" : \"236,123\",\n        \"unassign_product\" : \"214,456\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5f382f87-92ea-46c8-afb4-412e100b5f55","name":"Update Store","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStore ($input: StoreInput!) {\n    setStore (input: $input) {\n        result\n        message\n        corporate_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\" : 200,\n        \"email\" : \"asas@cdcssdsddqq.lgg\",\n        \"username\" : \"testusernameqqq1ddttll\",\n        \"password\" : \"asdasdasdadllvvvv\",\n        \"corporate_name\" : \"newstorenamennyy\",\n        \"phone_number\" : \"123123123123\",\n        \"url_type\" : \"0\",\n        \"main_url\" : \"asdsadaagcdppjj.com\",\n        \"status\" : \"1\",\n        \"payon\" : \"1\",\n        \"pay_limit\" : \"100\",\n        \"tax_exempt\" : \"1\",\n        \"tax_exempt_type\" : \"0\",\n        \"order_approval\" : \"1\",\n        \"price_visible\" : \"no\",\n        \"price_text\" : \"pricetest\",\n        \"department_module_enable\" : \"1\",\n        \"fix_billing_address\" : \"1\",\n        \"fix_shipping_address\" : \"1\",\n        \"default_shipping_address\" : 0,\n        \"default_billing_address\" : 0,\n        \"markup_type\" : \"1\",\n        \"flat_markup\" : 0,\n        \"corporate_markup_id\" : 1,\n        \"production_days\" : 12,\n        \"display_in_company_list\" : \"1\",\n        \"allow_partial_payment\" : 1,\n        \"payment_term_id\": 1,\n        \"assign_product\" : \"236,123\",\n        \"unassign_product\" : \"214,456\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"80d7b602-13f3-43a7-b35f-61317deca2c3","name":"Delete Store","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStore ($input: StoreInput!) {\n    setStore (input: $input) {\n        result\n        message\n        corporate_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\" : 200,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d74108db-527d-433d-b55a-17c71fb05453"},{"name":"Set Markup Master","id":"937de4cc-8d52-46fa-be99-f1ca09ac8890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreMarkup ($input: StoreMarkupInput!) {\n    setStoreMarkup (input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\": 0,\n        \"markup_type\": \"1\",\n        \"markup_title\": \"Volume Tiers\",\n        \"markup_by\": \"0\",\n        \"markup_details\": {\"100\": \"10\", \"500\": \"7\", \"1000\": \"5\"},\n        \"status\": \"1\",\n        \"appliedon\": \"1\"\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create, update, or delete store markup masters (pricing markup templates).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>corporate_markup_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Markup master ID. Set 0 for insert. <strong>Required for update/delete.</strong></td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>corporate_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Store/corporate ID. <strong>Required for insert.</strong> Must be a Public Store (corporate_type 2 or 3).</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>markup_type</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td><code>\"0\"</code> = Fixed, <code>\"1\"</code> = Dynamic</td>\n<td>\"1\"</td>\n</tr>\n<tr>\n<td><code>markup_title</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Markup title. <strong>Required for insert.</strong></td>\n<td>\"Volume Tiers\"</td>\n</tr>\n<tr>\n<td><code>markup_details</code></td>\n<td>No</td>\n<td><em>JSON</em></td>\n<td>For Fixed: single percentage value. For Dynamic: bracket object <code>{upto: rate}</code></td>\n<td>{\"100\": \"10\", \"500\": \"7\"}</td>\n</tr>\n<tr>\n<td><code>markup_by</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Lookup type for Dynamic brackets. <code>\"0\"</code> = Price, <code>\"1\"</code> = Quantity</td>\n<td>\"0\"</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Status (0 = inactive, 1 = active)</td>\n<td>\"1\"</td>\n</tr>\n<tr>\n<td><code>appliedon</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td><code>\"0\"</code> = Base Price, <code>\"1\"</code> = Vendor Price</td>\n<td>\"1\"</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete the markup. <strong>Requires <code>corporate_markup_id</code>.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Rule</th>\n<th>Error Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>corporate_id</code> must belong to a Public Store</td>\n<td>Markup is only allowed for Public Stores. Private Stores are not allowed.</td>\n</tr>\n<tr>\n<td><code>markup_title</code> is required on insert</td>\n<td>Markup Title is required.</td>\n</tr>\n<tr>\n<td>Invalid <code>corporate_id</code></td>\n<td>Invalid corporate_id. Store not found.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"legends\">Legends</h2>\n<h3 id=\"markup-type-markup_type\">Markup Type (<code>markup_type</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Fixed — single percentage applied to all</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Dynamic — tiered brackets based on price or quantity</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"markup-lookup-markup_by\">Markup Lookup (<code>markup_by</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Price — brackets based on product price</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Quantity — brackets based on order quantity</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"applied-on-appliedon\">Applied On (<code>appliedon</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Base Price</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Vendor Price</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"7f101db7-912f-400f-bc86-03b358098295","name":"Add Markup Master","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreMarkup ($input: StoreMarkupInput!) {\n    setStoreMarkup (input: $input) {\n        result\n        message\n        corporate_markup_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_markup_id\" : 0,\n        \"markup_title\" : \"TEST sdsd new\",\n        \"markup_details\" : \"200\",\n        \"status\" : \"1\",\n        \"appliedon\" : \"1\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fb56267b-d9da-4f33-8cb7-4ddb0048df79","name":"Update Markup Master","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreMarkup ($input: StoreMarkupInput!) {\n    setStoreMarkup (input: $input) {\n        result\n        message\n        corporate_markup_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_markup_id\" : 10,\n        \"markup_title\" : \"TEST sdsd new\",\n        \"markup_details\" : \"200\",\n        \"status\" : \"1\",\n        \"appliedon\" : \"1\",\n        \"delete\" : 0\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"434aa7cc-276a-4092-a603-897308a0435c","name":"Delete Markup Master","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreMarkup ($input: StoreMarkupInput!) {\n    setStoreMarkup (input: $input) {\n        result\n        message\n        corporate_markup_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_markup_id\" : 10,\n        \"delete\" : 1\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"42551088-2893-4264-9a4e-fb8c3e15e2bf","name":"Dynamic Markup Master","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setStoreMarkup ($input: StoreMarkupInput!) {\n    setStoreMarkup (input: $input) {\n        result\n        message\n        corporate_markup_id\n    }\n}","variables":"{\n    \"input\" : {\n        \"corporate_id\": 0,\n        \"markup_type\": \"1\",\n        \"markup_title\": \"Volume Tiers\",\n        \"markup_by\": \"0\",\n        \"markup_details\": {\"100\": \"10\", \"500\": \"7\", \"1000\": \"5\"},\n        \"status\": \"1\",\n        \"appliedon\": \"1\"\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"937de4cc-8d52-46fa-be99-f1ca09ac8890"}],"id":"6c91e420-a555-40a6-832a-c7e6dd1ac143","_postman_id":"6c91e420-a555-40a6-832a-c7e6dd1ac143","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}},{"name":"Quote","item":[{"name":"Set Quote","id":"74f79e2d-af7b-4771-b0ad-b2957c049518","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setQuote ($userid: Int!, $quote_id: Int, $selected_shipping_type: String, $quote_title: String, $input: SetQuoteInput!) {\n    setQuote (userid: $userid, quote_title: $quote_title, selected_shipping_type: $selected_shipping_type, quote_id: $quote_id, input: $input) {\n        result\n        message\n        id\n    }\n}","variables":"{\n    \"userid\" : 467,\n    \"quote_title\" : \"api quote title\",\n    \"selected_shipping_type\" : \"fedexground\",\n    \"quote_id\" : 0,\n    \"input\" : {\n        \"products_arr\" : [\n            {\n                \"quote_product_id\":0,\n                \"product_id\" : 256,\n                \"products_quantity\":1,\n                \"width\":1,\n                \"height\":1,\n                \"job_title\": \"api job title 1\",\n                \"production_description\" : \"quote production desc\",\n                \"options\" : [\n                    {\n                        \"123\":\"9976\",\n                        \"1234\":\"9976\"\n                    }\n                ]\n            },\n            {\n                \"quote_product_id\":0,\n                \"product_id\" : 256,\n                \"products_quantity\":2,\n                \"width\":2,\n                \"height\":2,\n                \"job_title\": \"api job title 2\",\n                \"options\" : [\n                    {\n\n                    }\n                ]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}","description":"<p>This API is used to create or update a quote with standard or custom products.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userid</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Customer ID</td>\n<td>467</td>\n</tr>\n<tr>\n<td><code>quote_title</code></td>\n<td>Conditional</td>\n<td><em>String</em></td>\n<td>Quote title (required for create)</td>\n<td>api quote title</td>\n</tr>\n<tr>\n<td><code>quote_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Quote ID (required for update/delete)</td>\n<td>1452</td>\n</tr>\n<tr>\n<td><code>selected_shipping_type</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Shipping type</td>\n<td>fedexground</td>\n</tr>\n<tr>\n<td><code>products_arr</code></td>\n<td>Yes</td>\n<td><em>Array</em></td>\n<td>Array of products. For delete, pass <code>[{ \"quote_product_id\": X, \"delete\": 1 }]</code></td>\n<td>[]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"standard-product-object-inside-products_arr\">Standard Product Object (Inside <code>products_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>quote_product_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Existing quote product ID. Set 0 for new. <strong>Required for update/delete.</strong></td>\n<td>4764</td>\n</tr>\n<tr>\n<td><code>product_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Product ID. <strong>Required for standard products.</strong></td>\n<td>256</td>\n</tr>\n<tr>\n<td><code>products_quantity</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Quantity (required for create/update)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Width (required for custom size products)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Conditional</td>\n<td><em>Float</em></td>\n<td>Height (required for custom size products)</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>job_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Job title</td>\n<td>api job title 1</td>\n</tr>\n<tr>\n<td><code>production_description</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Production description/notes</td>\n<td>quote production desc</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Lock price flag. Possible Values: 0, 1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>price_adjustment</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Price adjustment amount (positive or negative)</td>\n<td>30</td>\n</tr>\n<tr>\n<td><code>per_unit_weight</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Weight per unit</td>\n<td>30</td>\n</tr>\n<tr>\n<td><code>customer_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Customer price</td>\n<td>20</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>No</td>\n<td><em>Array</em></td>\n<td>Array of selected options (key-value pairs)</td>\n<td>[{\"123\": \"9976\"}]</td>\n</tr>\n<tr>\n<td><code>delete</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> to delete this quote product. <strong>Requires <code>quote_product_id</code>.</strong></td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"custom-product-object-inside-products_arr\">Custom Product Object (Inside <code>products_arr</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>quote_product_id</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Existing quote product ID. Set 0 for new.</td>\n<td>4765</td>\n</tr>\n<tr>\n<td><code>products_quantity</code></td>\n<td>Conditional</td>\n<td><em>Int</em></td>\n<td>Quantity (required for create/update)</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>is_custom_product</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Set <strong>1</strong> for custom product</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>product_name</code></td>\n<td>Yes</td>\n<td><em>String</em></td>\n<td>Custom product name</td>\n<td>custom prd Name</td>\n</tr>\n<tr>\n<td><code>prd_sku</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Product SKU</td>\n<td>custsku</td>\n</tr>\n<tr>\n<td><code>per_unit_weight</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Weight per unit</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>prd_days</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Production days</td>\n<td>2</td>\n</tr>\n<tr>\n<td><code>size_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Size title</td>\n<td>site title</td>\n</tr>\n<tr>\n<td><code>cost</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Vendor cost</td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>customer_price</code></td>\n<td>No</td>\n<td><em>Float</em></td>\n<td>Customer price</td>\n<td>20</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Lock price flag. Possible Values: 0, 1</td>\n<td>0</td>\n</tr>\n<tr>\n<td><code>price_adjustment</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Price adjustment amount</td>\n<td>-30</td>\n</tr>\n<tr>\n<td><code>job_title</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Job title</td>\n<td>api job custom product</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>No</td>\n<td><em>Array</em></td>\n<td>Array of options (key-value pairs)</td>\n<td>[{\"ABC\": \"XYZ\"}]</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"ab9b5888-ce54-49e9-bc60-9905059a638f","name":"Add New Quote","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setQuote ($userid: Int!, $quote_id: Int, $selectedShippingType: String, $quote_title: String!, $input: SetQuoteInput!) {\n    setQuote (userid: $userid, quote_title: $quote_title, selectedShippingType: $selectedShippingType, quote_id: $quote_id, input: $input) {\n        result\n        message\n        quote_id\n    }\n}","variables":"{\n    \"userid\" : 467,\n    \"quote_title\" : \"api quote title\",\n    \"selected_shipping_type\" : \"fedexground\",\n    \"quote_id\" : 0,\n    \"input\" : {\n        \"productsArr\" : [\n            {\n                \"quote_product_id\":0,\n                \"product_id\" : 256,\n                \"products_quantity\":1,\n                \"width\":1,\n                \"height\":1,\n                \"job_title\": \"api job title 1\",\n                \"production_description\" : \"quote production desc\",\n                \"options\" : [\n                    {\n                        \"123\":\"9976\",\n                        \"1234\":\"9976\"\n                    }\n                ]\n            },\n            {\n                \"quote_product_id\":0,\n                \"product_id\" : 256,\n                \"products_quantity\":2,\n                \"width\":2,\n                \"height\":2,\n                \"job_title\": \"api job title 2\",\n                \"options\" : [\n                    {\n\n                    }\n                ]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Oct 2025 09:45:11 GMT"},{"key":"Server","value":"Apache/2.4.52 (Ubuntu)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' blob:;img-src * blob: data:;connect-src * 'unsafe-inline' data: blob:;"},{"key":"X-Powered-By","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Content-Length","value":"101"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"setQuote\": {\n            \"result\": true,\n            \"message\": \"Quote Added Successfully.\",\n            \"quote_id\": 1449\n        }\n    }\n}"},{"id":"23db7dc3-ce3b-4c21-9be9-fda3ef2e8fe8","name":"Add Custom Quote","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setQuote ($userid: Int!, $quote_id: Int, $selectedShippingType: String, $quote_title: String!, $input: SetQuoteInput!) {\n    setQuote (userid: $userid, quote_title: $quote_title, selectedShippingType: $selectedShippingType, quote_id: $quote_id, input: $input) {\n        result\n        message\n        quote_id\n    }\n}","variables":"{\n    \"userid\" : 467,\n    \"quote_title\" : \"api quote title\",\n    \"quote_id\" : 0,\n    \"input\" : {\n        \"productsArr\" : [\n            {\n                \"quote_product_id\":0,\n                \"product_id\" : 256,\n                \"products_quantity\":1,\n                \"width\":1,\n                \"height\":1,\n                \"job_title\": \"api job title 1\",\n                \"production_description\" : \"quote production desc\",\n                \"options\" : [\n                    {\n                        \"123\":\"9976\",\n                        \"1234\":\"9976\"\n                    }\n                ]\n            },\n            {\n                \"quote_product_id\":0,\n                \"products_quantity\": 2,\n                \"is_custom_product\": 1,\n                \"product_name\" : \"custom prd Name\",\n                \"prd_sku\": \"custsku\",\n                \"per_unit_weight\": 2,\n                \"prd_days\": 2,\n                \"size_title\": \"site title\",\n                \"cost\": 5,\n                \"customer_price\": 20,\n                \"job_title\": \"api job custom product\",\n                \"options\" : [\n                    {\n                        \"ABC\":\"XYZ\",\n                        \"123\":\"456\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"007ff936-45ae-4f4f-879e-5c9e56978d03","name":"Edit Quote","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setQuote ($userid: Int!, $quote_id: Int, $selectedShippingType: String, $quote_title: String!, $input: SetQuoteInput!) {\n    setQuote (userid: $userid, quote_title: $quote_title, selectedShippingType: $selectedShippingType, quote_id: $quote_id, input: $input) {\n        result\n        message\n        quote_id\n    }\n}","variables":"{\n    \"userid\" : 467,\n    \"quote_title\" : \"api quote title\",\n    \"quote_id\" : 1452,\n    \"input\" : {\n        \"productsArr\" : [\n            {\n                \"quote_product_id\":4764,\n                \"product_id\" : 256,\n                \"products_quantity\":1,\n                \"width\":1,\n                \"height\":1,\n                \"lock_price\":0,\n                \"price_adjustment\":30,\n                \"per_unit_weight\":30,\n                \"customer_price\": 20,\n                \"job_title\": \"api job title 1\",\n                \"production_description\" : \"quote production desc\",\n                \"options\" : [\n                    {\n                        \"123\":\"9976\",\n                        \"1234\":\"9976\"\n                    }\n                ]\n            },\n            {\n                \"quote_product_id\":4765,\n                \"products_quantity\": 2,\n                \"is_custom_product\": 1,\n                \"product_name\" : \"custom prd Name\",\n                \"prd_sku\": \"custsku\",\n                \"per_unit_weight\": 2,\n                \"prd_days\": 2,\n                \"size_title\": \"site title\",\n                \"cost\": 5,\n                \"lock_price\":0,\n                \"price_adjustment\":-30,\n                \"customer_price\": 20,\n                \"job_title\": \"api job custom product\",\n                \"options\" : [\n                    {\n                        \"ABC\":\"XYZ\",\n                        \"123\":\"456\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1357e161-b56c-4875-ab84-2b83cad7d0ed","name":"Delete Quote Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setQuote ($userid: Int!, $quote_id: Int, $selectedShippingType: String, $quote_title: String!, $input: SetQuoteInput!) {\n    setQuote (userid: $userid, quote_title: $quote_title, selectedShippingType: $selectedShippingType, quote_id: $quote_id, input: $input) {\n        result\n        message\n        quote_id\n    }\n}","variables":"{\n    \"userid\" : 1,\n    \"quote_id\" : 1973,\n    \"input\" : {\n        \"products_arr\" : [\n            {\n                \"quote_product_id\":6464,\n                \"delete\" : 1\n            }\n        ]\n    }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"74f79e2d-af7b-4771-b0ad-b2957c049518"}],"id":"362eaf23-a7ef-47c1-96ee-81788eeeb8f4","_postman_id":"362eaf23-a7ef-47c1-96ee-81788eeeb8f4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}},{"name":"FAQ","item":[{"name":"Set FAQ Category","id":"c38e1b46-a5c9-4a08-8895-d90844f52f4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaqCategory($input: FaqCategoryInput!) {\n  setFaqCategory(input: $input) {\n    result\n    message\n    id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faqcat_id\": 30,\n    \"faq_category_name\": \"TEST categroy\",\n    \"status\": \"1\",\n    \"delete\": 0,\n    \"sort_order\": 5\n  }\n}"}},"url":"{{api_url}}","description":"<p>This will change the size or price of order product (Only for Custom size product).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific order product.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Width of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Height of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used for lock price or not. Possible Values - 0,1 <strong>Default :- 1</strong></td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comments</td>\n<td>comments</td>\n</tr>\n<tr>\n<td><code>notify_customer</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Notify customer or not Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"3aa1ba52-fafb-48e1-ad41-da1e0dc2ee12","name":"Add FAQ Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaqCategory($input: FaqCategoryInput!) {\n  setFaqCategory(input: $input) {\n    result\n    message\n    faqcat_id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faqcat_id\": 0,\n    \"faq_category_name\": \"TEST categroy\",\n    \"status\": \"1\",\n    \"sort_order\": 5\n  }\n}\n"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"16e41329-737a-4ce0-9245-6480ed6e4f4c","name":"Update FAQ Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaqCategory($input: FaqCategoryInput!) {\n  setFaqCategory(input: $input) {\n    result\n    message\n    faqcat_id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faqcat_id\": 30,\n    \"status\": \"0\"\n  }\n}\n"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"35cfa2c8-d045-4e2c-a0f0-53079ff9931e","name":"Delete FAQ Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaqCategory($input: FaqCategoryInput!) {\n  setFaqCategory(input: $input) {\n    result\n    message\n    faqcat_id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faqcat_id\": 30,\n    \"delete\": 1\n  }\n}\n"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c38e1b46-a5c9-4a08-8895-d90844f52f4f"},{"name":"Set FAQ","id":"7768aa55-31fc-4a38-94c6-5779456ed7bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaq($input: FaqInput!) {\n  setFaq(input: $input) {\n    result\n    message\n    id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faq_id\" : 0,\n    \"faqcat_id\" : 2, \n    \"corporate_id\" : 0,\n    \"status\" : \"0\",\n    \"sort_order\" : 2,\n    \"faq_type\" : \"G\",\n    \"product_category_ids\" : null,\n    \"faq_question\" : \"new Faq\",\n    \"faq_answer\" : \"answer of this faq\"\n  }\n}"}},"url":"{{api_url}}","description":"<p>This will change the size or price of order product (Only for Custom size product).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PARAMS</th>\n<th>REQUIRED</th>\n<th>DATA TYPE</th>\n<th>DESCRIPTION</th>\n<th>EXAMPLE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orders_products_id</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>The ID of the specific order product.</td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>width</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Width of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>height</code></td>\n<td>Yes</td>\n<td><em>Int</em></td>\n<td>Height of custom product</td>\n<td>12</td>\n</tr>\n<tr>\n<td><code>lock_price</code></td>\n<td>No</td>\n<td><em>Int</em></td>\n<td>Used for lock price or not. Possible Values - 0,1 <strong>Default :- 1</strong></td>\n<td>1</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Additional comments</td>\n<td>comments</td>\n</tr>\n<tr>\n<td><code>notify_customer</code></td>\n<td>No</td>\n<td><em>String</em></td>\n<td>Notify customer or not Possible Values - 0,1</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}},"urlObject":{"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"01d2d0f6-fdba-40e6-ad77-bc01ec135cbb","name":"Update FAQ","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaq($input: FaqInput!) {\n  setFaq(input: $input) {\n    result\n    message\n    faq_id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faq_id\" : 52,\n    \"faq_question\" : \"new question\",\n    \"product_category_ids\" : \"82,100\",\n    \"faq_type\" : \"C\"\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eb3aa3e9-ea88-438a-987a-43768837dbab","name":"Add FAQ","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaq($input: FaqInput!) {\n  setFaq(input: $input) {\n    result\n    message\n    faq_id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faq_id\" : 0,\n    \"faqcat_id\" : 2, \n    \"corporate_id\" : 0,\n    \"status\" : \"0\",\n    \"sort_order\" : 2,\n    \"faq_type\" : \"G\",\n    \"product_category_ids\" : null,\n    \"faq_question\" : \"new Faq\",\n    \"faq_answer\" : \"answer of this faq\"\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ae209727-c928-463c-a2d3-bb76c814c706","name":"Delete FAQ","originalRequest":{"method":"POST","header":[],"body":{"mode":"graphql","graphql":{"query":"mutation setFaq($input: FaqInput!) {\n  setFaq(input: $input) {\n    result\n    message\n    faq_id\n  }\n}\n","variables":"{\n  \"input\": {\n    \"faq_id\" : 53,\n    \"delete\" : 1\n  }\n}"}},"url":"{{api_url}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7768aa55-31fc-4a38-94c6-5779456ed7bc"}],"id":"c0855b7e-ef74-4cc6-8836-4ddfc4391f8d","_postman_id":"c0855b7e-ef74-4cc6-8836-4ddfc4391f8d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":true,"source":{"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","id":"6c06992a-7625-4d08-bb0e-69996d7cf853","name":"Mutations","type":"folder"}}}],"id":"6c06992a-7625-4d08-bb0e-69996d7cf853","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearer_token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"ece3a5cb-9ccd-4040-b40f-44cff37b9dcf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e6e9b34c-c6f7-4e39-8248-d6df4d926ada","type":"text/javascript","exec":[""]}}],"_postman_id":"6c06992a-7625-4d08-bb0e-69996d7cf853","description":""}],"event":[{"listen":"prerequest","script":{"id":"e445e771-8471-42ad-beb8-22b6151debea","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"00f0bb54-0037-4be9-914b-035f66cfdc08","type":"text/javascript","exec":[""]}}],"variable":[{"id":"396148f6-2159-4b8b-9b1f-8c7fcf99b222","key":"url","value":"","type":"any"}]}