{"info":{"_postman_id":"0e2fb58e-d5bf-492b-825f-b741e16d4dcc","name":"Jwero API","description":"<html><head></head><body><p>1. <strong>Authorization</strong></p>\n<p>All API requests require <strong>Authorization</strong> via an API key.</p>\n<p><strong>API Key Authentication:</strong></p>\n<ul>\n<li><p>The API key should be included in the request headers.</p>\n</li>\n<li><p><strong>Header Name:</strong> <code>apiKey</code></p>\n</li>\n<li><p><strong>Header Value:</strong> Your personal API key.</p>\n</li>\n</ul>\n<h3 id=\"how-to-obtain-your-api-key\">How to Obtain Your API Key:</h3>\n<ol>\n<li><p>Log in to your account at <a href=\"https://crm.jwero.ai/\">CRM</a></p>\n</li>\n<li><p>Navigate to the <strong>Profile</strong> section.</p>\n</li>\n<li><p>Under the <strong>API &amp; Keys</strong> tab, you will find your unique API key.</p>\n</li>\n<li><p>Copy the key and use it in your API requests as described in the authorization section.</p>\n</li>\n</ol>\n<p>Example of Authorization Header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">apiKey: &lt;YOUR_API_KEY&gt;\n\n</code></pre>\n<h3 id=\"2-viewing-logs\">2. <strong>Viewing Logs</strong></h3>\n<p>You can track and monitor your API actions through the logs section.</p>\n<p><strong>How to View API Logs:</strong></p>\n<ol>\n<li><p>Log in to your account at <a href=\"https://crm.jwero.ai/\">CRM</a></p>\n</li>\n<li><p>Navigate to the <strong>Profile</strong> section.</p>\n</li>\n<li><p>Click on the <strong>API Logs</strong> tab.</p>\n</li>\n<li><p>Here, you can view detailed logs of your API activity, including timestamps, request details, and response statuses.</p>\n</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"34519145","collectionId":"0e2fb58e-d5bf-492b-825f-b741e16d4dcc","publishedId":"2sA3Bt2UyV","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-04-26T12:41:14.000Z"},"item":[{"name":"Messages","item":[{"name":"Send Whatsapp Template","item":[{"name":"Send Whatsapp template Text","id":"bfa89a47-4c22-4009-8f20-5ac858c07841","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"payload\": {\n        \"messaging_product\": \"whatsapp\",\n        \"recipient_type\": \"individual\",\n        \"to\": \"919876543210\",\n        \"type\": \"template\",\n        \"template\": {\n            \"name\": \"diwali_greetings\",\n            \"language\": {\n                \"code\": \"en\"\n            },\n            \"components\": [\n                {\n                    \"type\": \"BODY\",\n                    \"parameters\": [\n                        {\n                            \"type\": \"text\",\n                            \"text\": \"Happy Diwali!\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"platform\": \"whatsapp\"\n}\n"},"url":"https://api.jwero.com/v1/social/message","description":"<h3 id=\"api-endpoint-send-whatsapp-message\">API Endpoint: Send WhatsApp Message</h3>\n<p>This endpoint allows you to send a templated message via WhatsApp to an individual recipient. It is designed to facilitate communication through the WhatsApp messaging platform using predefined templates.</p>\n<h4 id=\"request-structure\">Request Structure</h4>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>https://api.jwero.com/v1/social/message</code></p>\n</li>\n<li><p><strong>Content-Type:</strong> application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body should be a JSON object containing the following keys:</p>\n<ul>\n<li><p><strong>payload</strong>: An object that includes the message details.</p>\n<ul>\n<li><p><strong>messaging_product</strong> (string): The messaging platform being used, e.g., \"whatsapp\".</p>\n</li>\n<li><p><strong>recipient_type</strong> (string): Indicates the type of recipient, e.g., \"individual\".</p>\n</li>\n<li><p><strong>to</strong> (string): The phone number of the recipient in international format.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of message being sent, e.g., \"template\".</p>\n</li>\n<li><p><strong>template</strong>: An object that defines the template message.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the template to be used.</p>\n</li>\n<li><p><strong>language</strong>: An object specifying the language of the message.</p>\n<ul>\n<li><strong>code</strong> (string): The language code, e.g., \"en\" for English.</li>\n</ul>\n</li>\n<li><p><strong>components</strong>: An array of components that make up the template. <strong>Require to add if your template has any variable values, if template is static and doesn't have any variable value then components can be empty.</strong></p>\n<ul>\n<li><p>Each component is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of component, e.g., \"BODY\".</p>\n</li>\n<li><p><strong>parameters</strong>: An array of parameters for the component.</p>\n<ul>\n<li><p>Each parameter is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of parameter, e.g., \"text\".</p>\n</li>\n<li><p><strong>text</strong> (string): The content of the parameter, e.g., \"Happy Diwali!\".</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>platform</strong> (string): The platform being used, e.g., \"whatsapp\".</p>\n</li>\n<li><p><strong>user_info</strong>: An object containing information about the user.</p>\n<ul>\n<li><p><strong>id</strong> (integer): The unique identifier for the user.</p>\n</li>\n<li><p><strong>platform_id</strong> (string): The user's platform identifier, e.g., their phone number.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response from this endpoint will provide confirmation of the message sent, along with any relevant metadata. The exact structure of the response will depend on the implementation but is expected to include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates whether the message was sent successfully.</p>\n</li>\n<li><p><strong>message_id</strong>: A unique identifier for the sent message.</p>\n</li>\n<li><p><strong>timestamp</strong>: The time at which the message was sent.</p>\n</li>\n</ul>\n<p>Ensure that all required fields are correctly populated to avoid errors in message delivery.</p>\n","urlObject":{"path":["v1","social","message"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[{"id":"e5a51c16-84fa-4085-89ad-7e57d676a06f","name":"Send Whatsapp template Text","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"payload\": {\n        \"messaging_product\": \"whatsapp\",\n        \"recipient_type\": \"individual\",\n        \"to\": \"919876543210\",\n        \"type\": \"template\",\n        \"template\": {\n            \"name\": \"diwali_greetings\",\n            \"language\": {\n                \"code\": \"en\"\n            },\n            \"components\": [\n                {\n                    \"type\": \"BODY\",\n                    \"parameters\": [\n                        {\n                            \"type\": \"text\",\n                            \"text\": \"Happy Diwali!\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"platform\": \"whatsapp\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/social/message"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"time\": 9999999999999,\n        \"is_sender\": true,\n        \"is_read\": true,\n        \"message\": {\n            \"id\": \"dummy_message_id\",\n            \"type\": \"template\",\n            \"template\": {\n                \"name\": \"dummy_template_name\",\n                \"language\": {\n                    \"code\": \"en\"\n                },\n                \"components\": [\n                    {\n                        \"type\": \"BODY\",\n                        \"parameters\": [\n                            {\n                                \"type\": \"text\",\n                                \"text\": \"Dummy text\"\n                            }\n                        ]\n                    }\n                ]\n            }\n        },\n        \"meta_data\": {\n            \"template\": {\n                \"name\": \"dummy_template_name\",\n                \"components\": [\n                    {\n                        \"type\": \"HEADER\",\n                        \"format\": \"TEXT\",\n                        \"text\": \"Dummy Header\"\n                    },\n                    {\n                        \"type\": \"BODY\",\n                        \"text\": \"Hello {{1}},\\n\\nThis is a dummy message.\",\n                        \"example\": {\n                            \"body_text\": [\n                                [\n                                    \"first_name\"\n                                ]\n                            ]\n                        }\n                    },\n                    {\n                        \"type\": \"FOOTER\",\n                        \"text\": \"Dummy Footer\"\n                    },\n                    {\n                        \"type\": \"BUTTONS\",\n                        \"buttons\": [\n                            {\n                                \"type\": \"QUICK_REPLY\",\n                                \"text\": \"Yes\"\n                            },\n                            {\n                                \"type\": \"QUICK_REPLY\",\n                                \"text\": \"Stop\"\n                            },\n                            {\n                                \"type\": \"QUICK_REPLY\",\n                                \"text\": \"Send more details\"\n                            }\n                        ]\n                    }\n                ],\n                \"language\": \"en\",\n                \"status\": \"APPROVED\",\n                \"category\": \"MARKETING\",\n                \"id\": \"999999999999999\"\n            }\n        }\n    }\n}"}],"_postman_id":"bfa89a47-4c22-4009-8f20-5ac858c07841"},{"name":"Send Whatsapp template Image","id":"a5281e7d-765a-45a2-b0a0-9df75504445f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"payload\": {\n    \"messaging_product\": \"whatsapp\",\n    \"recipient_type\": \"individual\",\n    \"to\": \"<PHONE_NUMBER>\",\n    \"type\": \"template\",\n    \"template\": {\n      \"name\": \"<TEMPLATE_NAME>\",\n      \"language\": {\n        \"code\": \"<LANG_CODE>\"\n      },\n      \"components\": [\n        {\n          \"type\": \"HEADER\",\n          \"parameters\": [\n            {\n              \"type\": \"image\",\n              \"image\": {\n                \"link\": \"<IMAGE_URL>\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"BODY\",\n          \"parameters\": [\n            {\n              \"type\": \"text\",\n              \"text\": \"<VARIABLE VALUE>\"\n            }\n          ]\n        }\n      ]\n    }\n  },\n  \"platform\": \"whatsapp\"\n}\n"},"url":"https://api.jwero.com/v1/social/message","description":"<h3 id=\"api-endpoint-send-whatsapp-message\">API Endpoint: Send WhatsApp Message</h3>\n<p>This endpoint allows you to send a templated message via WhatsApp to an individual recipient. It is designed to facilitate communication through the WhatsApp messaging platform using predefined templates. This is particularly useful for businesses or services that want to engage users with consistent messaging formats.</p>\n<h4 id=\"request-structure\">Request Structure</h4>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>https://api.jwero.com/v1/social/message</code></p>\n</li>\n<li><p><strong>Content-Type:</strong> application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body should be a JSON object containing the following keys:</p>\n<ul>\n<li><p><strong>payload</strong>: An object that includes the message details.</p>\n<ul>\n<li><p><strong>messaging_product</strong> (string): The messaging platform being used, e.g., \"whatsapp\".</p>\n</li>\n<li><p><strong>recipient_type</strong> (string): Indicates the type of recipient, e.g., \"individual\".</p>\n</li>\n<li><p><strong>to</strong> (string): The phone number of the recipient in international format.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of message being sent, e.g., \"template\".</p>\n</li>\n<li><p><strong>template</strong>: An object that defines the template message.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the template to be used.</p>\n</li>\n<li><p><strong>language</strong>: An object specifying the language of the message.</p>\n<ul>\n<li><strong>code</strong> (string): The language code, e.g., \"en\" for English.</li>\n</ul>\n</li>\n<li><p><strong>components</strong>: An array of components that make up the template.</p>\n<ul>\n<li><p>Each component is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of component, e.g., \"HEADER\".</p>\n</li>\n<li><p><strong>parameters</strong>: An array of parameters for the component.</p>\n<ul>\n<li><p>Each parameter is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of parameter, e.g., \"image\".</p>\n</li>\n<li><p><strong>image</strong>: An object containing the image details.</p>\n<ul>\n<li><strong>link</strong> (string): The URL link to the image.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>You can also add video, document in HEADER, following is example for video (Any media once at a time)</p>\n<ul>\n<li><p>Each parameter is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of parameter, e.g., \"video\".</p>\n</li>\n<li><p><strong>video</strong>: An object containing the video details.</p>\n<ul>\n<li><strong>link</strong> (string): The URL link to the video.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>platform</strong> (string): The platform being used, e.g., \"whatsapp\".</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response from this endpoint will provide confirmation of the message sent, along with any relevant metadata. The exact structure of the response will depend on the implementation but is expected to include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates whether the message was sent successfully.</p>\n</li>\n<li><p><strong>message_id</strong>: A unique identifier for the sent message.</p>\n</li>\n<li><p><strong>timestamp</strong>: The time at which the message was sent.</p>\n</li>\n</ul>\n<p>Ensure that all required fields are correctly populated to avoid errors in message delivery. This endpoint is crucial for automating communication and ensuring timely delivery of messages to users.</p>\n","urlObject":{"path":["v1","social","message"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[{"id":"059d5ad8-dc9e-4060-ab25-898b79cd0582","name":"Send Whatsapp template Image","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"payload\": {\n    \"messaging_product\": \"whatsapp\",\n    \"recipient_type\": \"individual\",\n    \"to\": \"919876543210\",\n    \"type\": \"template\",\n    \"template\": {\n      \"name\": \"order_confirmation\",\n      \"language\": {\n        \"code\": \"en\"\n      },\n      \"components\": [\n        {\n          \"type\": \"HEADER\",\n          \"parameters\": [\n            {\n              \"type\": \"image\",\n              \"image\": {\n                \"link\": \"https://example.com/images/order-confirmation.jpg\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"BODY\",\n          \"parameters\": [\n            {\n              \"type\": \"text\",\n              \"text\": \"Jwero\"\n            }\n          ]\n        }\n      ]\n    }\n  },\n  \"platform\": \"whatsapp\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/social/message"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"http_code\": 200,\n  \"success\": true,\n  \"data\": {\n    \"time\": 1735538400000,\n    \"is_sender\": true,\n    \"is_read\": true,\n    \"message\": {\n      \"id\": \"wamid.HBgMOTE5ODc2NTQzMjEwFQIAERgSM0Q5QkY2RkU5QkE3NzY2AA==\",\n      \"type\": \"template\",\n      \"template\": {\n        \"name\": \"order_confirmation\",\n        \"language\": {\n          \"code\": \"en\"\n        },\n        \"components\": [\n          {\n            \"type\": \"HEADER\",\n            \"parameters\": [\n              {\n                \"type\": \"image\",\n                \"image\": {\n                  \"link\": \"https://example.com/images/order-confirmation.jpg\"\n                }\n              }\n            ]\n          },\n          {\n            \"type\": \"BODY\",\n            \"parameters\": [\n              {\n                \"type\": \"text\",\n                \"text\": \"Amit\"\n              }\n            ]\n          }\n        ]\n      }\n    },\n    \"statuses\": {},\n    \"meta_data\": {\n      \"sent_by\": {\n        \"id\": \"user_1021\",\n        \"first_name\": \"Rahul\",\n        \"last_name\": \"Sharma\",\n        \"isAdmin\": true\n      },\n      \"template\": {\n        \"name\": \"order_confirmation\",\n        \"previous_category\": \"TRANSACTIONAL\",\n        \"parameter_format\": \"POSITIONAL\",\n        \"components\": [\n          {\n            \"type\": \"HEADER\",\n            \"format\": \"IMAGE\",\n            \"example\": {\n              \"header_handle\": [\n                \"https://example.com/images/order-confirmation.jpg\"\n              ]\n            }\n          },\n          {\n            \"type\": \"BODY\",\n            \"text\": \"Hi {{1}}, your jewellery order has been successfully placed.\",\n            \"example\": {\n              \"body_text\": [\n                [\n                  \"Customer Name\"\n                ]\n              ]\n            }\n          },\n          {\n            \"type\": \"FOOTER\",\n            \"text\": \"Thank you for shopping with us\"\n          },\n          {\n            \"type\": \"BUTTONS\",\n            \"buttons\": [\n              {\n                \"type\": \"URL\",\n                \"text\": \"View Order\",\n                \"url\": \"https://example.com/orders/ORD12345\"\n              }\n            ]\n          }\n        ],\n        \"language\": \"en\",\n        \"status\": \"APPROVED\",\n        \"category\": \"TRANSACTIONAL\",\n        \"id\": \"tmpl_789654123\"\n      },\n      \"message_type\": \"template\",\n      \"template_category\": \"TRANSACTIONAL\"\n    }\n  }\n}"}],"_postman_id":"a5281e7d-765a-45a2-b0a0-9df75504445f"},{"name":"Send Whatsapp template Video","id":"ec34fe9d-86dd-45dd-850e-c4aff4ba001a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"payload\": {\n    \"messaging_product\": \"whatsapp\",\n    \"recipient_type\": \"individual\",\n    \"to\": \"<PHONE_NUMBER>\",\n    \"type\": \"template\",\n    \"template\": {\n      \"name\": \"<TEMPLATE_NAME>\",\n      \"language\": {\n        \"code\": \"<LANG_CODE>\"\n      },\n      \"components\": [\n        {\n          \"type\": \"HEADER\",\n          \"parameters\": [\n            {\n              \"type\": \"video\",\n              \"video\": {\n                \"link\": \"<VIDEO_URL>\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"BODY\",\n          \"parameters\": [\n            {\n              \"type\": \"text\",\n              \"text\": \"<VARIABLE VALUE>\"\n            }\n          ]\n        }\n      ]\n    }\n  },\n  \"platform\": \"whatsapp\"\n}\n"},"url":"https://api.jwero.com/v1/social/message","description":"<h3 id=\"api-endpoint-send-whatsapp-message\">API Endpoint: Send WhatsApp Message</h3>\n<p>This endpoint allows you to send a templated message via WhatsApp to an individual recipient. It is designed to facilitate communication through the WhatsApp messaging platform using predefined templates. This is particularly useful for businesses or services that want to engage users with consistent messaging formats.</p>\n<h4 id=\"purpose\">Purpose</h4>\n<p>The purpose of this request is to enable businesses to send structured messages to users on WhatsApp, utilizing templates that can include various media types, such as videos and images. This enhances user engagement by providing a consistent and professional communication style.</p>\n<h4 id=\"request-structure\">Request Structure</h4>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>https://api.jwero.com/v1/social/message</code></p>\n</li>\n<li><p><strong>Content-Type:</strong> application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body should be a JSON object containing the following keys:</p>\n<ul>\n<li><p><strong>payload</strong>: An object that includes the message details.</p>\n<ul>\n<li><p><strong>messaging_product</strong> (string): The messaging platform being used, e.g., \"whatsapp\".</p>\n</li>\n<li><p><strong>recipient_type</strong> (string): Indicates the type of recipient, e.g., \"individual\".</p>\n</li>\n<li><p><strong>to</strong> (string): The phone number of the recipient in international format.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of message being sent, e.g., \"template\".</p>\n</li>\n<li><p><strong>template</strong>: An object that defines the template message.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the template to be used.</p>\n</li>\n<li><p><strong>language</strong>: An object specifying the language of the message.</p>\n<ul>\n<li><strong>code</strong> (string): The language code, e.g., \"en\" for English.</li>\n</ul>\n</li>\n<li><p><strong>components</strong>: An array of components that make up the template.</p>\n<ul>\n<li><p>Each component is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of component, e.g., \"HEADER\".</p>\n</li>\n<li><p><strong>parameters</strong>: An array of parameters for the component.</p>\n<ul>\n<li><p>Each parameter is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of parameter, e.g., \"image\" or \"video\".</p>\n</li>\n<li><p><strong>image</strong>: An object containing the image details (if applicable).</p>\n<ul>\n<li><strong>link</strong> (string): The URL link to the image (if applicable).</li>\n</ul>\n</li>\n<li><p><strong>video</strong>: An object containing the video details (if applicable).</p>\n<ul>\n<li><strong>link</strong> (string): The URL link to the video (if applicable).</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>platform</strong> (string): The platform being used, e.g., \"whatsapp\".</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response from this endpoint will provide confirmation of the message sent, along with any relevant metadata. The exact structure of the response will depend on the implementation but is expected to include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates whether the message was sent successfully.</p>\n</li>\n<li><p><strong>message_id</strong>: A unique identifier for the sent message.</p>\n</li>\n<li><p><strong>timestamp</strong>: The time at which the message was sent.</p>\n</li>\n</ul>\n<p>Ensure that all required fields are correctly populated to avoid errors in message delivery. This endpoint is crucial for automating communication and ensuring timely delivery of messages to users.</p>\n","urlObject":{"path":["v1","social","message"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[{"id":"d3e7de8f-4632-4f11-9a7b-33d78644ed17","name":"Send Whatsapp template Video","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"payload\": {\n    \"messaging_product\": \"whatsapp\",\n    \"recipient_type\": \"individual\",\n    \"to\": \"919876543210\",\n    \"type\": \"template\",\n    \"template\": {\n      \"name\": \"product_video_promo\",\n      \"language\": {\n        \"code\": \"en\"\n      },\n      \"components\": [\n        {\n          \"type\": \"HEADER\",\n          \"parameters\": [\n            {\n              \"type\": \"video\",\n              \"video\": {\n                \"link\": \"https://example.com/videos/diamond-ring-promo.mp4\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"BODY\",\n          \"parameters\": [\n            {\n              \"type\": \"text\",\n              \"text\": \"Amit\"\n            }\n          ]\n        }\n      ]\n    }\n  },\n  \"platform\": \"whatsapp\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/social/message"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"http_code\": 200,\n  \"success\": true,\n  \"data\": {\n    \"time\": 1735539600000,\n    \"is_sender\": true,\n    \"is_read\": true,\n    \"message\": {\n      \"id\": \"wamid.HBgMOTE5ODc2NTQzMjEwFQIAERgSM0ZGQkQ1QzE0Q0E3NTkzAA==\",\n      \"type\": \"template\",\n      \"template\": {\n        \"name\": \"product_video_promo\",\n        \"language\": {\n          \"code\": \"en\"\n        },\n        \"components\": [\n          {\n            \"type\": \"HEADER\",\n            \"parameters\": [\n              {\n                \"type\": \"video\",\n                \"video\": {\n                  \"link\": \"https://example.com/videos/diamond-ring-promo.mp4\"\n                }\n              }\n            ]\n          },\n          {\n            \"type\": \"BODY\",\n            \"parameters\": [\n              {\n                \"type\": \"text\",\n                \"text\": \"Amit\"\n              }\n            ]\n          }\n        ]\n      }\n    },\n    \"statuses\": {},\n    \"meta_data\": {\n      \"sent_by\": {\n        \"id\": \"user_1045\",\n        \"first_name\": \"Neha\",\n        \"last_name\": \"Mehta\",\n        \"isAdmin\": true\n      },\n      \"template\": {\n        \"name\": \"product_video_promo\",\n        \"previous_category\": \"MARKETING\",\n        \"parameter_format\": \"POSITIONAL\",\n        \"components\": [\n          {\n            \"type\": \"HEADER\",\n            \"format\": \"VIDEO\",\n            \"example\": {\n              \"header_handle\": [\n                \"https://example.com/videos/diamond-ring-promo.mp4\"\n              ]\n            }\n          },\n          {\n            \"type\": \"BODY\",\n            \"text\": \"Hi {{1}}, check out our latest diamond ring collection.\",\n            \"example\": {\n              \"body_text\": [\n                [\n                  \"Customer Name\"\n                ]\n              ]\n            }\n          },\n          {\n            \"type\": \"FOOTER\",\n            \"text\": \"Limited time offer\"\n          },\n          {\n            \"type\": \"BUTTONS\",\n            \"buttons\": [\n              {\n                \"type\": \"URL\",\n                \"text\": \"View Collection\",\n                \"url\": \"https://example.com/collections/diamond-rings\"\n              }\n            ]\n          }\n        ],\n        \"language\": \"en\",\n        \"status\": \"APPROVED\",\n        \"category\": \"MARKETING\",\n        \"id\": \"tmpl_456987321\"\n      },\n      \"message_type\": \"template\",\n      \"template_category\": \"MARKETING\"\n    }\n  }\n}"}],"_postman_id":"ec34fe9d-86dd-45dd-850e-c4aff4ba001a"},{"name":"Send Whatsapp template Document","id":"6e7ea6f9-a862-4c00-b50c-def03da6144b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"payload\": {\n    \"messaging_product\": \"whatsapp\",\n    \"recipient_type\": \"individual\",\n    \"to\": \"<PHONE_NUMBER>\",\n    \"type\": \"template\",\n    \"template\": {\n      \"name\": \"<TEMPLATE_NAME>\",\n      \"language\": {\n        \"code\": \"<LANG_CODE>\"\n      },\n      \"components\": [\n        {\n          \"type\": \"HEADER\",\n          \"parameters\": [\n            {\n              \"type\": \"document\",\n              \"document\": {\n                \"link\": \"<DOCUMENT_URL>\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"BODY\",\n          \"parameters\": [\n            {\n              \"type\": \"text\",\n              \"text\": \"<VARIABLE VALUE>\"\n            }\n          ]\n        }\n      ]\n    }\n  },\n  \"platform\": \"whatsapp\"\n}\n"},"url":"https://api.jwero.com/v1/social/message","description":"<h3 id=\"api-endpoint-send-whatsapp-message\">API Endpoint: Send WhatsApp Message</h3>\n<p>This endpoint allows you to send a templated message via WhatsApp to an individual recipient. It is designed to facilitate communication through the WhatsApp messaging platform using predefined templates. This is particularly useful for businesses or services that want to engage users with consistent messaging formats.</p>\n<h4 id=\"purpose\">Purpose</h4>\n<p>The purpose of this request is to enable businesses to send structured messages to users on WhatsApp, utilizing templates that can include various media types, such as videos and images. This enhances user engagement by providing a consistent and professional communication style.</p>\n<h4 id=\"request-structure\">Request Structure</h4>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>https://api.jwero.com/v1/social/message</code></p>\n</li>\n<li><p><strong>Content-Type:</strong> application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body should be a JSON object containing the following keys:</p>\n<ul>\n<li><p><strong>payload</strong>: An object that includes the message details.</p>\n<ul>\n<li><p><strong>messaging_product</strong> (string): The messaging platform being used, e.g., \"whatsapp\".</p>\n</li>\n<li><p><strong>recipient_type</strong> (string): Indicates the type of recipient, e.g., \"individual\".</p>\n</li>\n<li><p><strong>to</strong> (string): The phone number of the recipient in international format.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of message being sent, e.g., \"template\".</p>\n</li>\n<li><p><strong>template</strong>: An object that defines the template message.</p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the template to be used.</p>\n</li>\n<li><p><strong>language</strong>: An object specifying the language of the message.</p>\n<ul>\n<li><strong>code</strong> (string): The language code, e.g., \"en\" for English.</li>\n</ul>\n</li>\n<li><p><strong>components</strong>: An array of components that make up the template.</p>\n<ul>\n<li><p>Each component is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of component, e.g., \"HEADER\".</p>\n</li>\n<li><p><strong>parameters</strong>: An array of parameters for the component.</p>\n<ul>\n<li><p>Each parameter is an object containing:</p>\n<ul>\n<li><p><strong>type</strong> (string): The type of parameter, e.g., \"image\" or \"video\".</p>\n</li>\n<li><p><strong>image</strong>: An object containing the image details (if applicable).</p>\n<ul>\n<li><strong>link</strong> (string): The URL link to the image (if applicable).</li>\n</ul>\n</li>\n<li><p><strong>video</strong>: An object containing the video details (if applicable).</p>\n<ul>\n<li><strong>link</strong> (string): The URL link to the video (if applicable).</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>platform</strong> (string): The platform being used, e.g., \"whatsapp\".</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response from this endpoint will provide confirmation of the message sent, along with any relevant metadata. The exact structure of the response will depend on the implementation but is expected to include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates whether the message was sent successfully.</p>\n</li>\n<li><p><strong>message_id</strong>: A unique identifier for the sent message.</p>\n</li>\n<li><p><strong>timestamp</strong>: The time at which the message was sent.</p>\n</li>\n</ul>\n<p>Ensure that all required fields are correctly populated to avoid errors in message delivery. This endpoint is crucial for automating communication and ensuring timely delivery of messages to users.</p>\n","urlObject":{"path":["v1","social","message"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[{"id":"b21c129a-c3ee-4461-b048-f323ef4dfb6a","name":"Send Whatsapp template Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"payload\": {\n    \"messaging_product\": \"whatsapp\",\n    \"recipient_type\": \"individual\",\n    \"to\": \"919876543210\",\n    \"type\": \"template\",\n    \"template\": {\n      \"name\": \"product_document_promo\",\n      \"language\": {\n        \"code\": \"en\"\n      },\n      \"components\": [\n        {\n          \"type\": \"HEADER\",\n          \"parameters\": [\n            {\n              \"type\": \"document\",\n              \"document\": {\n                \"link\": \"https://example.com/documents/invoice_url.pdf\"\n              }\n            }\n          ]\n        },\n        {\n          \"type\": \"BODY\",\n          \"parameters\": [\n            {\n              \"type\": \"text\",\n              \"text\": \"Amit\"\n            }\n          ]\n        }\n      ]\n    }\n  },\n  \"platform\": \"whatsapp\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/social/message"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"http_code\": 200,\n  \"success\": true,\n  \"data\": {\n    \"time\": 1735539600000,\n    \"is_sender\": true,\n    \"is_read\": true,\n    \"message\": {\n      \"id\": \"wamid.HBgMOTE5ODc2NTQzMjEwFQIAERgSM0ZGQkQ1QzE0Q0E3NTkzAA==\",\n      \"type\": \"template\",\n      \"template\": {\n        \"name\": \"product_document_promo\",\n        \"language\": {\n          \"code\": \"en\"\n        },\n        \"components\": [\n          {\n            \"type\": \"HEADER\",\n            \"parameters\": [\n              {\n                \"type\": \"document\",\n                \"document\": {\n                  \"link\": \"https://example.com/documents/invoice_url.pdf\"\n                }\n              }\n            ]\n          },\n          {\n            \"type\": \"BODY\",\n            \"parameters\": [\n              {\n                \"type\": \"text\",\n                \"text\": \"Amit\"\n              }\n            ]\n          }\n        ]\n      }\n    },\n    \"statuses\": {},\n    \"meta_data\": {\n      \"sent_by\": {\n        \"id\": \"user_1045\",\n        \"first_name\": \"Neha\",\n        \"last_name\": \"Mehta\",\n        \"isAdmin\": true\n      },\n      \"template\": {\n        \"name\": \"product_video_promo\",\n        \"previous_category\": \"MARKETING\",\n        \"parameter_format\": \"POSITIONAL\",\n        \"components\": [\n          {\n            \"type\": \"HEADER\",\n            \"format\": \"DOCUMENT\",\n            \"example\": {\n              \"header_handle\": [\n                \"https://example.com/documents/invoice_url.pdf\"\n              ]\n            }\n          },\n          {\n            \"type\": \"BODY\",\n            \"text\": \"Hi {{1}}, check out our latest diamond ring collection.\",\n            \"example\": {\n              \"body_text\": [\n                [\n                  \"Customer Name\"\n                ]\n              ]\n            }\n          },\n          {\n            \"type\": \"FOOTER\",\n            \"text\": \"Limited time offer\"\n          },\n          {\n            \"type\": \"BUTTONS\",\n            \"buttons\": [\n              {\n                \"type\": \"URL\",\n                \"text\": \"View Collection\",\n                \"url\": \"https://example.com/collections/diamond-rings\"\n              }\n            ]\n          }\n        ],\n        \"language\": \"en\",\n        \"status\": \"APPROVED\",\n        \"category\": \"MARKETING\",\n        \"id\": \"tmpl_456987321\"\n      },\n      \"message_type\": \"template\",\n      \"template_category\": \"MARKETING\"\n    }\n  }\n}"}],"_postman_id":"6e7ea6f9-a862-4c00-b50c-def03da6144b"}],"id":"64bfde81-5dc3-4f99-90d0-fd63bcd57ea3","_postman_id":"64bfde81-5dc3-4f99-90d0-fd63bcd57ea3","description":""},{"name":"Send social message","id":"3f7b248d-e757-4fc5-b5dd-2075090e71e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"platform\": \"whatsapp\",\n    \"payload\": {\n        \"messaging_product\": \"whatsapp\",\n        \"recipient_type\": \"individual\",\n        \"to\": \"9199999999\",\n        \"type\": \"text\",\n        \"text\": {\n            \"body\": \"Hello world!\"\n        }\n    }\n}"},"url":"https://api.jwero.com/v1/social/message","urlObject":{"path":["v1","social","message"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[{"id":"a90e40f2-9591-4825-a265-1613cfc9ed47","name":"Send social message","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"platform\": \"whatsapp\",\n    \"payload\": {\n        \"messaging_product\": \"whatsapp\",\n        \"recipient_type\": \"individual\",\n        \"to\": \"9199999999\",\n        \"type\": \"text\",\n        \"text\": {\n            \"body\": \"Hello world!\"\n        }\n    }\n}"},"url":"https://api.jwero.com/v1/social/message"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"platform\": \"whatsapp\",\n    \"payload\": {\n        \"messaging_product\": \"whatsapp\",\n        \"recipient_type\": \"individual\",\n        \"to\": \"9199999999\",\n        \"type\": \"text\",\n        \"text\": {\n            \"body\": \"Hello world!\"\n        }\n    }\n}"}],"_postman_id":"3f7b248d-e757-4fc5-b5dd-2075090e71e3"},{"name":"Get Whatsapp templates","id":"ca3f8c91-31cf-4e5d-b1b4-72761e49fb93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.jwero.com/v1/social/templates?channel=whatsapp","urlObject":{"path":["v1","social","templates"],"host":["https://api.jwero.com"],"query":[{"key":"channel","value":"whatsapp"}],"variable":[]}},"response":[{"id":"b8fa7ff2-dba7-4e36-a479-414fc28a4c85","name":"Get Whatsapp templates","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.jwero.com/v1/social/templates?channel=whatsapp","host":["https://api.jwero.com"],"path":["v1","social","templates"],"query":[{"key":"channel","value":"whatsapp"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"name\": \"hello_world\",\n            \"previous_category\": \"ACCOUNT_UPDATE\",\n            \"components\": [\n                {\n                    \"type\": \"HEADER\",\n                    \"format\": \"TEXT\",\n                    \"text\": \"Hello World\"\n                },\n                {\n                    \"type\": \"BODY\",\n                    \"text\": \"Welcome and congratulations!! This message demonstrates your ability to send a WhatsApp message notification from the Cloud API, hosted by Meta. Thank you for taking the time to test with us.\"\n                },\n                {\n                    \"type\": \"FOOTER\",\n                    \"text\": \"WhatsApp Business Platform sample message\"\n                }\n            ],\n            \"language\": \"en_US\",\n            \"status\": \"APPROVED\",\n            \"category\": \"MARKETING\",\n            \"id\": \"1237842883773909\"\n        }\n    ]\n}"}],"_postman_id":"ca3f8c91-31cf-4e5d-b1b4-72761e49fb93"}],"id":"9e0ebff7-3946-48cf-bc07-1607c5a69dc3","_postman_id":"9e0ebff7-3946-48cf-bc07-1607c5a69dc3","description":""},{"name":"Comments","item":[{"name":"Fetch comments","id":"8dcc2188-1ba0-415a-bdd0-cab169171696","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/social/comments?platform=instagram","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 999,\n            \"post_id\": \"999\",\n            \"comment_post_id\": \"99999999999999999\",\n            \"user_id\": 9999,\n            \"parent_id\": null,\n            \"platform\": \"instagram\",\n            \"comment_id\": \"99999999999999999\",\n            \"comment_text\": \"👏👏\",\n            \"timestamp\": \"2024-01-11 12:12:40\",\n            \"is_author\": 0,\n            \"meta_data\": {\n                \"test\": true,\n                \"is_read\": true\n            },\n            \"thumbnail\": {\n                \"main\": \"https://example.com/placeholder\"\n            },\n            \"reply_count\": 0,\n            \"user_details\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"profile_pic\": null,\n                \"username\": null,\n                \"id\": 9999\n            }\n        }\n    ]\n}\n\n\n</code></pre>","urlObject":{"path":["social","comments"],"host":["https://api.jwero.com"],"query":[{"key":"platform","value":"instagram"}],"variable":[]}},"response":[],"_postman_id":"8dcc2188-1ba0-415a-bdd0-cab169171696"},{"name":"Update comment","id":"153d3737-40fe-422b-b65e-86d6538d9bd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"meta_data\": {\n            \"test\": true\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/social/comments/70","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"data\": {\n        \"id\": 999,\n        \"post_id\": \"999\",\n        \"comment_post_id\": \"99999999999999999\",\n        \"user_id\": 9999,\n        \"parent_id\": null,\n        \"platform\": \"instagram\",\n        \"comment_id\": \"99999999999999999\",\n        \"comment_text\": \"👏👏\",\n        \"timestamp\": \"2024-01-11 12:12:40\",\n        \"is_author\": 0,\n        \"meta_data\": {\n            \"test\": true,\n            \"is_read\": true\n        }\n    }\n}\n\n\n</code></pre>","urlObject":{"path":["social","comments","70"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"153d3737-40fe-422b-b65e-86d6538d9bd1"},{"name":"Fetch post","id":"56a96f92-6a51-47f8-ab05-6c4e97c75f17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/social/posts/21","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"data\": {\n        \"id\": 999,\n        \"platform\": \"facebook\",\n        \"post_id\": \"999\",\n        \"user_id\": 9999,\n        \"content\": [\n            {\n                \"id\": \"999_999\",\n                \"media_url\": \"https://example.com/image.jpg\",\n                \"timestamp\": \"2023-10-09T07:58:57+0000\",\n                \"media_type\": \"image\"\n            }\n        ],\n        \"caption\": \"\",\n        \"post_url\": \"https://example.com\",\n        \"timestamp\": \"2023-10-09 07:58:57\",\n        \"permalink\": \"https://example.com\",\n        \"thumbnail\": {\n            \"main\": \"https://example.com/image.jpg\"\n        },\n        \"meta_data\": {\n            \"id\": \"999_999\",\n            \"attachments\": {\n                \"data\": [\n                    {\n                        \"url\": \"https://example.com\",\n                        \"type\": \"photo\",\n                        \"media\": {\n                            \"image\": {\n                                \"src\": \"https://example.com/image.jpg\",\n                                \"width\": 720,\n                                \"height\": 720\n                            }\n                        },\n                        \"target\": {\n                            \"id\": \"999\",\n                            \"url\": \"https://example.com\"\n                        },\n                        \"description\": \"Sample description\"\n                    }\n                ]\n            },\n            \"created_time\": \"2023-10-09T07:58:57+0000\",\n            \"full_picture\": \"https://example.com/image.jpg\"\n        },\n        \"created_at\": \"2023-10-09 07:59:23\",\n        \"updated_at\": \"2023-10-09 07:59:23\",\n        \"user_details\": {\n            \"first_name\": \"Jwero\",\n            \"last_name\": \"\",\n            \"profile_pic\": null,\n            \"username\": null,\n            \"id\": 9999\n        },\n        \"likes_count\": 0\n    }\n}\n\n\n</code></pre>","urlObject":{"path":["social","posts","21"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"56a96f92-6a51-47f8-ab05-6c4e97c75f17"},{"name":"Fetch Post Comments","id":"7bf09093-e83a-40df-9ac3-ccb06d7a5e5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/social/posts/41/comments?page=1&per_page=40","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 999,\n            \"post_id\": \"999\",\n            \"comment_post_id\": \"999999999999\",\n            \"user_id\": 9999,\n            \"parent_id\": null,\n            \"platform\": \"instagram\",\n            \"comment_id\": \"999999999999\",\n            \"comment_text\": \"👏👏\",\n            \"timestamp\": \"2024-01-11 12:12:40\",\n            \"is_author\": 0,\n            \"meta_data\": {\n                \"test\": true,\n                \"is_read\": true\n            },\n            \"reply_count\": 0,\n            \"user_details\": {\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\",\n                \"profile_pic\": null,\n                \"username\": null,\n                \"id\": 9999\n            }\n        }\n    ]\n}\n\n\n</code></pre>","urlObject":{"path":["social","posts","41","comments"],"host":["https://api.jwero.com"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"40"}],"variable":[]}},"response":[],"_postman_id":"7bf09093-e83a-40df-9ac3-ccb06d7a5e5e"},{"name":"Fetch Post Comment Replies","id":"496c33a7-9a20-4543-a00a-6749dd272d01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/social/comments/17964142736566407/replies","description":"<p>200 Response</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   \"success\":true,\n   \"data\":[\n      {\n         \"id\":999,\n         \"post_id\":\"999\",\n         \"comment_post_id\":\"999999999999\",\n         \"user_id\":null,\n         \"parent_id\":\"999999999999\",\n         \"platform\":\"instagram\",\n         \"comment_id\":\"999999999999\",\n         \"comment_text\":\"Thanks\",\n         \"timestamp\":\"2023-12-18 10:43:10\",\n         \"is_author\":1,\n         \"meta_data\":null,\n         \"user_details\":{\n            \"first_name\":null,\n            \"last_name\":null,\n            \"profile_pic\":null,\n            \"username\":null,\n            \"id\":null\n         }\n      }\n   ]\n}\n\n</code></pre>","urlObject":{"path":["social","comments","17964142736566407","replies"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"496c33a7-9a20-4543-a00a-6749dd272d01"}],"id":"2ca9267f-a07c-46f6-95bb-988266f5e6fe","_postman_id":"2ca9267f-a07c-46f6-95bb-988266f5e6fe","description":""},{"name":"Tasks","item":[{"name":"Create Task","id":"e7f01835-63d8-4883-b591-0ea0d4ba046c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"completed_on\": \"2024-04-25T12:09:37.463Z\",\n    \"title\": \"Task #1\",\n    \"activities\": [\n        {\n            \"type\": \"created\",\n            \"subtype\": \"task\",\n            \"read_by\": [\n                74\n            ],\n            \"date_time\": \"2024-04-25T12:09:37.462Z\",\n            \"meta_data\": {},\n            \"performed_by\": {\n                \"id\": 74,\n                \"name\": \"Jwero Care\",\n                \"isAdmin\": true,\n                \"last_name\": \"Jwero\",\n                \"first_name\": \"Care\"\n            }\n        }\n    ],\n    \"contacts\": [\n        {\n            \"id\": 1548,\n            \"name\": \"ak2 test\"\n        }\n    ],\n    \"contributors\": [\n        {\n            \"id\": 74,\n            \"name\": \"Jwero Care\"\n        }\n    ],\n    \"created_by\": {\n        \"id\": 74,\n        \"name\": \"Jwero Care\",\n        \"isAdmin\": true,\n        \"last_name\": \"Care\",\n        \"first_name\": \"Jwero\"\n    },\n    \"description\": {\n        \"text\": \"Need to call for design specifications\",\n        \"attachments\": []\n    },\n    \"notes\": [\n        {\n            \"id\": \"2024-04-25T12:09:33.964Z\",\n            \"created_on\": \"2024-04-25T12:09:33.964Z\",\n            \"title\": \"Need gold jewellery\",\n            \"note_text\": \"They specifically asked for gold jewellery above 10 grams\",\n            \"attachments\": []\n        }\n    ],\n    \"meta_data\": {\n        \"is_reminder\": true\n    },\n    \"due_date\": \"2024-04-26 17:38:06\",\n    \"reminder\": \"2024-04-26 17:23:06\",\n    \"status\": \"pending\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/tasks","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"data\": {\n        \"id\": 999,\n        \"created_at\": \"2024-04-26 07:04:33\",\n        \"updated_at\": \"2024-04-26 07:04:33\",\n        \"title\": \"Task #1\",\n        \"contributors\": [\n            {\n                \"id\": 999,\n                \"name\": \"Jwero Care\"\n            }\n        ],\n        \"due_date\": \"2024-04-26 12:08:06\",\n        \"completed_on\": \"2024-04-25 12:09:37\",\n        \"contacts\": [\n            {\n                \"id\": 999,\n                \"name\": \"ak2 test\"\n            }\n        ],\n        \"reminder\": \"2024-04-26 11:53:06\",\n        \"description\": {\n            \"text\": \"Need to call for design specifications\",\n            \"attachments\": []\n        },\n        \"status\": \"pending\",\n        \"created_by\": {\n            \"id\": 999,\n            \"name\": \"Jwero Care\",\n            \"isAdmin\": true,\n            \"last_name\": \"Care\",\n            \"first_name\": \"Jwero\"\n        },\n        \"activities\": [\n            {\n                \"type\": \"created\",\n                \"read_by\": [\n                    999\n                ],\n                \"subtype\": \"task\",\n                \"date_time\": \"2024-04-25T12:09:37.462Z\",\n                \"meta_data\": {},\n                \"performed_by\": {\n                    \"id\": 999,\n                    \"name\": \"Jwero Care\",\n                    \"isAdmin\": true,\n                    \"last_name\": \"Jwero\",\n                    \"first_name\": \"Care\"\n                }\n            }\n        ],\n        \"notes\": [\n            {\n                \"id\": \"2024-04-25T12:09:33.964Z\",\n                \"title\": \"Need gold jewellery\",\n                \"note_text\": \"They specifically asked for gold jewellery above 10 grams\",\n                \"created_on\": \"2024-04-25T12:09:33.964Z\",\n                \"attachments\": []\n            }\n        ],\n        \"meta_data\": {\n            \"is_reminder\": true\n        }\n    }\n}\n\n</code></pre>","urlObject":{"path":["v1","tasks"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7f01835-63d8-4883-b591-0ea0d4ba046c"},{"name":"Put Task","id":"451b8086-5cc5-4fa6-822a-a1d608580632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 121,\n    \"title\": \"dispatch gold coin!\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/tasks/121","description":"<p>200 Response</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"data\": {\n        \"id\": 121,\n        \"created_at\": \"2024-04-26 07:04:33\",\n        \"updated_at\": \"2024-04-26 07:04:33\",\n        \"title\": \"dispatch gold coin!\"\n        \"contributors\": [\n            {\n                \"id\": 999,\n                \"name\": \"Jwero Care\"\n            }\n        ],\n        \"due_date\": \"2024-04-26 12:08:06\",\n        \"completed_on\": \"2024-04-25 12:09:37\",\n        \"contacts\": [\n            {\n                \"id\": 999,\n                \"name\": \"ak2 test\"\n            }\n        ],\n        \"reminder\": \"2024-04-26 11:53:06\",\n        \"description\": {\n            \"text\": \"Need to call for design specifications\",\n            \"attachments\": []\n        },\n        \"status\": \"pending\",\n        \"created_by\": {\n            \"id\": 999,\n            \"name\": \"Jwero Care\",\n            \"isAdmin\": true,\n            \"last_name\": \"Care\",\n            \"first_name\": \"Jwero\"\n        },\n        \"activities\": [\n            {\n                \"type\": \"created\",\n                \"read_by\": [\n                    999\n                ],\n                \"subtype\": \"task\",\n                \"date_time\": \"2024-04-25T12:09:37.462Z\",\n                \"meta_data\": {},\n                \"performed_by\": {\n                    \"id\": 999,\n                    \"name\": \"Jwero Care\",\n                    \"isAdmin\": true,\n                    \"last_name\": \"Jwero\",\n                    \"first_name\": \"Care\"\n                }\n            }\n        ],\n        \"notes\": [\n            {\n                \"id\": \"2024-04-25T12:09:33.964Z\",\n                \"title\": \"Need gold jewellery\",\n                \"note_text\": \"They specifically asked for gold jewellery above 10 grams\",\n                \"created_on\": \"2024-04-25T12:09:33.964Z\",\n                \"attachments\": []\n            }\n        ],\n        \"meta_data\": {\n            \"is_reminder\": true\n        }\n    }\n}\n\n</code></pre>","urlObject":{"path":["v1","tasks","121"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"451b8086-5cc5-4fa6-822a-a1d608580632"},{"name":"Get Tasks","id":"be77fd04-5e27-491e-b9c8-d9e4cc5d1078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/tasks","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 125,\n      \"created_at\": \"2024-04-26 07:04:33\",\n      \"updated_at\": \"2024-04-26 07:04:33\",\n      \"title\": \"Task #1\",\n      \"contributors\": [\n        {\n          \"id\": 74,\n          \"name\": \"Jwero Care\"\n        }\n      ],\n      \"due_date\": \"2024-04-26 12:08:06\",\n      \"completed_on\": \"2024-04-25 12:09:37\",\n      \"contacts\": [\n        {\n          \"id\": 1548,\n          \"name\": \"ak2 test\"\n        }\n      ],\n      \"reminder\": \"2024-04-26 11:53:06\",\n      \"description\": {\n        \"text\": \"Need to call for design specifications\",\n        \"attachments\": []\n      },\n      \"status\": \"pending\",\n      \"created_by\": {\n        \"id\": 74,\n        \"name\": \"Jwero Care\",\n        \"isAdmin\": true,\n        \"last_name\": \"Care\",\n        \"first_name\": \"Jwero\"\n      },\n      \"activities\": [\n        {\n          \"type\": \"created\",\n          \"read_by\": [74],\n          \"subtype\": \"task\",\n          \"date_time\": \"2024-04-25T12:09:37.462Z\",\n          \"meta_data\": {},\n          \"performed_by\": {\n            \"id\": 74,\n            \"name\": \"Jwero Care\",\n            \"isAdmin\": true,\n            \"last_name\": \"Jwero\",\n            \"first_name\": \"Care\"\n          }\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": \"2024-04-25T12:09:33.964Z\",\n          \"title\": \"Need gold jewellery\",\n          \"note_text\": \"They specifically asked for gold jewellery above 10 grams\",\n          \"created_on\": \"2024-04-25T12:09:33.964Z\",\n          \"attachments\": []\n        }\n      ],\n      \"meta_data\": {\n        \"is_reminder\": true\n      }\n    }\n  ]\n}\n\n</code></pre>","urlObject":{"path":["v1","tasks"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"be77fd04-5e27-491e-b9c8-d9e4cc5d1078"},{"name":"Delete Task","id":"c6c9a3ee-bf67-4d2a-bb5d-62180631dc14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"DELETE","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/tasks/121","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 125,\n      \"created_at\": \"2024-04-26 07:04:33\",\n      \"updated_at\": \"2024-04-26 07:04:33\",\n      \"title\": \"Task #1\",\n      \"contributors\": [\n        {\n          \"id\": 74,\n          \"name\": \"Jwero Care\"\n        }\n      ],\n      \"due_date\": \"2024-04-26 12:08:06\",\n      \"completed_on\": \"2024-04-25 12:09:37\",\n      \"contacts\": [\n        {\n          \"id\": 1548,\n          \"name\": \"ak2 test\"\n        }\n      ],\n      \"reminder\": \"2024-04-26 11:53:06\",\n      \"description\": {\n        \"text\": \"Need to call for design specifications\",\n        \"attachments\": []\n      },\n      \"status\": \"pending\",\n      \"created_by\": {\n        \"id\": 74,\n        \"name\": \"Jwero Care\",\n        \"isAdmin\": true,\n        \"last_name\": \"Care\",\n        \"first_name\": \"Jwero\"\n      },\n      \"activities\": [\n        {\n          \"type\": \"created\",\n          \"read_by\": [74],\n          \"subtype\": \"task\",\n          \"date_time\": \"2024-04-25T12:09:37.462Z\",\n          \"meta_data\": {},\n          \"performed_by\": {\n            \"id\": 74,\n            \"name\": \"Jwero Care\",\n            \"isAdmin\": true,\n            \"last_name\": \"Jwero\",\n            \"first_name\": \"Care\"\n          }\n        }\n      ],\n      \"notes\": [\n        {\n          \"id\": \"2024-04-25T12:09:33.964Z\",\n          \"title\": \"Need gold jewellery\",\n          \"note_text\": \"They specifically asked for gold jewellery above 10 grams\",\n          \"created_on\": \"2024-04-25T12:09:33.964Z\",\n          \"attachments\": []\n        }\n      ],\n      \"meta_data\": {\n        \"is_reminder\": true\n      }\n    }\n  ]\n}\n\n</code></pre>","urlObject":{"path":["v1","tasks","121"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6c9a3ee-bf67-4d2a-bb5d-62180631dc14"}],"id":"d91451f2-7e17-422e-a04d-f9272e98f39b","_postman_id":"d91451f2-7e17-422e-a04d-f9272e98f39b","description":""},{"name":"Media","item":[{"name":"Upload file","id":"cf632d35-2b04-41ca-a074-daad77c871f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/Users/tanikatech/Downloads/download.jpeg"}]},"url":"https://api.jwero.com/v1/media","description":"<p>200 Response</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": {\n        \"file_name\": \"download.jpeg\",\n        \"file_path\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/M7nwenu7QYT/upload/download123.jpeg\",\n        \"file_type\": \"jpeg\",\n        \"id\": \"95364639\",\n        \"source_url\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/M7nwenu7QYT/upload/download123.jpeg\"\n    },\n    \"success\": true\n}\n\n</code></pre>","urlObject":{"path":["v1","media"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf632d35-2b04-41ca-a074-daad77c871f7"},{"name":"Get files","id":"956d58da-6bf7-4821-8688-120d49af33fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/tanikatech/Downloads/unnamed.jpg"],"src":"/Users/tanikatech/Downloads/unnamed.jpg"}]},"url":"https://api.jwero.com/v1/media","description":"<p>200 Respone  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": [\n        {\n            \"file_name\": \"Jwero_Logo.png\",\n            \"file_path\": \"M7nwenu7QYT/brand/Jwero_Logo.png\",\n            \"file_type\": \"png\",\n            \"id\": \"67894404\",\n            \"last_modified\": \"2023-08-31T07:54:52.000Z\",\n            \"size\": 183949,\n            \"source_url\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/M7nwenu7QYT/brand/Jwero_Logo-e1672833715233.png\"\n        }\n    ]\n}\n\n</code></pre>","urlObject":{"path":["v1","media"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"956d58da-6bf7-4821-8688-120d49af33fa"},{"name":"Create new folder","id":"8933f7ff-8755-45e7-a116-f3443ef7875f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"folder_name\": \"Test folder name\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/media/create-folder","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"message\": \"Folder created successfully\"\n}\n\n</code></pre>","urlObject":{"path":["v1","media","create-folder"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8933f7ff-8755-45e7-a116-f3443ef7875f"},{"name":"Get folder names","id":"ea6619b5-707f-4761-b0c6-97edeb6632dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"add_your_token"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/tanikatech/Downloads/unnamed.jpg"],"src":"/Users/tanikatech/Downloads/unnamed.jpg"}]},"url":"https://api.jwero.com/v1/media/get-folders","description":"<p>200 Response  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": [\n        {\n            \"name\": \"upload\",\n            \"size\": 129525870,\n            \"total\": 69,\n            \"size_formatted\": \"123.53 MB\",\n            \"firstImage\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/M7n1wenu7QYT/upload/1692904557.jpg\"\n        },\n    ]\n}\n\n</code></pre>","urlObject":{"path":["v1","media","get-folders"],"host":["https://api.jwero.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea6619b5-707f-4761-b0c6-97edeb6632dd"}],"id":"4a056687-8a87-4189-88b4-c6e72c256bd6","_postman_id":"4a056687-8a87-4189-88b4-c6e72c256bd6","description":""},{"name":"CRM","item":[{"name":"Add CRM","id":"f5a5fd5e-69ed-4d0f-91f7-090c9d220fd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"add_your_apikey","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"whatsapp\": \"2234567890\",\n    \"dialcode_whatsapp\": \"91\",\n    \"email\": \"john.dooe@example.com\",\n    \"mobile\": \"29876543210\",\n    \"dialcode_mobile\": \"91\",\n    \"contact_type\": \"lead\",\n    \"gender\": \"male\",\n    \"company_name\": \"ABC Corp\",\n    \"birthday\": \"2003-01-23\",\n    \"profession\": \"Accountant\",\n    \"anniversary\": \"2025-09-16\",\n    \"annual_income\": \"0 - 2.5 Lakh\",\n    \"language\": \"telugu\",\n    \"religion\": \"hinduism\",\n    \"addresses\": [\n        {\n            \"address_line1\": \"Flat 402, Shree Heights\",\n            \"city\": \"Thane\",\n            \"state\": \"Maharashtra\",\n            \"post_code\": \"400602\",\n            \"country\": \"India\",\n            \"address_type\": \"billing\"\n        },\n        {\n            \"address_line1\": \"Flat 402, Shree Heights\",\n            \"city\": \"Thane\",\n            \"state\": \"Maharashtra\",\n            \"post_code\": \"400602\",\n            \"country\": \"India\",\n            \"address_type\": \"shipping\"\n        }\n    ],\n    \"tags\": [\n        1,\n        3\n    ],\n    \"assigned_to\": [\n        {\n            \"id\": 60\n        },\n        {\n            \"id\": 725\n        }\n    ],\n    \"profile_url\": \"https://example.com/profiles/aarav-mehta\",\n    \"meta_data\": {\n        \"loyalty_points\": 23\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/crm","description":"<p><strong>API Key Authentication:</strong></p>\n<ul>\n<li><p>The API key should be included in the request headers.</p>\n</li>\n<li><p><strong>Header Name:</strong> <code>apikey</code></p>\n</li>\n<li><p><strong>Header Value:</strong> Your personal API key.</p>\n</li>\n</ul>\n<p><strong>Request Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>first_name</td>\n<td>Yes</td>\n<td>First name of the contact.</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>No</td>\n<td>Last name of the contact.</td>\n</tr>\n<tr>\n<td>company_name</td>\n<td>No</td>\n<td>Company or business name of the contact.</td>\n</tr>\n<tr>\n<td>whatsapp</td>\n<td>Conditional</td>\n<td>WhatsApp number of the contact. Required if <code>email</code> and <code>mobile_number</code> are not provided.</td>\n</tr>\n<tr>\n<td>dialcode_whatsapp</td>\n<td>Conditional</td>\n<td>Dial code for WhatsApp number (e.g., <code>91</code>). Required when <code>whatsapp</code> is provided.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Conditional</td>\n<td>Email address of the contact. Required if <code>whatsapp</code> and <code>mobile_number</code> are not provided.</td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>Conditional</td>\n<td>Mobile number of the contact. Required if <code>whatsapp</code> and <code>email</code> are not provided.</td>\n</tr>\n<tr>\n<td>dialcode_mobile</td>\n<td>Conditional</td>\n<td>Dial code for mobile number (e.g., <code>91</code>). Required when <code>mobile_number</code> is provided.</td>\n</tr>\n<tr>\n<td>contact_type</td>\n<td>Yes</td>\n<td>Type of contact. Allowed values: <code>lead</code>, <code>customer</code>.</td>\n</tr>\n<tr>\n<td>birthday</td>\n<td>No</td>\n<td>Date of birth in <code>YYYY-MM-DD</code> format.</td>\n</tr>\n<tr>\n<td>anniversary</td>\n<td>No</td>\n<td>Anniversary date in <code>YYYY-MM-DD</code> format.</td>\n</tr>\n<tr>\n<td>marital_status</td>\n<td>No</td>\n<td>Marital status of the contact (e.g., <code>single</code>, <code>married</code>).</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>No</td>\n<td>Gender of the contact. Allowed values listed below.</td>\n</tr>\n<tr>\n<td>religion</td>\n<td>No</td>\n<td>Religion of the contact. Allowed values listed below.</td>\n</tr>\n<tr>\n<td>profession</td>\n<td>No</td>\n<td>Profession or occupation of the contact.</td>\n</tr>\n<tr>\n<td>ethnicity</td>\n<td>No</td>\n<td>Ethnic group of the contact. Allowed values listed below.</td>\n</tr>\n<tr>\n<td>language</td>\n<td>No</td>\n<td>Preferred language of the contact. Allowed values listed below.</td>\n</tr>\n<tr>\n<td>annual_income</td>\n<td>No</td>\n<td>Annual income range of the contact</td>\n</tr>\n<tr>\n<td>branch_id</td>\n<td>No</td>\n<td>Branch ID associated with the contact.</td>\n</tr>\n<tr>\n<td>profile_url</td>\n<td>No</td>\n<td>Public profile URL of the contact.</td>\n</tr>\n<tr>\n<td>meta_data</td>\n<td>No</td>\n<td>Custom key-value metadata related to the contact.</td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>No</td>\n<td>List of address objects associated with the contact.</td>\n</tr>\n<tr>\n<td>assigned_to</td>\n<td>No</td>\n<td>List of team members assigned to the contact.</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>No</td>\n<td>List of tag IDs associated with the contact.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"predefined--allowed-values\">Predefined / Allowed Values</h2>\n<p>The following fields accept <strong>only predefined values</strong>.</p>\n<p>Any value outside these lists will result in a <strong>validation error</strong>.</p>\n<hr />\n<h3 id=\"contact_type\"><code>contact_type</code></h3>\n<p>Used to define the nature of the contact.</p>\n<p>Allowed values:</p>\n<ul>\n<li><p><code>lead</code></p>\n</li>\n<li><p><code>customer</code></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"gender\"><code>gender</code></h3>\n<p>Allowed values:</p>\n<ul>\n<li><p><code>male</code></p>\n</li>\n<li><p><code>female</code></p>\n</li>\n<li><p><code>other</code></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"religion\"><code>religion</code></h3>\n<p>Allowed values:</p>\n<ul>\n<li><p><code>christianity</code></p>\n</li>\n<li><p><code>islam</code></p>\n</li>\n<li><p><code>hinduism</code></p>\n</li>\n<li><p><code>buddhism</code></p>\n</li>\n<li><p><code>sikhism</code></p>\n</li>\n<li><p><code>judaism</code></p>\n</li>\n<li><p><code>folk_religions</code></p>\n</li>\n<li><p><code>jainism</code></p>\n</li>\n<li><p><code>zoroastrianism</code></p>\n</li>\n<li><p><code>bahai_faith</code></p>\n</li>\n<li><p><code>other_religions</code></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"language\"><code>language</code></h3>\n<p>Allowed values:</p>\n<p><strong>Global languages</strong></p>\n<ul>\n<li><p><code>english</code></p>\n</li>\n<li><p><code>spanish</code></p>\n</li>\n<li><p><code>french</code></p>\n</li>\n<li><p><code>german</code></p>\n</li>\n<li><p><code>chinese</code></p>\n</li>\n<li><p><code>japanese</code></p>\n</li>\n<li><p><code>russian</code></p>\n</li>\n<li><p><code>arabic</code></p>\n</li>\n<li><p><code>portuguese</code></p>\n</li>\n<li><p><code>italian</code></p>\n</li>\n<li><p><code>korean</code></p>\n</li>\n<li><p><code>turkish</code></p>\n</li>\n<li><p><code>dutch</code></p>\n</li>\n<li><p><code>polish</code></p>\n</li>\n<li><p><code>thai</code></p>\n</li>\n<li><p><code>vietnamese</code></p>\n</li>\n<li><p><code>indonesian</code></p>\n</li>\n<li><p><code>greek</code></p>\n</li>\n<li><p><code>czech</code></p>\n</li>\n<li><p><code>swedish</code></p>\n</li>\n<li><p><code>danish</code></p>\n</li>\n<li><p><code>finnish</code></p>\n</li>\n<li><p><code>norwegian</code></p>\n</li>\n<li><p><code>hungarian</code></p>\n</li>\n<li><p><code>romanian</code></p>\n</li>\n<li><p><code>slovak</code></p>\n</li>\n<li><p><code>croatian</code></p>\n</li>\n<li><p><code>hebrew</code></p>\n</li>\n<li><p><code>malay</code></p>\n</li>\n<li><p><code>ukrainian</code></p>\n</li>\n<li><p><code>tagalog</code></p>\n</li>\n<li><p><code>serbian</code></p>\n</li>\n<li><p><code>bulgarian</code></p>\n</li>\n<li><p><code>slovenian</code></p>\n</li>\n<li><p><code>lithuanian</code></p>\n</li>\n<li><p><code>latvian</code></p>\n</li>\n<li><p><code>estonian</code></p>\n</li>\n<li><p><code>maltese</code></p>\n</li>\n<li><p><code>icelandic</code></p>\n</li>\n</ul>\n<p><strong>Indian languages</strong></p>\n<ul>\n<li><p><code>hindi</code></p>\n</li>\n<li><p><code>marathi</code></p>\n</li>\n<li><p><code>telugu</code></p>\n</li>\n<li><p><code>tamil</code></p>\n</li>\n<li><p><code>bengali</code></p>\n</li>\n<li><p><code>urdu</code></p>\n</li>\n<li><p><code>gujarati</code></p>\n</li>\n<li><p><code>kannada</code></p>\n</li>\n<li><p><code>odia</code></p>\n</li>\n<li><p><code>malayalam</code></p>\n</li>\n<li><p><code>punjabi</code></p>\n</li>\n<li><p><code>assamese</code></p>\n</li>\n<li><p><code>maithili</code></p>\n</li>\n<li><p><code>santali</code></p>\n</li>\n<li><p><code>kashmiri</code></p>\n</li>\n<li><p><code>garo</code></p>\n</li>\n<li><p><code>bhili</code></p>\n</li>\n<li><p><code>mizo</code></p>\n</li>\n<li><p><code>khasi</code></p>\n</li>\n<li><p><code>tulu</code></p>\n</li>\n<li><p><code>sanskrit</code></p>\n</li>\n<li><p><code>bodo</code></p>\n</li>\n<li><p><code>manipuri</code></p>\n</li>\n<li><p><code>dogri</code></p>\n</li>\n<li><p><code>sindhi</code></p>\n</li>\n<li><p><code>konkani</code></p>\n</li>\n<li><p><code>nepali</code></p>\n</li>\n<li><p><code>awadhi</code></p>\n</li>\n<li><p><code>braj</code></p>\n</li>\n<li><p><code>marwari</code></p>\n</li>\n<li><p><code>magahi</code></p>\n</li>\n<li><p><code>chhattisgarhi</code></p>\n</li>\n<li><p><code>haryanvi</code></p>\n</li>\n</ul>\n<p><strong>Other</strong></p>\n<ul>\n<li><code>other</code></li>\n</ul>\n<hr />\n<h3 id=\"ethnicity\"><code>ethnicity</code></h3>\n<p>Allowed values (case-sensitive):</p>\n<ul>\n<li><p><em>(empty string allowed)</em></p>\n</li>\n<li><p><code>Zomi</code></p>\n</li>\n<li><p><code>Garhwalis</code></p>\n</li>\n<li><p><code>Tripuri</code></p>\n</li>\n<li><p><code>Lhona</code></p>\n</li>\n<li><p><code>Tharus</code></p>\n</li>\n<li><p><code>Tamils</code></p>\n</li>\n<li><p><code>Sindhis</code></p>\n</li>\n<li><p><code>Arabs</code></p>\n</li>\n<li><p><code>Rajasthanis</code></p>\n</li>\n<li><p><code>Punjabis</code></p>\n</li>\n<li><p><code>Gujjar</code></p>\n</li>\n<li><p><code>Gurjar</code></p>\n</li>\n<li><p><code>Siddi</code></p>\n</li>\n<li><p><code>Odia</code></p>\n</li>\n<li><p><code>Gurung</code></p>\n</li>\n<li><p><code>Tamangs</code></p>\n</li>\n<li><p><code>Khas</code></p>\n</li>\n<li><p><code>Magars</code></p>\n</li>\n<li><p><code>Maithils</code></p>\n</li>\n<li><p><code>BishnupriyaManipuris</code></p>\n</li>\n<li><p><code>Meitei</code></p>\n</li>\n<li><p><code>Marathi</code></p>\n</li>\n<li><p><code>Magahi</code></p>\n</li>\n<li><p><code>Konkani</code></p>\n</li>\n<li><p><code>Malyali</code></p>\n</li>\n<li><p><code>Newars</code></p>\n</li>\n<li><p><code>Kashmiris</code></p>\n</li>\n<li><p><code>Tuluvas</code></p>\n</li>\n<li><p><code>Kannadigas</code></p>\n</li>\n<li><p><code>Karbi</code></p>\n</li>\n<li><p><code>Khonds</code></p>\n</li>\n<li><p><code>Dogra</code></p>\n</li>\n<li><p><code>Parsis</code></p>\n</li>\n<li><p><code>Bhojpuris</code></p>\n</li>\n<li><p><code>Bhumij</code></p>\n</li>\n<li><p><code>Santal</code></p>\n</li>\n<li><p><code>Naga</code></p>\n</li>\n<li><p><code>Bhils</code></p>\n</li>\n<li><p><code>Mundas</code></p>\n</li>\n<li><p><code>Rajbhongsi</code></p>\n</li>\n<li><p><code>Tiwa</code></p>\n</li>\n<li><p><code>Telugu</code></p>\n</li>\n<li><p><code>Gujarati</code></p>\n</li>\n<li><p><code>Dubia</code></p>\n</li>\n<li><p><code>Gonds</code></p>\n</li>\n<li><p><code>Garos</code></p>\n</li>\n<li><p><code>Deccani</code></p>\n</li>\n<li><p><code>Nagpuri</code></p>\n</li>\n<li><p><code>Kurukh</code></p>\n</li>\n<li><p><code>Bengalis</code></p>\n</li>\n<li><p><code>Awadhis</code></p>\n</li>\n<li><p><code>Chutiya</code></p>\n</li>\n<li><p><code>Ahom</code></p>\n</li>\n<li><p><code>Nyishi</code></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","crm"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"b1073790-cb78-4d53-9c7a-ff11bdc29ddd","name":"Add CRM Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"whatsapp\": \"2234567890\",\n    \"dialcode_whatsapp\": \"91\",\n    \"email\": \"john.dooe@example.com\",\n    \"mobile\": \"29876543210\",\n    \"dialcode_mobile\": \"91\",\n    \"contact_type\": \"lead\",\n    \"gender\": \"male\",\n    \"company_name\": \"ABC Corp\",\n    \"birthday\": \"2003-01-23\",\n    \"profession\": \"Accountant\",\n    \"anniversary\": \"2025-09-16\",\n    \"annual_income\": \"0 - 2.5 Lakh\",\n    \"language\": \"telugu\",\n    \"religion\": \"hinduism\",\n    \"ethnicity\": \"Telugu\",\n    \"addresses\": [\n        {\n            \"address_line1\": \"Flat 402, Shree Heights\",\n            \"city\": \"Thane\",\n            \"state\": \"Maharashtra\",\n            \"post_code\": \"400602\",\n            \"country\": \"India\",\n            \"address_type\": \"billing\"\n        },\n        {\n            \"address_line1\": \"Flat 402, Shree Heights\",\n            \"city\": \"Thane\",\n            \"state\": \"Maharashtra\",\n            \"post_code\": \"400602\",\n            \"country\": \"India\",\n            \"address_type\": \"shipping\"\n        }\n    ],\n    \"tags\": [\n        1,\n        3\n    ],\n    \"assigned_to\": [\n        {\n            \"id\": 60\n        },\n        {\n            \"id\": 725\n        }\n    ],\n    \"profile_url\": \"https://example.com/profiles/aarav-mehta\",\n    \"meta_data\": {\n        \"loyalty_points\": 23\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/crm"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n   \"success\":true,\n   \"data\":{\n        \"id\": 200,\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"whatsapp\": \"2234567890\",\n        \"dialcode_whatsapp\": \"91\",\n        \"email\": \"john.dooe@example.com\",\n        \"mobile\": \"29876543210\",\n        \"dialcode_mobile\": \"91\",\n        \"contact_type\": \"lead\",\n        \"gender\": \"male\",\n        \"company_name\": \"ABC Corp\",\n        \"birthday\": \"2003-01-23\",\n        \"profession\": \"Accountant\",\n        \"anniversary\": \"2025-09-16\",\n        \"annual_income\": \"0 - 2.5 Lakh\",\n        \"language\": \"telugu\",\n        \"religion\": \"hinduism\",\n        \"ethnicity\": \"Telugu\",\n        \"addresses\": [\n            {\n                \"id\": 1,\n                \"contact_id\": 200,\n                \"address_line1\": \"Flat 402, Shree Heights\",\n                \"city\": \"Thane\",\n                \"state\": \"Maharashtra\",\n                \"post_code\": \"400602\",\n                \"country\": \"India\",\n                \"address_type\": \"billing\"\n            },\n            {\n                \"id\": 2,\n                \"contact_id\": 200,\n                \"address_line1\": \"Flat 402, Shree Heights\",\n                \"city\": \"Thane\",\n                \"state\": \"Maharashtra\",\n                \"post_code\": \"400602\",\n                \"country\": \"India\",\n                \"address_type\": \"shipping\"\n            }\n        ],\n        \"tags\": [\n            {\n                \"tag_id\": 1,\n                \"title\": \"Dummy Data\",\n                \"color\": \"#291234\"\n            },\n            {\n                \"tag_id\": 3,\n                \"title\": \"Contact Us form\",\n                \"color\": \"#326930\"\n            }\n        ],\n        \"assigned_to\": [\n            {\n                \"id\": 60,\n                \"first_name\": \"TiaraBy\",\n                \"last_name\": \"TJ\",\n                \"profile_pic\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/oAeqLavq0AQi/upload/HelpCenter.png\"\n            },\n            {\n                \"id\": 725,\n                \"first_name\": \"Manik\",\n                \"last_name\": \"Patil\",\n                \"profile_pic\": null\n            }\n        ],\n        \"profile_url\": \"https://example.com/profiles/aarav-mehta\",\n        \"meta_data\": {\n            \"loyalty_points\": 23\n        }\n    }\n}"}],"_postman_id":"f5a5fd5e-69ed-4d0f-91f7-090c9d220fd7"},{"name":"Get CRM customer","id":"4a19ee77-f684-461a-b2f7-9183342d9ed1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/v1/crm/315513","urlObject":{"protocol":"https","path":["v1","crm","315513"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"217a3a6f-ac8f-43ae-904d-503326ad88d6","name":"Get CRM Example","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/v1/crm/315513"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 315513,\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"whatsapp\": \"\",\n        \"dialcode_whatsapp\": \"\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile\": \"9876543210\",\n        \"dialcode_mobile\": \"91\",\n        \"contact_type\": \"lead\",\n        \"company_name\": \"Ijax\",\n        \"company_position\": null,\n        \"gender\": \"female\",\n        \"birthday\": \"2026-01-22\",\n        \"anniversary\": \"2026-01-05\",\n        \"profession\": \"electrician\",\n        \"annual_income\": \"25 - 30 Lakh\",\n        \"ethnicity\": \"Marathi\",\n        \"language\": \"haryanvi\",\n        \"religion\": \"hinduism\",\n        \"meta_data\": {\n            \"loyalty_points\": \"23\"\n        },\n        \"addresses\": [\n            {\n                \"id\": 521865,\n                \"contact_id\": 315513,\n                \"address_line1\": \"street 1\",\n                \"address_line2\": null,\n                \"city\": \"Mumbai\",\n                \"post_code\": \"421306\",\n                \"country\": \"India\",\n                \"state\": \"Maharashtra\",\n                \"state_code\": null,\n                \"country_code\": null,\n                \"address_type\": \"billing\",\n                \"district\": null\n            }\n        ],\n        \"tags\": [\n            {\n                \"tag_id\": 1,\n                \"title\": \"Dummy Data\",\n                \"color\": \"#291234\"\n            },\n            {\n                \"tag_id\": 3,\n                \"title\": \"Contact Us form\",\n                \"color\": \"#326930\"\n            }\n        ],\n        \"assigned_to\": [\n            {\n                \"id\": 60,\n                \"first_name\": \"TiaraBy\",\n                \"last_name\": \"TJ\",\n                \"profile_pic\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/oAeqLavq0AQi/upload/HelpCenter.png\"\n            },\n            {\n                \"id\": 725,\n                \"first_name\": \"Manik\",\n                \"last_name\": \"Patil\",\n                \"profile_pic\": null\n            }\n        ],\n        \"created_on\": \"2026-01-23T06:38:21.000Z\",\n        \"updated_at\": \"2026-01-23T06:38:21.000Z\"\n    }\n}"}],"_postman_id":"4a19ee77-f684-461a-b2f7-9183342d9ed1"},{"name":"Get CRM customers","id":"b0fa375c-b122-483b-834b-72787b24f9fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/v1/crm?search=john&page=1&per_page=10","urlObject":{"protocol":"https","path":["v1","crm"],"host":["api","jwero","com"],"query":[{"key":"search","value":"john"},{"key":"page","value":"1"},{"key":"per_page","value":"10"}],"variable":[]}},"response":[{"id":"57e9c4c8-71ed-4058-b0b1-d987023d8e85","name":"Get CRM cusotmers Example","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/v1/crm"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"total\": \"2\",\n    \"data\": [\n        {\n            \"id\": 315513,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"whatsapp\": \"\",\n            \"dialcode_whatsapp\": \"\",\n            \"email\": \"john.doe@example.com\",\n            \"mobile\": \"9876543210\",\n            \"dialcode_mobile\": \"91\",\n            \"contact_type\": \"lead\",\n            \"company_name\": \"Ijax\",\n            \"company_position\": null,\n            \"gender\": \"female\",\n            \"birthday\": \"2026-01-22\",\n            \"anniversary\": \"2026-01-05\",\n            \"profession\": \"electrician\",\n            \"annual_income\": \"25 - 30 Lakh\",\n            \"ethnicity\": \"Marathi\",\n            \"language\": \"haryanvi\",\n            \"religion\": \"hinduism\",\n            \"meta_data\": {\n                \"loyalty_points\": \"23\"\n            },\n            \"addresses\": [\n                {\n                    \"id\": 521865,\n                    \"contact_id\": 315513,\n                    \"address_line1\": \"street 1\",\n                    \"address_line2\": null,\n                    \"city\": \"Mumbai\",\n                    \"post_code\": \"421306\",\n                    \"country\": \"India\",\n                    \"state\": \"Maharashtra\",\n                    \"state_code\": null,\n                    \"country_code\": null,\n                    \"address_type\": \"billing\",\n                    \"district\": null\n                }\n            ],\n            \"tags\": [\n                {\n                    \"tag_id\": 1,\n                    \"title\": \"Dummy Data\",\n                    \"color\": \"#291234\"\n                },\n                {\n                    \"tag_id\": 3,\n                    \"title\": \"Contact Us form\",\n                    \"color\": \"#326930\"\n                }\n            ],\n            \"assigned_to\": [\n                {\n                    \"id\": 60,\n                    \"first_name\": \"TiaraBy\",\n                    \"last_name\": \"TJ\",\n                    \"profile_pic\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/oAeqLavq0AQi/upload/HelpCenter.png\"\n                },\n                {\n                    \"id\": 725,\n                    \"first_name\": \"Manik\",\n                    \"last_name\": \"Patil\",\n                    \"profile_pic\": null\n                }\n            ],\n            \"created_on\": \"2026-01-23T06:38:21.000Z\",\n            \"updated_at\": \"2026-01-23T06:38:21.000Z\"\n        },\n        {\n            \"id\": 315512,\n            \"first_name\": \"Smith\",\n            \"last_name\": \"Doe\",\n            \"whatsapp\": \"\",\n            \"dialcode_whatsapp\": \"\",\n            \"email\": \"smith.doe@example.com\",\n            \"mobile\": \"9276543210\",\n            \"dialcode_mobile\": \"91\",\n            \"contact_type\": \"lead\",\n            \"company_name\": \"Ijax\",\n            \"company_position\": null,\n            \"gender\": \"female\",\n            \"birthday\": \"2026-01-22\",\n            \"anniversary\": \"2026-01-05\",\n            \"profession\": \"electrician\",\n            \"annual_income\": \"25 - 30 Lakh\",\n            \"ethnicity\": \"Marathi\",\n            \"language\": \"haryanvi\",\n            \"religion\": \"hinduism\",\n            \"meta_data\": {\n                \"loyalty_points\": \"23\"\n            },\n            \"addresses\": [\n                {\n                    \"id\": 521865,\n                    \"contact_id\": 315512,\n                    \"address_line1\": \"street 1\",\n                    \"address_line2\": null,\n                    \"city\": \"Mumbai\",\n                    \"post_code\": \"421306\",\n                    \"country\": \"India\",\n                    \"state\": \"Maharashtra\",\n                    \"state_code\": null,\n                    \"country_code\": null,\n                    \"address_type\": \"billing\",\n                    \"district\": null\n                }\n            ],\n            \"tags\": [],\n            \"assigned_to\": [],\n            \"created_on\": \"2026-01-23T06:38:21.000Z\",\n            \"updated_at\": \"2026-01-23T06:38:21.000Z\"\n        }\n    ]\n}"}],"_postman_id":"b0fa375c-b122-483b-834b-72787b24f9fc"},{"name":"Update CRM customer","id":"2f69aeb5-6407-43e1-9a2a-5b6685db51f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"whatsapp\": \"1234567890\",\n    \"dialcode_whatsapp\": \"1234567890\",\n    \"email\": \"john.doe@example.com\",\n    \"mobile\": \"19876543210\",\n    \"dialcode_mobile\": \"91\",\n    \"contact_type\": \"lead\",\n    \"meta_data\": {\n        \"loyalty_points\": 23 //custom field\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/crm/315513","urlObject":{"protocol":"https","path":["v1","crm","315513"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"d92faed8-1ca5-4baa-b67f-50e46e8ec9a6","name":"update CRM Example","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"whatsapp\": \"1234567890\",\n    \"dialcode_whatsapp\": \"1234567890\",\n    \"email\": \"john.doe@example.com\",\n    \"mobile\": \"19876543210\",\n    \"dialcode_mobile\": \"91\",\n    \"contact_type\": \"lead\",\n    \"tags\": [\n        1,\n        3\n    ],\n    \"assigned_to\": [\n        {\n            \"id\": 60\n        },\n        {\n            \"id\": 725\n        }\n    ],\n    \"meta_data\": {\n        \"loyalty_points\": 2323424\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/crm/315513"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 315513,\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"whatsapp\": \"1234567890\",\n        \"dialcode_whatsapp\": \"12\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile\": \"19876543210\",\n        \"dialcode_mobile\": \"19\",\n        \"contact_type\": \"lead\",\n        \"tags\": [\n            {\n                \"tag_id\": 1,\n                \"title\": \"Dummy Data\",\n                \"color\": \"#291234\"\n            },\n            {\n                \"tag_id\": 3,\n                \"title\": \"Contact Us form\",\n                \"color\": \"#326930\"\n            }\n        ],\n        \"assigned_to\": [\n            {\n                \"id\": 60,\n                \"first_name\": \"TiaraBy\",\n                \"last_name\": \"TJ\",\n                \"profile_pic\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/oAeqLavq0AQi/upload/HelpCenter.png\"\n            },\n            {\n                \"id\": 725,\n                \"first_name\": \"Mansi\",\n                \"last_name\": \"Deshmuk\",\n                \"profile_pic\": null\n            }\n        ],\n        \"meta_data\": {\n            \"loyalty_points\": \"2323424\"\n        }\n    }\n}"}],"_postman_id":"2f69aeb5-6407-43e1-9a2a-5b6685db51f0"},{"name":"Update CRM customer By search","id":"a74399eb-7d5e-461d-91e3-3cbd333786ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"whatsapp\": \"1234567890\",\n    \"dialcode_whatsapp\": \"1234567890\",\n    \"email\": \"john.doe@example.com\",\n    \"mobile\": \"19876543210\",\n    \"dialcode_mobile\": \"91\",\n    \"contact_type\": \"lead\",\n    \"tags\": [\n        {\n            \"tag_id\": 1,\n            \"title\": \"Dummy Data\",\n            \"color\": \"#291234\"\n        },\n        {\n            \"tag_id\": 3,\n            \"title\": \"Contact Us form\",\n            \"color\": \"#326930\"\n        }\n    ],\n    \"assigned_to\": [\n        {\n            \"id\": 60,\n            \"first_name\": \"TiaraBy\",\n            \"last_name\": \"TJ\",\n            \"profile_pic\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/oAeqLavq0AQi/upload/HelpCenter.png\"\n        },\n        {\n            \"id\": 725,\n            \"first_name\": \"Mansi\",\n            \"last_name\": \"Deshmuk\",\n            \"profile_pic\": null\n        }\n    ],\n    \"meta_data\": {\n        \"loyalty_points\": 23 //custom field \n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/crm","urlObject":{"protocol":"https","path":["v1","crm"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"72e09caf-d393-4ab6-bc2f-06315c58b81e","name":"update CRM Example","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"whatsapp\": \"1234567890\",\n    \"dialcode_whatsapp\": \"1234567890\",\n    \"email\": \"john.doe@example.com\",\n    \"mobile\": \"19876543210\",\n    \"dialcode_mobile\": \"91\",\n    \"contact_type\": \"lead\",\n    \"meta_data\": {\n        \"loyalty_points\": 2323424\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/crm"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 315513,\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"whatsapp\": \"1234567890\",\n        \"dialcode_whatsapp\": \"12\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile\": \"19876543210\",\n        \"dialcode_mobile\": \"19\",\n        \"contact_type\": \"lead\",\n        \"tags\": [\n            {\n                \"tag_id\": 1,\n                \"title\": \"Dummy Data\",\n                \"color\": \"#291234\"\n            },\n            {\n                \"tag_id\": 3,\n                \"title\": \"Contact Us form\",\n                \"color\": \"#326930\"\n            }\n        ],\n        \"assigned_to\": [\n            {\n                \"id\": 60,\n                \"first_name\": \"TiaraBy\",\n                \"last_name\": \"TJ\",\n                \"profile_pic\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/oAeqLavq0AQi/upload/HelpCenter.png\"\n            },\n            {\n                \"id\": 725,\n                \"first_name\": \"Mansi\",\n                \"last_name\": \"Deshmuk\",\n                \"profile_pic\": null\n            }\n        ],\n        \"meta_data\": {\n            \"loyalty_points\": \"2323424\"\n        }\n    }\n}"}],"_postman_id":"a74399eb-7d5e-461d-91e3-3cbd333786ba"}],"id":"7bc0229e-0ab4-416f-85d3-03748daf1dd8","_postman_id":"7bc0229e-0ab4-416f-85d3-03748daf1dd8","description":""},{"name":"Coupons","item":[{"name":"Create Coupon","id":"88e73b93-59db-4e12-a60f-bedb9c6964ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"TEST400\",\n    \"description\": \"400 off on products priced above 20k\",\n    \"product_categories\": [\n        141\n    ],\n    \"excluded_product_categories\": [\n        99\n    ],\n    \"product_ids\": [\n        7532\n    ],\n    \"excluded_product_ids\": [\n        7436,\n        7419,\n        7465\n    ],\n    \"discount_type\": \"fixed_product\",\n    \"date_expires\": \"2026-05-21T05:34:43.432Z\",\n    \"amount\": \"12\",\n    \"individual_use\": true,\n    \"usage_limit\": \"1000\",\n    \"usage_limit_per_user\": \"1\",\n    \"minimum_amount\": \"20000\",\n    \"exclude_sale_items\": true,\n    \"date_created\": \"\",\n    \"meta_data\": {\n        \"coupon_jewellery_type\": [\n            177\n        ],\n        \"show_coupon_on_product\": \"yes\",\n        \"free_product_ids\": [\n            7554\n        ],\n        \"allowed_user_ids\": [2349],\n        \"allowed_phones\": [\n            \"9999999999\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/coupons","description":"<h3 id=\"📌-coupon-creation-api-example-description\">📌 Coupon Creation API Example Description</h3>\n<p>This example demonstrates a POST request to create a new coupon via the JWERO API:</p>\n<p><strong>Endpoint:</strong><br /><code>POST https://api.jwero.com/v1/coupons</code></p>\n<p><strong>Request Headers:</strong></p>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n</ul>\n<p><strong>Request Body Fields:</strong></p>\n<ul>\n<li><p><strong><code>code</code></strong>: <code>\"TEST400\"</code><br />  Unique identifier for the coupon.</p>\n</li>\n<li><p><strong><code>description</code></strong>: <code>\"400 off on products priced above 20k\"</code><br />  A human-readable explanation of the coupon's offer.</p>\n</li>\n<li><p><strong><code>product_categories</code></strong>: <code>[141]</code><br />  Applicable only to products within these category IDs.</p>\n</li>\n<li><p><strong><code>excluded_product_categories</code></strong>: <code>[99]</code><br />  Will not apply to products in these categories.</p>\n</li>\n<li><p><strong><code>product_ids</code></strong>: <code>[7532]</code><br />  Coupon specifically targets these product IDs.</p>\n</li>\n<li><p><strong><code>excluded_product_ids</code></strong>: <code>[7436, 7419, 7465]</code><br />  These product IDs are excluded from the coupon.</p>\n</li>\n<li><p><strong><code>discount_type</code></strong>: <code>\"fixed_product\"</code><br />  Discount is a fixed amount per product.</p>\n</li>\n<li><p><strong><code>date_expires</code></strong>: <code>\"2026-05-21T05:34:43.432Z\"</code><br />  The UTC expiration timestamp for the coupon.</p>\n</li>\n<li><p><strong><code>amount</code></strong>: <code>\"12\"</code><br />  The value of the discount.</p>\n</li>\n<li><p><strong><code>individual_use</code></strong>: <code>true</code><br />  Cannot be used in combination with other coupons.</p>\n</li>\n<li><p><strong><code>usage_limit</code></strong>: <code>\"1000\"</code><br />  Total allowed uses across all users.</p>\n</li>\n<li><p><strong><code>usage_limit_per_user</code></strong>: <code>\"1\"</code><br />  Maximum allowed uses per user.</p>\n</li>\n<li><p><strong><code>minimum_amount</code></strong>: <code>\"20000\"</code><br />  Coupon is valid only for orders with a minimum value of 20,000.</p>\n</li>\n<li><p><strong><code>exclude_sale_items</code></strong>: <code>true</code><br />  Coupon will not apply to items that are already on sale.</p>\n</li>\n<li><p><strong><code>date_created</code></strong>: <code>\"\"</code><br />  Not required in this request; left blank.</p>\n</li>\n<li><p><strong><code>meta_data</code></strong>:<br />  Custom metadata attached to the coupon:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"coupon_jewellery_type\": [177],\n    \"show_coupon_on_product\": \"yes\",\n    \"free_product_ids\": [7554],\n    \"allowed_user_ids\": [2349], // Allow coupons only to selected users ids\n    \"allowed_phones\": [         // Allow coupons to be used by selected phone numbers only\n            \"9999999999\"\n  }\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","coupons"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"6a103df2-1fa9-4973-b0b4-d171dd51dae3","name":"Create Coupon Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"TEST400\",\n    \"description\": \"400 off on products priced above 20k\",\n    \"product_categories\": [\n        141\n    ],\n    \"excluded_product_categories\": [\n        99\n    ],\n    \"product_ids\": [\n        7532\n    ],\n    \"excluded_product_ids\": [\n        7436,\n        7419,\n        7465\n    ],\n    \"discount_type\": \"fixed_product\",\n    \"date_expires\": \"2026-05-21T05:34:43.432Z\",\n    \"amount\": \"12\",\n    \"individual_use\": true,\n    \"usage_limit\": \"1000\",\n    \"usage_limit_per_user\": \"1\",\n    \"minimum_amount\": \"20000\",\n    \"exclude_sale_items\": true,\n    \"date_created\": \"\",\n    \"meta_data\": {\n        \"coupon_jewellery_type\": [\n            177\n        ],\n        \"show_coupon_on_product\": \"yes\",\n        \"free_product_ids\": [\n            7554\n        ],\n        \"allowed_user_ids\": [2349],\n        \"allowed_phones\": [\n            \"9999999999\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/coupons"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n   \"success\":true,\n   \"data\":{\n      \"id\":8081,\n      \"code\":\"test400\",\n      \"amount\":\"12.00\",\n      \"status\":\"publish\",\n      \"date_created\":\"2025-05-21T11:06:17\",\n      \"date_created_gmt\":\"2025-05-21T05:36:17\",\n      \"date_modified\":\"2025-05-21T11:06:17\",\n      \"date_modified_gmt\":\"2025-05-21T05:36:17\",\n      \"discount_type\":\"fixed_product\",\n      \"description\":\"400 off on products priced above 20k\",\n      \"date_expires\":\"2026-05-21T05:34:43\",\n      \"date_expires_gmt\":\"2026-05-21T00:04:43\",\n      \"usage_count\":0,\n      \"individual_use\":true,\n      \"product_ids\":[\n         7532\n      ],\n      \"excluded_product_ids\":[\n         7436,\n         7419,\n         7465\n      ],\n      \"usage_limit\":1000,\n      \"usage_limit_per_user\":1,\n      \"limit_usage_to_x_items\":null,\n      \"free_shipping\":false,\n      \"product_categories\":[\n         141\n      ],\n      \"excluded_product_categories\":[\n         99\n      ],\n      \"exclude_sale_items\":true,\n      \"minimum_amount\":\"20000.00\",\n      \"maximum_amount\":\"0.00\",\n      \"email_restrictions\":[\n         \n      ],\n      \"used_by\":[\n         \n      ],\n      \"meta_data\":{\n         \"coupon_jewellery_type\":[\n            177\n         ],\n         \"show_coupon_on_product\":\"yes\",\n         \"free_product_ids\":[\n            7554\n         ],\n         \"allowed_user_ids\":[\n            2349\n         ],\n         \"allowed_phones\":[\n            \"9999999999\"\n         ]\n      }\n   }\n}"}],"_postman_id":"88e73b93-59db-4e12-a60f-bedb9c6964ed"}],"id":"32833c97-0a6e-4289-bc81-53b2d4b9dc8b","_postman_id":"32833c97-0a6e-4289-bc81-53b2d4b9dc8b","description":""},{"name":"Products","item":[{"name":"Add New Product","item":[{"name":"Add New Product","id":"66782c78-1c58-49a0-95e2-c439f027112f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Earring - Gemstone Trial\",\n  \"slug\": \"earring-gemstone-trial\",\n  \"status\": \"draft\",\n  \"description_full\": \"<p>This is product description</p>\",\n  \"description_short\": \"<p>This is product description</p>\",\n  \"sku\": \"12333234\",\n  \"date_on_sale_from\": null,\n  \"date_on_sale_to\": null,\n  \"backorders_allowed\": false,\n  \"backorders\": \"no\",\n  \"backordered\": true,\n  \"shipping\": {\n    \"required\": true,\n    \"taxable\": true,\n    \"min_shipping_days\": 5,\n    \"max_shipping_days\": 10\n  },\n  \"stock_status\": \"onbackorder\",\n  \"categories\": [\n    {\n      \"id\": 2,\n      \"name\": \"Earrings\",\n      \"slug\": \"earrings\"\n    }\n  ],\n  \"collections\": [\n    {\n      \"term_id\": 12,\n      \"name\": \"Diamond Jewellery\",\n      \"slug\": \"diamond-jewellery\"\n    },\n    {\n      \"term_id\": 15,\n      \"name\": \"Gemstone Jewellery\",\n      \"slug\": \"gemstone-jewellery\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 78,\n      \"name\": \"Tops\",\n      \"slug\": \"tops\"\n    }\n  ],\n  \"images\": [\n    {\n      \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n      \"name\": \"NEw-Collectionn-4\"\n    }\n  ],\n  \"meta_data\": {\n    \"seo_description\": \"This is product description\",\n    \"seo_title\": \"Earring - Gemstone Trial\",\n    \"seo_keywords\": [],\n    \"hallmarked\": \"1\",\n    \"labour_from\": \"gross\",\n    \"wastage_from\": \"weight\",\n    \"making_from\": \"labour\",\n    \"minimum_labour\": \"499\",\n    \"wastage_percent\": \"10\",\n    \"per_gram\": \"399\",\n    \"huid\": [\"324234\"],\n    \"metal_color\": \"yellow\",\n    \"silver_purity\": \"995\",\n    \"platinum_purity\": \"\",\n    \"manual_price\": \"0\",\n    \"custom_wastage_from\": \"gross\",\n    \"extra_charges\": {\n      \"extra_charge_label\": \"certificate\",\n      \"extra_charge_value\": \"999\"\n    },\n    \"total_diamond_weight\": \"0.08\",\n    \"total_gemstone_weight\": \"20\",\n    \"disable_customization\": \"no\",\n    \"diamond_from\": \"master\",\n    \"stone_from\": \"master\"\n  },\n  \"metal_details\": [\n    {\n      \"metal_type\": \"gold\",\n      \"gross\": \"99\",\n      \"purity\": 600,\n      \"net\": \"94.984\"\n    }\n  ],\n  \"diamond_details\": [\n    {\n      \"diamond_type\": \"natural\",\n      \"diamond_quality\": \"VVS-DE\",\n      \"diamond_shape\": \"princess\",\n      \"diamond_sieve\": \"1671627672_0ytnJ\",\n      \"diamond_cut\": \"excellent\",\n      \"diamond_pieces\": 12,\n      \"diamond_weight\": \"0.08\",\n      \"diamond_rate\": \"40000\",\n      \"diamond_lab\": \"GIA\",\n      \"diamond_certified\": \"no\",\n      \"diamond_certificate_id\": \"\"\n    }\n  ],\n  \"stone_details\": [\n    {\n      \"stone_quality\": \"precious\",\n      \"stone_type\": \"ruby\",\n      \"stone_shape\": \"square\",\n      \"stone_size\": \"7\",\n      \"stone_pieces\": 3,\n      \"stone_weight\": \"20\",\n      \"stone_rate\": \"7900\",\n      \"stone_color\": \"golden\"\n    }\n  ],\n  \"discounts\": [\n    {\n      \"discount_type\": \"making\",\n      \"value\": \"80000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"metal\",\n      \"value\": \"70000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"stone\",\n      \"value\": \"2300\",\n      \"discount_method\": \"amount\"\n    }\n  ],\n  \"upsell_ids\": [68783, 68784],\n  \"cross_sell_ids\": [68759]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products","description":"<h2 id=\"product--core-information\">Product – Core Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Product name.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>Unique SKU for the product.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Product status. Values: draft, publish.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>short_description</td>\n<td>Short HTML description.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Full HTML description.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"product-images\">Product Images</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>images[].id</td>\n<td>Media ID (preferred if already uploaded).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>images[].src</td>\n<td>Image URL (used if ID not available).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>images[].color</td>\n<td>Image color mapping (used for metal/color logic).</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"categorization\">Categorization</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>category</td>\n<td>Main category names.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subcategory</td>\n<td>Subcategory names.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>collections</td>\n<td>Collection names (business-facing).</td>\n<td>No</td>\n</tr>\n<tr>\n<td>tag</td>\n<td>Product tags.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"inventory--availability\">Inventory &amp; Availability</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stock_status</td>\n<td>Values: instock, outofstock, onbackorder.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>manage_stock</td>\n<td>Enable stock management.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>stock_quantity</td>\n<td>Stock quantity (used if manage_stock = true).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>backorders</td>\n<td>Backorder mode. Values: no, notify, yes.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"sale-configuration\">Sale Configuration</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_on_sale_from</td>\n<td>Sale start date (nullable).</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date_on_sale_to</td>\n<td>Sale end date (nullable).</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"upsell--cross-sell\">Upsell / Cross-sell</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>upsell_ids</td>\n<td>Related upsell product IDs.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>cross_sell_ids</td>\n<td>Related cross-sell product IDs.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"attributes-used-for-filters--display\">Attributes (Used for Filters / Display)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes[].name</td>\n<td>Attribute name (e.g. Gender, Occasion).</td>\n<td>No</td>\n</tr>\n<tr>\n<td>attributes[].options</td>\n<td>Attribute values.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>attributes[].visible</td>\n<td>Show on product page.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"meta-data--seo--grouping\">Meta Data – SEO &amp; Grouping</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.seo.seo_title</td>\n<td>SEO title.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.seo.seo_description</td>\n<td>SEO description.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.seo.seo_keywords</td>\n<td>SEO keywords.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.product_groups</td>\n<td>Internal product grouping IDs.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"jewellery-pricing-configuration\">Jewellery Pricing Configuration</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.labour_from</td>\n<td>Labour source. Values: gross, net.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.wastage_from</td>\n<td>Wastage basis. Values: weight, value.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.making_from</td>\n<td>Making source. Values: labour, labour_wastage.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.minimum_labour</td>\n<td>Minimum labour charge.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.wastage_percent</td>\n<td>Wastage percentage.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.per_gram</td>\n<td>Making charge per gram.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.manual_price</td>\n<td>Manual override price (if any).</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"metal-configuration\">Metal Configuration</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.metal_type</td>\n<td>Metal type. Values: gold, silver, platinum.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>meta_data.metal_color</td>\n<td>Metal color (yellow, rose, white).</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>meta_data.gold_kt</td>\n<td>Gold purity (e.g. 916).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.silver_purity</td>\n<td>Silver purity (e.g. 995).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.platinium_purity</td>\n<td>Platinum purity.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.gold_gross</td>\n<td>Gross metal weight.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>meta_data.gold_net</td>\n<td>Net metal weight.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"diamond-details-if-applicable\">Diamond Details (If Applicable)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.diamond.*.diamond_type</td>\n<td>natural / lab_grown.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.diamond.*.diamond_quality</td>\n<td>Diamond quality (e.g. VS2-DE).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.diamond.*.diamond_shape</td>\n<td>Diamond shape.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.diamond.*.diamond_pieces</td>\n<td>Number of diamonds.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.diamond.*.diamond_weight</td>\n<td>Total diamond weight.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.diamond.*.diamond_rate</td>\n<td>Diamond rate.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.total_diamond_weight</td>\n<td>Total diamond weight (summary).</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"gemstone-details-if-applicable\">Gemstone Details (If Applicable)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.colorstone_details.*.colorstone_type</td>\n<td>Stone type (ruby, emerald, etc.).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.colorstone_details.*.colorstone_quality</td>\n<td>precious / semi-precious.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.colorstone_details.*.colorstone_weight</td>\n<td>Total stone weight.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>meta_data.colorstone_details.*.colorstone_rate</td>\n<td>Stone rate.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.total_gemstone_weight</td>\n<td>Total gemstone weight.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"extra-charges\">Extra Charges</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.extra_charges.*.extra_charge_label</td>\n<td>Charge label (e.g. certificate).</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.extra_charges.*.extra_charge_value</td>\n<td>Charge amount.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"shipping--delivery\">Shipping &amp; Delivery</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta_data.product_shipping.min</td>\n<td>Minimum delivery days.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.product_shipping.max</td>\n<td>Maximum delivery days.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>meta_data.product_location_branch</td>\n<td>Product availability location.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"024ff218-a965-4d63-895d-25e3a8615960","name":"Add New Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Earring - Gemstone Trial\",\n  \"slug\": \"earring-gemstone-trial\",\n  \"status\": \"draft\",\n  \"description_full\": \"<p>This is product description</p>\",\n  \"description_short\": \"<p>This is product description</p>\",\n  \"sku\": \"12333234\",\n  \"date_on_sale_from\": null,\n  \"date_on_sale_to\": null,\n  \"backorders_allowed\": false,\n  \"backorders\": \"no\",\n  \"backordered\": true,\n  \"shipping\": {\n    \"required\": true,\n    \"taxable\": true,\n    \"min_shipping_days\": 5,\n    \"max_shipping_days\": 10\n  },\n  \"stock_status\": \"onbackorder\",\n  \"categories\": [\n    {\n      \"id\": 2,\n      \"name\": \"Earrings\",\n      \"slug\": \"earrings\"\n    }\n  ],\n  \"collections\": [\n    {\n      \"term_id\": 12,\n      \"name\": \"Diamond Jewellery\",\n      \"slug\": \"diamond-jewellery\"\n    },\n    {\n      \"term_id\": 15,\n      \"name\": \"Gemstone Jewellery\",\n      \"slug\": \"gemstone-jewellery\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 78,\n      \"name\": \"Tops\",\n      \"slug\": \"tops\"\n    }\n  ],\n  \"images\": [\n    {\n      \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n      \"name\": \"NEw-Collectionn-4\"\n    }\n  ],\n  \"meta_data\": {\n    \"seo_description\": \"This is product description\",\n    \"seo_title\": \"Earring - Gemstone Trial\",\n    \"seo_keywords\": [],\n    \"hallmarked\": \"1\",\n    \"labour_from\": \"gross\",\n    \"wastage_from\": \"weight\",\n    \"making_from\": \"labour\",\n    \"minimum_labour\": \"499\",\n    \"wastage_percent\": \"10\",\n    \"per_gram\": \"399\",\n    \"huid\": [\"324234\"],\n    \"metal_color\": \"yellow\",\n    \"silver_purity\": \"995\",\n    \"platinum_purity\": \"\",\n    \"manual_price\": \"0\",\n    \"custom_wastage_from\": \"gross\",\n    \"extra_charges\": {\n      \"extra_charge_label\": \"certificate\",\n      \"extra_charge_value\": \"999\"\n    },\n    \"total_diamond_weight\": \"0.08\",\n    \"total_gemstone_weight\": \"20\",\n    \"disable_customization\": \"no\",\n    \"diamond_from\": \"master\",\n    \"stone_from\": \"master\"\n  },\n  \"metal_details\": [\n    {\n      \"metal_type\": \"gold\",\n      \"gross\": \"99\",\n      \"purity\": 600,\n      \"net\": \"94.984\"\n    }\n  ],\n  \"diamond_details\": [\n    {\n      \"diamond_type\": \"natural\",\n      \"diamond_quality\": \"VVS-DE\",\n      \"diamond_shape\": \"princess\",\n      \"diamond_sieve\": \"1671627672_0ytnJ\",\n      \"diamond_cut\": \"excellent\",\n      \"diamond_pieces\": 12,\n      \"diamond_weight\": \"0.08\",\n      \"diamond_rate\": \"40000\",\n      \"diamond_lab\": \"GIA\",\n      \"diamond_certified\": \"no\",\n      \"diamond_certificate_id\": \"\"\n    }\n  ],\n  \"stone_details\": [\n    {\n      \"stone_quality\": \"precious\",\n      \"stone_type\": \"ruby\",\n      \"stone_shape\": \"square\",\n      \"stone_size\": \"7\",\n      \"stone_pieces\": 3,\n      \"stone_weight\": \"20\",\n      \"stone_rate\": \"7900\",\n      \"stone_color\": \"golden\"\n    }\n  ],\n  \"discounts\": [\n    {\n      \"discount_type\": \"making\",\n      \"value\": \"80000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"metal\",\n      \"value\": \"70000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"stone\",\n      \"value\": \"2300\",\n      \"discount_method\": \"amount\"\n    }\n  ],\n  \"upsell_ids\": [68783, 68784],\n  \"cross_sell_ids\": [68759]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 82593,\n        \"name\": \"Earring - Gemstone Trial\",\n        \"status\": \"draft\",\n        \"description_full\": \"<p>This is product description</p>\",\n        \"description_short\": \"\",\n        \"sku\": \"12333234\",\n        \"price\": \"\",\n        \"regular_price\": \"\",\n        \"sale_price\": \"\",\n        \"backorders_status\": \"no\",\n        \"backorders_allowed\": false,\n        \"backordered\": true,\n        \"dimensions\": {\n            \"length\": \"\",\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"shipping\": {\n            \"required\": true,\n            \"taxable\": true,\n            \"min_shipping_days\": 5,\n            \"max_shipping_days\": 10\n        },\n        \"stock_status\": \"onbackorder\",\n        \"categories\": [\n            {\n                \"id\": 2,\n                \"name\": \"Earrings\",\n                \"slug\": \"earrings\"\n            }\n        ],\n        \"tags\": [\n            {\n                \"id\": 78,\n                \"name\": \"Tops\",\n                \"slug\": \"tops\"\n            }\n        ],\n        \"images\": [\n            {\n                \"id\": 81516,\n                \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                \"name\": \"NEw-Collectionn-4\"\n            }\n        ],\n        \"meta_data\": {\n            \"seo_description\": \"This is product description\",\n            \"seo_title\": \"Earring - Gemstone Trial\",\n            \"seo_keywords\": [],\n            \"hallmarked\": \"1\",\n            \"labour_from\": \"gross\",\n            \"wastage_from\": \"weight\",\n            \"making_from\": \"labour\",\n            \"minimum_labour\": \"499\",\n            \"wastage_percent\": \"10\",\n            \"per_gram\": \"399\",\n            \"huid\": [\n                \"324234\"\n            ],\n            \"metal_color\": \"yellow\",\n            \"gold_kt\": \"916\",\n            \"silver_purity\": \"995\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"gross\",\n            \"extra_charges\": {\n                \"extra_charge_label\": \"certificate\",\n                \"extra_charge_value\": \"999\"\n            },\n            \"total_diamond_weight\": \"0.08\",\n            \"total_gemstone_weight\": \"20\",\n            \"disable_customization\": \"no\",\n            \"diamond_from\": \"master\",\n            \"stone_from\": \"master\"\n        },\n        \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"purity\": 600,\n                \"gross\": \"99\",\n                \"net\": \"94.984\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"purity\": \"\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"purity\": \"\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            }\n        ],\n        \"diamond_details\": [\n            {\n                \"diamond_type\": \"natural\",\n                \"diamond_quality\": \"VVS-DE\",\n                \"diamond_shape\": \"princess\",\n                \"diamond_sieve\": \"1671627672_0ytnJ\",\n                \"diamond_cut\": \"excellent\",\n                \"diamond_pieces\": 12,\n                \"diamond_weight\": \"0.08\",\n                \"diamond_rate\": \"40000\",\n                \"diamond_lab\": \"\",\n                \"diamond_certified\": \"\",\n                \"diamond_certificate_id\": \"\"\n            }\n        ],\n        \"stone_details\": [\n            {\n                \"stone_quality\": \"precious\",\n                \"stone_type\": \"ruby\",\n                \"stone_shape\": \"square\",\n                \"stone_size\": \"7\",\n                \"stone_pieces\": 3,\n                \"stone_weight\": \"20\",\n                \"stone_rate\": \"7900\",\n                \"stone_color\": \"golden\"\n            }\n        ],\n        \"discounts\": [\n            {\n                \"discount_type\": \"making\",\n                \"value\": \"80000\",\n                \"discount_method\": \"amount\"\n            },\n            {\n                \"discount_type\": \"metal\",\n                \"value\": \"70000\",\n                \"discount_method\": \"amount\"\n            },\n            {\n                \"discount_type\": \"stone\",\n                \"value\": \"2300\",\n                \"discount_method\": \"amount\"\n            }\n        ],\n        \"upsell_ids\": [\n            68783,\n            68784\n        ],\n        \"cross_sell_ids\": [\n            68759\n        ]\n    }\n}"}],"_postman_id":"66782c78-1c58-49a0-95e2-c439f027112f"},{"name":"Add Gold stone Product","id":"23071930-7ed0-4eca-8790-e1c29c28066a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Stunning Gold Earring with stone\",\n    \"sku\": \"RNG187\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"instock\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Gold Jewellery\"\n    ],\n    \"subcategory\": [],\n    \"shipping\": {\n        \"required\": true,\n        \"taxable\": true,\n        \"min_shipping_days\": 5,\n        \"max_shipping_days\": 10\n    },\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"gold\",\n            \"gross\": \"99\",\n            \"purity\": 750,\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"This stunning gold earring features a beautifully set stone that catches the light with every movement. Designed for elegance and comfort, it's ideal for weddings, parties, or everyday luxury. Crafted with precision, this piece blends timeless tradition with a touch of contemporary charm\",\n        \"seo_title\": \"Stunning Gold EarRing with stone\",\n        \"seo_keywords\": [\n            \"gold\",\n            \"earrings\"\n        ],\n        \"hallmarked\": false,\n        \"labour_from\": \"gross\",\n        \"wastage_from\": \"weight\",\n        \"making_from\": \"labour\",\n        \"minimum_labour\": \"1500\",\n        \"wastage_percent\": \"7\",\n        \"per_gram\": \"10\",\n        \"labour_pricing_title\": 1714564704,\n        \"huid\": [\n            \"DKKL34\"\n        ],\n        \"product_shipping\": {\n            \"min\": \"3\",\n            \"max\": \"7\"\n        },\n        \"metal_type\": \"gold\",\n        \"metal_color\": \"yellow\",\n        \"labourType\": \"master\",\n        \"product_width\": \"2\",\n        \"product_height\": \"2\",\n        \"product_thickness\": \"2\",\n        \"_woodmart_product_video\": \"\",\n        \"colorstone_from\": \"master\",\n        \"diamond_from\": \"master\",\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"show_extra_charges_separately\": false,\n        \"manual_price\": 0,\n        \"custom_wastage_from\": \"gross\",\n        \"disable_customization\": \"no\",\n        \"image_colors\": [\n            {\n                \"id\": 7415,\n                \"color\": \"yellow\"\n            }\n        ],\n        \"extra_charges\": {\n            \"1\": {\n                \"extra_charge_label\": \"certificate\",\n                \"extra_charge_value\": \"1000\"\n            }\n        },\n        \"total_gemstone_weight\": 0.5\n    },\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"stock_quantity\": 10,\n    \"manage_stock\": true,\n    \"attributes\": [\n        {\n            \"id\": 1,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Gold Jewellery\"\n            ]\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Rings\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>Product status. <strong>Possible values</strong>: \"draft\", \"publish\".</td>\n</tr>\n<tr>\n<td><code>catalog_visibility</code></td>\n<td>Catalog visibility. <strong>Possible values</strong>: \"visible\", \"hidden\".</td>\n</tr>\n<tr>\n<td><code>backorders_allowed</code></td>\n<td>Whether backorders are allowed. <strong>Possible values</strong>: true, false.</td>\n</tr>\n<tr>\n<td><code>backorders_status</code></td>\n<td>Status of backorders. <strong>Possible values</strong>: \"no\", \"notify\", \"yes\".</td>\n</tr>\n<tr>\n<td><code>backordered</code></td>\n<td>Whether the product is backordered. <strong>Possible values</strong>: true, false.</td>\n</tr>\n<tr>\n<td><code>sold_individually</code></td>\n<td>Whether the product is sold individually. <strong>Possible values</strong>: true, false.</td>\n</tr>\n<tr>\n<td><code>shipping.required</code></td>\n<td>Whether shipping is required. <strong>Possible values</strong>: true, false.</td>\n</tr>\n<tr>\n<td><code>shipping.taxable</code></td>\n<td>Whether shipping is taxable. <strong>Possible values</strong>: true, false.</td>\n</tr>\n<tr>\n<td><code>stock_status</code></td>\n<td>Stock status of the product. <strong>Possible values</strong>: \"instock\", \"outofstock\", \"onbackorder\".</td>\n</tr>\n<tr>\n<td><code>meta_data.labour_from</code></td>\n<td>Source of labour costs. <strong>Possible values</strong>: \"gross\", \"net\".</td>\n</tr>\n<tr>\n<td><code>meta_data.wastage_from</code></td>\n<td>Source of wastage costs. <strong>Possible values</strong>: \"weight\", \"value\".</td>\n</tr>\n<tr>\n<td><code>meta_data.making_from</code></td>\n<td>Source of making costs. <strong>Possible values</strong>: \"labour\", \"labour_wastage\".</td>\n</tr>\n<tr>\n<td><code>meta_data.disable_customization</code></td>\n<td>Whether customization is allowed. <strong>Possible values</strong>: \"yes\", \"no\".</td>\n</tr>\n<tr>\n<td><code>meta_data.diamond_from</code></td>\n<td>Source of diamonds. <strong>Possible values</strong>: \"master\", \"customize\".</td>\n</tr>\n<tr>\n<td><code>meta_data.stone_from</code></td>\n<td>Source of gemstones. <strong>Possible values</strong>: \"master\", \"customize\".</td>\n</tr>\n<tr>\n<td><code>metal_details.metal_type</code></td>\n<td>Type of metal. <strong>Possible values</strong>: \"gold\", \"silver\", \"platinum\".</td>\n</tr>\n<tr>\n<td><code>diamond_details.diamond_type</code></td>\n<td>Type of diamond. <strong>Possible values</strong>: \"natural\", \"lab_grown\".</td>\n</tr>\n<tr>\n<td><code>stone_details.stone_quality</code></td>\n<td>Quality of the stone. <strong>Possible values</strong>: \"precious\", \"semi-precious\".</td>\n</tr>\n<tr>\n<td><code>stone_details.stone_type</code></td>\n<td>Type of stone. <strong>Possible values</strong>: \"ruby\", \"emerald\", \"sapphire\", etc.</td>\n</tr>\n<tr>\n<td><code>discounts.discount_type</code></td>\n<td>Type of discount. <strong>Possible values</strong>: \"making\", \"metal\", \"stone\", \"diamond\".</td>\n</tr>\n<tr>\n<td><code>discounts.discount_method</code></td>\n<td>Method of discount. <strong>Possible values</strong>: \"amount\", \"percent\".</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"e820025e-70ad-4a38-b611-b2c14209d2b9","name":"Add Gold stone Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Stunning Gold Earring with stone\",\n    \"sku\": \"RNG187\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"instock\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Gold Jewellery\"\n    ],\n    \"subcategory\": [],\n    \"shipping\": {\n        \"required\": true,\n        \"taxable\": true,\n        \"min_shipping_days\": 5,\n        \"max_shipping_days\": 10\n    },\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"gold\",\n            \"gross\": \"99\",\n            \"purity\": 750,\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"This stunning gold earring features a beautifully set stone that catches the light with every movement. Designed for elegance and comfort, it's ideal for weddings, parties, or everyday luxury. Crafted with precision, this piece blends timeless tradition with a touch of contemporary charm\",\n        \"seo_title\": \"Stunning Gold EarRing with stone\",\n        \"seo_keywords\": [\n            \"gold\",\n            \"earrings\"\n        ],\n        \"hallmarked\": false,\n        \"labour_from\": \"gross\",\n        \"wastage_from\": \"weight\",\n        \"making_from\": \"labour\",\n        \"minimum_labour\": \"1500\",\n        \"wastage_percent\": \"7\",\n        \"per_gram\": \"10\",\n        \"labour_pricing_title\": 1714564704,\n        \"huid\": [\n            \"DKKL34\"\n        ],\n        \"product_shipping\": {\n            \"min\": \"3\",\n            \"max\": \"7\"\n        },\n        \"metal_type\": \"gold\",\n        \"metal_color\": \"yellow\",\n        \"labourType\": \"master\",\n        \"product_width\": \"2\",\n        \"product_height\": \"2\",\n        \"product_thickness\": \"2\",\n        \"_woodmart_product_video\": \"\",\n        \"colorstone_from\": \"master\",\n        \"diamond_from\": \"master\",\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"show_extra_charges_separately\": false,\n        \"manual_price\": 0,\n        \"custom_wastage_from\": \"gross\",\n        \"disable_customization\": \"no\",\n        \"image_colors\": [\n            {\n                \"id\": 7415,\n                \"color\": \"yellow\"\n            }\n        ],\n        \"extra_charges\": {\n            \"1\": {\n                \"extra_charge_label\": \"certificate\",\n                \"extra_charge_value\": \"1000\"\n            }\n        },\n        \"total_gemstone_weight\": 0.5\n    },\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"stock_quantity\": 10,\n    \"manage_stock\": true,\n    \"attributes\": [\n        {\n            \"id\": 1,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Gold Jewellery\"\n            ]\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Rings\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 7347,\n        \"name\": \"Stunning Gold Earring with stone\",\n        \"slug\": \"kajol-2-title-2-2\",\n        \"permalink\": \"https://jwero.jwero.com/product/kajol-2-title-2-2/\",\n        \"date_created\": \"2023-07-14T12:51:37\",\n        \"date_created_gmt\": \"2023-07-14T07:21:37\",\n        \"date_modified\": \"2025-04-19T13:32:24\",\n        \"date_modified_gmt\": \"2025-04-19T08:02:24\",\n        \"type\": \"simple\",\n        \"status\": \"publish\",\n        \"featured\": false,\n        \"catalog_visibility\": \"visible\",\n        \"description\": \"This stunning gold earring features a beautifully set stone that catches the light with every movement. Designed for elegance and comfort, it's ideal for weddings, parties, or everyday luxury. Crafted with precision, this piece blends timeless tradition with a touch of contemporary charm\",\n        \"short_description\": \"Elegant gold earring adorned with a sparkling stone, perfect for both traditional and modern looks.\",\n        \"sku\": \"RNG187\",\n        \"price\": \"39132\",\n        \"regular_price\": \"41132\",\n        \"sale_price\": \"39132\",\n        \"date_on_sale_from\": null,\n        \"date_on_sale_from_gmt\": null,\n        \"date_on_sale_to\": null,\n        \"date_on_sale_to_gmt\": null,\n        \"on_sale\": true,\n        \"purchasable\": true,\n        \"total_sales\": 0,\n        \"virtual\": false,\n        \"downloadable\": false,\n        \"downloads\": [],\n        \"download_limit\": -1,\n        \"download_expiry\": -1,\n        \"external_url\": \"\",\n        \"button_text\": \"\",\n        \"tax_status\": \"taxable\",\n        \"tax_class\": \"\",\n        \"manage_stock\": true,\n        \"stock_quantity\": 10,\n        \"backorders\": \"no\",\n        \"backorders_allowed\": false,\n        \"backordered\": false,\n        \"low_stock_amount\": null,\n        \"sold_individually\": false,\n        \"weight\": \"\",\n        \"dimensions\": {\n            \"length\": \"\",\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"upsell_ids\": [],\n        \"cross_sell_ids\": [],\n        \"categories\": [\n            {\n                \"id\": 19,\n                \"name\": \"Rings\",\n                \"slug\": \"rings\"\n            }\n        ],\n        \"tags\": [],\n        \"images\": [\n            {\n                \"id\": 7415,\n                \"date_created\": \"2023-11-21T20:57:07\",\n                \"date_created_gmt\": \"2023-11-21T04:27:07\",\n                \"date_modified\": \"2024-04-03T23:17:04\",\n                \"date_modified_gmt\": \"2024-04-03T06:47:04\",\n                \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n                \"name\": \"96\",\n                \"alt\": \"\"\n            }\n        ],\n        \"attributes\": [\n            {\n                \"id\": 1,\n                \"name\": \"Collections\",\n                \"slug\": \"pa_collections\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"Gold Jewellery\"\n                ]\n            },\n            {\n                \"id\": 2,\n                \"name\": \"Categories\",\n                \"slug\": \"pa_categories\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"Rings\"\n                ]\n            },\n            {\n                \"id\": 5,\n                \"name\": \"Metal Purity\",\n                \"slug\": \"pa_metal-purity\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"18 KT\"\n                ]\n            },\n            {\n                \"id\": 4,\n                \"name\": \"Metal Weight\",\n                \"slug\": \"pa_metal-weight\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"2-5 g\"\n                ]\n            },\n            {\n                \"id\": 3,\n                \"name\": \"Diamond Weight\",\n                \"slug\": \"pa_diamond-weight\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": []\n            },\n            {\n                \"id\": 9,\n                \"name\": \"Gender\",\n                \"slug\": \"pa_gender\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": []\n            },\n            {\n                \"id\": 11,\n                \"name\": \"Ocassions\",\n                \"slug\": \"pa_ocassions\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": []\n            }\n        ],\n            \"meta_data\": {\n            \"seo_description\": \"\",\n            \"seo_title\": \"\",\n            \"seo_keywords\": [],\n            \"hallmarked\": \"\",\n            \"labour_from\": \"gross\",\n            \"wastage_from\": \"weight\",\n            \"making_from\": \"labour\",\n            \"minimum_labour\": \"1500\",\n            \"wastage_percent\": \"7\",\n            \"per_gram\": \"10\",\n            \"huid\": [\n                \"DKKL34\"\n            ],\n            \"metal_color\": \"yellow\",\n            \"silver_purity\": \"\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"gross\",\n            \"extra_charges\": {\n                \"1\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"1000\"\n                }\n            },\n            \"total_diamond_weight\": \"\",\n            \"total_gemstone_weight\": \"0.5\",\n            \"disable_customization\": \"no\",\n            \"diamond_from\": \"master\",\n            \"stone_from\": \"master\"\n        },\n        \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"gross\": \"5\",\n                \"purity\": 750,\n                \"net\": \"4.9\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"gross\": \"\",\n                \"purity\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"gross\": \"\",\n                \"purity\": \"\",\n                \"net\": \"\"\n            }\n        ],\n        \"stock_status\": \"instock\",\n        \"has_options\": false,\n        \"global_unique_id\": \"\",\n        \"permalink_template\": \"https://jwero.jwero.com/product/%pagename%/\",\n        \"generated_slug\": \"stunning-gold-earring-with-stone\",\n        \"subcategory\": [],\n        \"collections\": [\n            {\n                \"term_id\": 18,\n                \"name\": \"Gold Jewellery\",\n                \"slug\": \"gold-jewellery\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 18,\n                \"taxonomy\": \"jewellery_type\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 43,\n                \"filter\": \"raw\"\n            }\n        ]\n    }\n}"}],"_postman_id":"23071930-7ed0-4eca-8790-e1c29c28066a"},{"name":"Add Silver Product","id":"8f3a48e0-86fc-4e50-b532-25ff523354f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"999 Silver Coin - 50g\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"sku\": \"DA17251\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"shipping\": {\n        \"required\": true,\n        \"taxable\": true,\n        \"min_shipping_days\": 5,\n        \"max_shipping_days\": 10\n    },\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"instock\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Silver Jewellery\"\n    ],\n    \"subcategory\": [\n        \"Silver Coins\"\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"silver\",\n            \"gross\": \"99\",\n            \"purity\": 750,\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"This stunning gold earring features a beautifully set stone that catches the light with every movement. Designed for elegance and comfort, it's ideal for weddings, parties, or everyday luxury. Crafted with precision, this piece blends timeless tradition with a touch of contemporary charm\",\n        \"seo_title\": \"Stunning Gold EarRing with stone\",\n        \"seo_keywords\": [\n            \"gold\",\n            \"earrings\"\n        ],\n        \"hallmarked\": false,\n        \"labour_from\": \"gross\",\n        \"wastage_from\": \"weight\",\n        \"making_from\": \"labour\",\n        \"minimum_labour\": \"1500\",\n        \"wastage_percent\": \"7\",\n        \"per_gram\": \"10\",\n        \"labour_pricing_title\": 1714564704,\n        \"huid\": [\n            \"DKKL34\"\n        ],\n        \"product_shipping\": {\n            \"min\": \"3\",\n            \"max\": \"7\"\n        },\n        \"metal_type\": \"gold\",\n        \"metal_color\": \"yellow\",\n        \"labourType\": \"master\",\n        \"product_width\": \"2\",\n        \"product_height\": \"2\",\n        \"product_thickness\": \"2\",\n        \"_woodmart_product_video\": \"\",\n        \"colorstone_from\": \"master\",\n        \"diamond_from\": \"master\",\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"show_extra_charges_separately\": false,\n        \"manual_price\": 0,\n        \"custom_wastage_from\": \"gross\",\n        \"disable_customization\": \"no\",\n        \"image_colors\": [\n            {\n                \"id\": 7415,\n                \"color\": \"yellow\"\n            }\n        ],\n        \"extra_charges\": {\n            \"1\": {\n                \"extra_charge_label\": \"certificate\",\n                \"extra_charge_value\": \"1000\"\n            }\n        },\n        \"total_gemstone_weight\": 0.5\n    },\n    \"stock_quantity\": 1,\n    \"manage_stock\": true,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Silver Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Coins\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"999\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Gifting\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"e3812d1f-69ea-4088-af3c-8513ff68a4f0","name":"Add Silver Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"999 Silver Coin - 50g\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"sku\": \"DA17251\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"shipping\": {\n        \"required\": true,\n        \"taxable\": true,\n        \"min_shipping_days\": 5,\n        \"max_shipping_days\": 10\n    },\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"instock\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Silver Jewellery\"\n    ],\n    \"subcategory\": [\n        \"Silver Coins\"\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"silver\",\n            \"gross\": \"99\",\n            \"purity\": 750,\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"This stunning gold earring features a beautifully set stone that catches the light with every movement. Designed for elegance and comfort, it's ideal for weddings, parties, or everyday luxury. Crafted with precision, this piece blends timeless tradition with a touch of contemporary charm\",\n        \"seo_title\": \"Stunning Gold EarRing with stone\",\n        \"seo_keywords\": [\n            \"gold\",\n            \"earrings\"\n        ],\n        \"hallmarked\": false,\n        \"labour_from\": \"gross\",\n        \"wastage_from\": \"weight\",\n        \"making_from\": \"labour\",\n        \"minimum_labour\": \"1500\",\n        \"wastage_percent\": \"7\",\n        \"per_gram\": \"10\",\n        \"labour_pricing_title\": 1714564704,\n        \"huid\": [\n            \"DKKL34\"\n        ],\n        \"product_shipping\": {\n            \"min\": \"3\",\n            \"max\": \"7\"\n        },\n        \"metal_type\": \"gold\",\n        \"metal_color\": \"yellow\",\n        \"labourType\": \"master\",\n        \"product_width\": \"2\",\n        \"product_height\": \"2\",\n        \"product_thickness\": \"2\",\n        \"_woodmart_product_video\": \"\",\n        \"colorstone_from\": \"master\",\n        \"diamond_from\": \"master\",\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"show_extra_charges_separately\": false,\n        \"manual_price\": 0,\n        \"custom_wastage_from\": \"gross\",\n        \"disable_customization\": \"no\",\n        \"image_colors\": [\n            {\n                \"id\": 7415,\n                \"color\": \"yellow\"\n            }\n        ],\n        \"extra_charges\": {\n            \"1\": {\n                \"extra_charge_label\": \"certificate\",\n                \"extra_charge_value\": \"1000\"\n            }\n        },\n        \"total_gemstone_weight\": 0.5\n    },\n    \"stock_quantity\": 1,\n    \"manage_stock\": true,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Silver Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Coins\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"999\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Gifting\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 7983,\n    \"name\": \"999 Silver Coin - 50g\",\n    \"slug\": \"999-silver-coin-50g\",\n    \"permalink\": \"https://jwero.jwero.com/product/999-silver-coin-50g/\",\n    \"date_created\": \"2025-04-19T17:28:44\",\n    \"date_created_gmt\": \"2025-04-19T11:58:44\",\n    \"date_modified\": \"2025-04-19T17:28:44\",\n    \"date_modified_gmt\": \"2025-04-19T11:58:44\",\n    \"type\": \"simple\",\n    \"status\": \"publish\",\n    \"featured\": false,\n    \"catalog_visibility\": \"visible\",\n    \"description\": \"Crafted with 999 purity silver, this 50g silver coin is ideal for festive gifting and traditional ceremonies. Simple yet valuable, it is a timeless token of prosperity and blessings.\",\n    \"short_description\": \"Pure 999 silver coin weighing 50 grams, perfect for gifting and auspicious occasions.\",\n    \"sku\": \"DA17251\",\n    \"price\": \"\",\n    \"regular_price\": \"\",\n    \"sale_price\": \"\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_from_gmt\": null,\n    \"date_on_sale_to\": null,\n    \"date_on_sale_to_gmt\": null,\n    \"on_sale\": false,\n    \"purchasable\": false,\n    \"total_sales\": 0,\n    \"virtual\": false,\n    \"downloadable\": false,\n    \"downloads\": [],\n    \"download_limit\": -1,\n    \"download_expiry\": -1,\n    \"external_url\": \"\",\n    \"button_text\": \"\",\n    \"tax_status\": \"taxable\",\n    \"tax_class\": \"\",\n    \"manage_stock\": true,\n    \"stock_quantity\": 1,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"low_stock_amount\": null,\n    \"sold_individually\": false,\n    \"weight\": \"\",\n    \"dimensions\": {\n        \"length\": \"\",\n        \"width\": \"\",\n        \"height\": \"\"\n    },\n    \"upsell_ids\": [],\n    \"cross_sell_ids\": [],\n    \"categories\": [\n        {\n            \"id\": 163,\n            \"name\": \"Coins\",\n            \"slug\": \"coins\"\n        }\n    ],\n    \"tags\": [],\n    \"images\": [\n            {\n                \"id\": 7415,\n                \"date_created\": \"2023-11-21T20:57:07\",\n                \"date_created_gmt\": \"2023-11-21T04:27:07\",\n                \"date_modified\": \"2024-04-03T23:17:04\",\n                \"date_modified_gmt\": \"2024-04-03T06:47:04\",\n                \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n                \"name\": \"96\",\n                \"alt\": \"\"\n            }\n        ],\n    \"attributes\": [\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"slug\": \"Ocassions\",\n            \"position\": 0,\n            \"visible\": true,\n            \"variation\": false,\n            \"options\": [\n                \"Gifting\"\n            ]\n        }\n    ],\n    \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"gross\": \"\",\n                \"purity\":\"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"gross\": \"5\",\n                 \"purity\": 750,\n                \"net\": \"3.9\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"gross\": \"\",\n                 \"purity\":\"\",\n                \"net\": \"\"\n            }\n    ],\n    \"meta_data\": {\n            \"seo_description\": \"\",\n            \"seo_title\": \"\",\n            \"seo_keywords\": [],\n            \"hallmarked\": \"\",\n            \"labour_from\": \"gross\",\n            \"wastage_from\": \"weight\",\n            \"making_from\": \"labour\",\n            \"minimum_labour\": \"1500\",\n            \"wastage_percent\": \"7\",\n            \"per_gram\": \"10\",\n            \"huid\": [\n                \"DKKL34\"\n            ],\n            \"metal_color\": \"yellow\",\n            \"gold_kt\": \"750\",\n            \"silver_purity\": \"\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"gross\",\n            \"extra_charges\": {\n                \"1\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"1000\"\n                }\n            },\n            \"total_diamond_weight\": \"\",\n            \"total_gemstone_weight\": \"0.5\",\n            \"disable_customization\": \"no\",\n            \"diamond_from\": \"master\",\n            \"stone_from\": \"master\"\n        },\n    \"stock_status\": \"instock\",\n    \"has_options\": false,\n    \"global_unique_id\": \"\",\n    \"permalink_template\": \"https://jwero.jwero.com/product/%pagename%/\",\n    \"generated_slug\": \"999-silver-coin-50g\",\n    \"subcategory\": [\n        {\n            \"term_id\": 164,\n            \"name\": \"Silver Coins\",\n            \"slug\": \"silver-coins\",\n            \"term_group\": 0,\n            \"term_taxonomy_id\": 164,\n            \"taxonomy\": \"pa_product_subcat\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"count\": 1,\n            \"filter\": \"raw\"\n        }\n    ],\n    \"collections\": [\n        {\n            \"term_id\": 162,\n            \"name\": \"Silver Jewellery\",\n            \"slug\": \"silver-jewellery\",\n            \"term_group\": 0,\n            \"term_taxonomy_id\": 162,\n            \"taxonomy\": \"jewellery_type\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"count\": 1,\n            \"filter\": \"raw\"\n        }\n    ]\n}"}],"_postman_id":"8f3a48e0-86fc-4e50-b532-25ff523354f9"},{"name":"Add platinium Product","id":"f8a9e513-4943-4f80-bb13-dafec9331610","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Geometric Platinum Necklace\",\n    \"sku\": \"V92541\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"instock\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Platinum Jewellery\"\n    ],\n    \"subcategory\": [\n        \"PT NECKLACE\"\n    ],\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"shipping\": {\n        \"required\": true,\n        \"taxable\": true,\n        \"min_shipping_days\": 5,\n        \"max_shipping_days\": 10\n    },\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"platinum\",\n            \"gross\": \"99\",\n            \"purity\": 750,\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"Modern platinum necklace with a heptagon design, perfect for weddings and festive occasions.\",\n        \"seo_title\": \"Geometric Platinum Necklace\",\n        \"seo_keywords\": [\n            \"platinum necklace\",\n            \"platinum jewellery\",\n            \"heptagon design\"\n        ],\n        \"per_gram\": \"1350\",\n        \"product_shipping\": {\n            \"min\": \"10\",\n            \"max\": \"20\"\n        },\n        \"metal_types\": [\n            \"platinum\"\n        ],\n        \"platinum_purity\": \"950\",\n        \"labourType\": \"individual\",\n        \"custom_wastage_from\": \"gross\",\n        \"manual_price\": 0,\n        \"image_colors\": [\n            {\n                \"id\": 25248,\n                \"color\": \"white\"\n            }\n        ],\n        \"diamond\": {\n            \"1\": {\n                \"diamond_type\": \"natural\",\n                \"diamond_quality\": \"VS/SI-GH\",\n                \"diamond_shape\": \"round\",\n                \"diamond_pieces\": \"11\",\n                \"diamond_weight\": \"0.300\",\n                \"diamond_rate\": \"108053\"\n            }\n        },\n        \"total_diamond_weight\": 0.3\n    },\n    \"stock_quantity\": 1,\n    \"manage_stock\": true,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Platinum Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"PLATINUM NECKLACE\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"950\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Engagement\",\n                \"Party Wear\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Gender\",\n            \"visible\": true,\n            \"options\": [\n                \"female\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"490a9d99-11b7-4703-8af0-392868836330","name":"Add platinium Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Geometric Platinum Necklace\",\n    \"sku\": \"V92541\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"instock\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Platinum Jewellery\"\n    ],\n    \"subcategory\": [\n        \"PT NECKLACE\"\n    ],\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"shipping\": {\n        \"required\": true,\n        \"taxable\": true,\n        \"min_shipping_days\": 5,\n        \"max_shipping_days\": 10\n    },\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"platinum\",\n            \"gross\": \"99\",\n            \"purity\": 750,\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"Modern platinum necklace with a heptagon design, perfect for weddings and festive occasions.\",\n        \"seo_title\": \"Geometric Platinum Necklace\",\n        \"seo_keywords\": [\n            \"platinum necklace\",\n            \"platinum jewellery\",\n            \"heptagon design\"\n        ],\n        \"per_gram\": \"1350\",\n        \"product_shipping\": {\n            \"min\": \"10\",\n            \"max\": \"20\"\n        },\n        \"metal_types\": [\n            \"platinum\"\n        ],\n        \"platinum_purity\": \"950\",\n        \"labourType\": \"individual\",\n        \"custom_wastage_from\": \"gross\",\n        \"manual_price\": 0,\n        \"image_colors\": [\n            {\n                \"id\": 25248,\n                \"color\": \"white\"\n            }\n        ],\n        \"diamond\": {\n            \"1\": {\n                \"diamond_type\": \"natural\",\n                \"diamond_quality\": \"VS/SI-GH\",\n                \"diamond_shape\": \"round\",\n                \"diamond_pieces\": \"11\",\n                \"diamond_weight\": \"0.300\",\n                \"diamond_rate\": \"108053\"\n            }\n        },\n        \"total_diamond_weight\": 0.3\n    },\n    \"stock_quantity\": 1,\n    \"manage_stock\": true,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": false,\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Platinum Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"PLATINUM NECKLACE\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"950\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Engagement\",\n                \"Party Wear\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Gender\",\n            \"visible\": true,\n            \"options\": [\n                \"female\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 7984,\n        \"name\": \"Geometric Platinum Necklace\",\n        \"slug\": \"geometric-platinum-necklace\",\n        \"permalink\": \"https://jwero.jwero.com/product/geometric-platinum-necklace/\",\n        \"date_created\": \"2025-04-19T17:52:20\",\n        \"date_created_gmt\": \"2025-04-19T12:22:20\",\n        \"date_modified\": \"2025-04-19T17:52:20\",\n        \"date_modified_gmt\": \"2025-04-19T12:22:20\",\n        \"type\": \"simple\",\n        \"status\": \"publish\",\n        \"featured\": false,\n        \"catalog_visibility\": \"visible\",\n        \"description\": \"This intricately crafted platinum necklace showcases a modern heptagon motif, symbolizing strength and unity. Made with 950 purity platinum and embellished with natural diamonds, it’s perfect for special occasions like engagements or evening soirées.\",\n        \"short_description\": \"Elegant platinum necklace with a unique heptagon design, ideal for weddings and celebrations.\",\n        \"sku\": \"V92541\",\n        \"price\": \"\",\n        \"regular_price\": \"\",\n        \"sale_price\": \"\",\n        \"date_on_sale_from\": null,\n        \"date_on_sale_from_gmt\": null,\n        \"date_on_sale_to\": null,\n        \"date_on_sale_to_gmt\": null,\n        \"on_sale\": false,\n        \"purchasable\": false,\n        \"total_sales\": 0,\n        \"virtual\": false,\n        \"downloadable\": false,\n        \"downloads\": [],\n        \"download_limit\": -1,\n        \"download_expiry\": -1,\n        \"external_url\": \"\",\n        \"button_text\": \"\",\n        \"tax_status\": \"taxable\",\n        \"tax_class\": \"\",\n        \"manage_stock\": true,\n        \"stock_quantity\": 1,\n        \"backorders\": \"no\",\n        \"backorders_allowed\": false,\n        \"backordered\": false,\n        \"low_stock_amount\": null,\n        \"sold_individually\": false,\n        \"weight\": \"\",\n        \"dimensions\": {\n            \"length\": \"\",\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"upsell_ids\": [],\n        \"cross_sell_ids\": [],\n        \"categories\": [\n            {\n                \"id\": 168,\n                \"name\": \"PLATINUM NECKLACE\",\n                \"slug\": \"platinum-necklace\"\n            }\n        ],\n        \"tags\": [],\n        \"images\": [\n            {\n                \"id\": 7415,\n                \"date_created\": \"2023-11-21T20:57:07\",\n                \"date_created_gmt\": \"2023-11-21T04:27:07\",\n                \"date_modified\": \"2024-04-03T23:17:04\",\n                \"date_modified_gmt\": \"2024-04-03T06:47:04\",\n                \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n                \"name\": \"96\",\n                \"alt\": \"\"\n            }\n        ],\n        \"attributes\": [\n            {\n                \"id\": 0,\n                \"name\": \"Ocassions\",\n                \"slug\": \"Ocassions\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"Engagement\",\n                    \"Party Wear\"\n                ]\n            },\n            {\n                \"id\": 0,\n                \"name\": \"Gender\",\n                \"slug\": \"Gender\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"female\"\n                ]\n            }\n        ],\n        \"meta_data\": {\n            \"seo_description\": \"Modern platinum necklace with a heptagon design, perfect for weddings and festive occasions.\",\n            \"seo_title\": \"Geometric Platinum Necklace\",\n            \"seo_keywords\": [\n                \"platinum necklace\",\n                \"platinum jewellery\",\n                \"heptagon design\"\n            ],\n            \"hallmarked\": \"\",\n            \"labour_from\": \"\",\n            \"wastage_from\": \"\",\n            \"making_from\": \"\",\n            \"minimum_labour\": \"\",\n            \"wastage_percent\": \"\",\n            \"per_gram\": \"1350\",\n            \"huid\": \"\",\n            \"metal_color\": \"\",\n            \"silver_purity\": \"\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"gross\",\n            \"extra_charges\": {},\n            \"total_diamond_weight\": \"0.3\",\n            \"total_gemstone_weight\": \"\",\n            \"disable_customization\": \"\",\n            \"diamond_from\": \"master\",\n            \"stone_from\": \"master\"\n        },\n        \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"purity\": \"\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"purity\": \"\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"gross\": \"10.5\",\n                \"purity\": 750,\n                \"net\": \"10.44\"\n            }\n        ],\n        \"stock_status\": \"instock\",\n        \"has_options\": false,\n        \"global_unique_id\": \"\",\n        \"permalink_template\": \"https://jwero.jwero.com/product/%pagename%/\",\n        \"generated_slug\": \"geometric-platinum-necklace\",\n        \"subcategory\": [\n            {\n                \"term_id\": 169,\n                \"name\": \"PT NECKLACE\",\n                \"slug\": \"pt-necklace\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 169,\n                \"taxonomy\": \"pa_product_subcat\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 1,\n                \"filter\": \"raw\"\n            }\n        ],\n        \"collections\": [\n            {\n                \"term_id\": 167,\n                \"name\": \"Platinum Jewellery\",\n                \"slug\": \"platinum-jewellery\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 167,\n                \"taxonomy\": \"jewellery_type\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 1,\n                \"filter\": \"raw\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f8a9e513-4943-4f80-bb13-dafec9331610"},{"name":"Add Diamond Product","id":"2ab94ffc-825d-4d2d-aeac-9330857c0ef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Aurora Diamond Ring\",\n    \"sku\": \"BB5927011\",\n    \"short_description\": \"A charming diamond ring designed for daily elegance and timeless appeal.\",\n    \"description\": \"Crafted in 18KT yellow gold, the Aurora ring features a cluster of brilliant-cut diamonds arranged in a unique spectacle style. Perfect for engagements or adding everyday sparkle, it combines delicate detailing with a contemporary silhouette.\",\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"onbackorder\",\n    \"status\": \"publish\",\n    \"category\": [\n        \"Ladies Ring\"\n    ],\n    \"collections\": [\n        \"Diamond Jewellery\"\n    ],\n    \"subcategory\": [\n        \"Diamond Ring\"\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"gold\",\n            \"gross\": \"99\",\n            \"net\": \"94.984\",\n            \"purity\": 750,\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"Spectacle diamond ring in 18KT yellow gold for engagement and daily wear.\",\n        \"seo_title\": \"Aurora Diamond Ring\",\n        \"seo_keywords\": [\n            \"diamond ring\",\n            \"18kt gold ring\",\n            \"spectacle ring\",\n            \"engagement ring\"\n        ],\n        \"per_gram\": \"850\",\n        \"product_shipping\": {\n            \"min\": \"10\",\n            \"max\": \"20\"\n        },\n        \"labourType\": \"individual\",\n        \"manual_price\": 0,\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"metal_color\": \"yellow\",\n        \"diamond_from\": \"individual\",\n        \"total_diamond_weight\": 0.2,\n        \"custom_wastage_from\": \"gross\",\n        \"image_colors\": [\n            {\n                \"id\": 27389,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27387,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27390,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27391,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27388,\n                \"color\": \"yellow\"\n            }\n        ]\n    },\n    \"manage_stock\": false,\n    \"stock_quantity\": null,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": true,\n    \"tag\": [],\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Diamond Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Ladies Ring\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"18 KT\"\n            ]\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Daily Wear\",\n                \"Engagement\",\n                \"Gifting\"\n            ]\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Gender\",\n            \"visible\": true,\n            \"options\": [\n                \"female\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"c124da14-7198-4dbf-9261-2c5999826571","name":"Add Diamond Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Aurora Diamond Ring\",\n    \"sku\": \"BB5927011\",\n    \"short_description\": \"A charming diamond ring designed for daily elegance and timeless appeal.\",\n    \"description\": \"Crafted in 18KT yellow gold, the Aurora ring features a cluster of brilliant-cut diamonds arranged in a unique spectacle style. Perfect for engagements or adding everyday sparkle, it combines delicate detailing with a contemporary silhouette.\",\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"onbackorder\",\n    \"status\": \"publish\",\n    \"category\": [\n        \"Ladies Ring\"\n    ],\n    \"collections\": [\n        \"Diamond Jewellery\"\n    ],\n    \"subcategory\": [\n        \"Diamond Ring\"\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"gold\",\n            \"gross\": \"99\",\n            \"net\": \"94.984\",\n            \"purity\": 750\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"Spectacle diamond ring in 18KT yellow gold for engagement and daily wear.\",\n        \"seo_title\": \"Aurora Diamond Ring\",\n        \"seo_keywords\": [\n            \"diamond ring\",\n            \"18kt gold ring\",\n            \"spectacle ring\",\n            \"engagement ring\"\n        ],\n        \"per_gram\": \"850\",\n        \"product_shipping\": {\n            \"min\": \"10\",\n            \"max\": \"20\"\n        },\n        \"labourType\": \"individual\",\n        \"manual_price\": 0,\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"metal_color\": \"yellow\",\n        \"diamond_from\": \"individual\",\n        \"total_diamond_weight\": 0.2,\n        \"custom_wastage_from\": \"gross\",\n        \"image_colors\": [\n            {\n                \"id\": 27389,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27387,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27390,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27391,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 27388,\n                \"color\": \"yellow\"\n            }\n        ]\n    },\n    \"manage_stock\": false,\n    \"stock_quantity\": null,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": true,\n    \"tag\": [],\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Diamond Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Ladies Ring\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"18 KT\"\n            ]\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Daily Wear\",\n                \"Engagement\",\n                \"Gifting\"\n            ]\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Gender\",\n            \"visible\": true,\n            \"options\": [\n                \"female\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 7985,\n        \"name\": \"Aurora Diamond Ring\",\n        \"slug\": \"aurora-diamond-ring\",\n        \"permalink\": \"https://jwero.jwero.com/product/aurora-diamond-ring/\",\n        \"date_created\": \"2025-04-19T18:31:30\",\n        \"date_created_gmt\": \"2025-04-19T13:01:30\",\n        \"date_modified\": \"2025-04-19T18:31:30\",\n        \"date_modified_gmt\": \"2025-04-19T13:01:30\",\n        \"type\": \"simple\",\n        \"status\": \"publish\",\n        \"featured\": false,\n        \"catalog_visibility\": \"visible\",\n        \"description\": \"Crafted in 18KT yellow gold, the Aurora ring features a cluster of brilliant-cut diamonds arranged in a unique spectacle style. Perfect for engagements or adding everyday sparkle, it combines delicate detailing with a contemporary silhouette.\",\n        \"short_description\": \"A charming diamond ring designed for daily elegance and timeless appeal.\",\n        \"sku\": \"BB59701\",\n        \"price\": \"\",\n        \"regular_price\": \"\",\n        \"sale_price\": \"\",\n        \"date_on_sale_from\": null,\n        \"date_on_sale_from_gmt\": null,\n        \"date_on_sale_to\": null,\n        \"date_on_sale_to_gmt\": null,\n        \"on_sale\": false,\n        \"purchasable\": false,\n        \"total_sales\": 0,\n        \"virtual\": false,\n        \"downloadable\": false,\n        \"downloads\": [],\n        \"download_limit\": -1,\n        \"download_expiry\": -1,\n        \"external_url\": \"\",\n        \"button_text\": \"\",\n        \"tax_status\": \"taxable\",\n        \"tax_class\": \"\",\n        \"manage_stock\": false,\n        \"stock_quantity\": null,\n        \"backorders\": \"no\",\n        \"backorders_allowed\": false,\n        \"backordered\": true,\n        \"low_stock_amount\": null,\n        \"sold_individually\": false,\n        \"weight\": \"\",\n        \"dimensions\": {\n            \"length\": \"\",\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"upsell_ids\": [],\n        \"cross_sell_ids\": [],\n        \"categories\": [\n            {\n                \"id\": 112,\n                \"name\": \"Ladies Ring\",\n                \"slug\": \"ladies-ring\"\n            }\n        ],\n        \"tags\": [],\n        \"images\": [\n            {\n                \"id\": 7415,\n                \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n                \"name\": \"96\"\n            }\n        ],\n        \"attributes\": [\n            {\n                \"id\": 5,\n                \"name\": \"Metal Purity\",\n                \"slug\": \"pa_metal-purity\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"18 KT\",\n                    \"Daily Wear\",\n                    \"Engagement\",\n                    \"Gifting\"\n                ]\n            },\n            {\n                \"id\": 4,\n                \"name\": \"Metal Weight\",\n                \"slug\": \"pa_metal-weight\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"2-5 g\",\n                    \"female\"\n                ]\n            }\n        ],\n        \"diamond_details\": [\n            {\n                \"diamond_type\": \"natural\",\n                \"diamond_quality\": \"VVS/VS-FG\",\n                \"diamond_shape\": \"round\",\n                \"diamond_sieve\": \"\",\n                \"diamond_cut\": \"excellent\",\n                \"diamond_pieces\": \"16\",\n                \"diamond_weight\": \"0.2\",\n                \"diamond_rate\": \"111082\",\n                \"diamond_lab\": \"\",\n                \"diamond_certified\": \"\",\n                \"diamond_certificate_id\": \"\"\n            }\n        ],\n       \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"gross\": \"4.5\",\n                \"purity\": 750,\n                \"net\": \"4.46\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"gross\": \"\",\n                \"purity\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"gross\": \"\",\n                \"purity\": \"\",\n                \"net\": \"\"\n            }\n        ],\n      \"meta_data\": {\n            \"seo_description\": \"Spectacle diamond ring in 18KT yellow gold for engagement and daily wear.\",\n            \"seo_title\": \"Aurora Diamond Ring\",\n            \"seo_keywords\": [\n                \"diamond ring\",\n                \"18kt gold ring\",\n                \"spectacle ring\",\n                \"engagement ring\"\n            ],\n            \"hallmarked\": \"\",\n            \"labour_from\": \"\",\n            \"wastage_from\": \"\",\n            \"making_from\": \"\",\n            \"minimum_labour\": \"\",\n            \"wastage_percent\": \"\",\n            \"per_gram\": \"850\",\n            \"huid\": \"\",\n            \"metal_color\": \"yellow\",\n            \"silver_purity\": \"\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"gross\",\n            \"extra_charges\": {},\n            \"total_diamond_weight\": \"0.2\",\n            \"total_gemstone_weight\": \"\",\n            \"disable_customization\": \"\",\n            \"diamond_from\": \"individual\",\n            \"stone_from\": \"master\"\n        },\n        \"stock_status\": \"onbackorder\",\n        \"has_options\": false,\n        \"global_unique_id\": \"\",\n        \"permalink_template\": \"https://jwero.jwero.com/product/%pagename%/\",\n        \"generated_slug\": \"aurora-diamond-ring\",\n        \"subcategory\": [\n            {\n                \"term_id\": 176,\n                \"name\": \"Diamond Ring\",\n                \"slug\": \"diamond-ring\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 176,\n                \"taxonomy\": \"pa_product_subcat\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 1,\n                \"filter\": \"raw\"\n            }\n        ],\n        \"collections\": [\n            {\n                \"term_id\": 95,\n                \"name\": \"Diamond Jewellery\",\n                \"slug\": \"diamond-jewellery\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 95,\n                \"taxonomy\": \"jewellery_type\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 6,\n                \"filter\": \"raw\"\n            }\n        ]\n    }\n}"}],"_postman_id":"2ab94ffc-825d-4d2d-aeac-9330857c0ef7"},{"name":"Add Gemstone Product","id":"93ffc3e0-4196-4e91-9a9f-85da24d78674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Vintage Gem Gold Cocktail Ring\",\n    \"sku\": \"RG-5122\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"onbackorder\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Antique Jewellery\",\n        \"Gemstone Jewellery\",\n        \"Gold Jewellery\"\n    ],\n    \"subcategory\": [\n        \"Ladies Ring\"\n    ],\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"gold\",\n            \"gross\": \"99\",\n            \"net\": \"94.984\"\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"This is product description\",\n        \"seo_title\": \"Earring - Gemstone Trial\",\n        \"gold_kt\": \"916\",\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"metal_color\": \"yellow\",\n        \"diamond_from\": \"master\",\n        \"colorstone_from\": \"individual\",\n        \"total_gemstone_weight\": \"6.35\",\n        \"product_shipping\": {\n            \"min\": \"10\",\n            \"max\": \"20\"\n        },\n        \"product_width\": \"30mm\",\n        \"product_height\": \"SZ-14\",\n        \"wastage_percent\": \"18\",\n        \"labourType\": \"individual\",\n        \"manual_price\": 0,\n        \"image_colors\": [\n            {\n                \"id\": 25880,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 25881,\n                \"color\": \"yellow\"\n            }\n        ]\n    },\n    \"manage_stock\": false,\n    \"stock_quantity\": null,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": true,\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Antique Jewellery\",\n                \"Gemstone Jewellery\",\n                \"Gold Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Ladies Ring\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"22 KT\"\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Metal Weight\",\n            \"visible\": true,\n            \"options\": [\n                \"5-10 g\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Daily Wear\",\n                \"Engagement\",\n                \"Gifting\",\n                \"Marriage\",\n                \"Office Wear\",\n                \"Party Wear\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Gender\",\n            \"visible\": true,\n            \"options\": [\n                \"female\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"95c64d30-16a6-42cd-acac-063d28de5932","name":"Add Gemstone Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Vintage Gem Gold Cocktail Ring\",\n    \"sku\": \"RG-5122\",\n    \"slug\": \"earring-gemstone-trial\",\n    \"description_full\": \"<p>This is product description</p>\",\n    \"description_short\": \"<p>This is product description</p>\",\n    \"date_on_sale_from\": null,\n    \"date_on_sale_to\": null,\n    \"images\": [\n        {\n            \"id\": 7415,\n            \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n            \"name\": \"96\"\n        }\n    ],\n    \"stock_status\": \"onbackorder\",\n    \"status\": \"publish\",\n    \"collections\": [\n        \"Antique Jewellery\",\n        \"Gemstone Jewellery\",\n        \"Gold Jewellery\"\n    ],\n    \"subcategory\": [\n        \"Ladies Ring\"\n    ],\n    \"categories\": [\n        {\n            \"id\": 2,\n            \"name\": \"Earrings\",\n            \"slug\": \"earrings\"\n        }\n    ],\n    \"tags\": [\n        {\n            \"id\": 78,\n            \"name\": \"Tops\",\n            \"slug\": \"tops\"\n        }\n    ],\n    \"metal_details\": [\n        {\n            \"metal_type\": \"gold\",\n            \"gross\": \"99\",\n            \"net\": \"94.984\",\n            \"purity\": 750\n        }\n    ],\n    \"diamond_details\": [\n        {\n            \"diamond_type\": \"natural\",\n            \"diamond_quality\": \"VVS-DE\",\n            \"diamond_shape\": \"princess\",\n            \"diamond_sieve\": \"1671627672_0ytnJ\",\n            \"diamond_cut\": \"excellent\",\n            \"diamond_pieces\": 12,\n            \"diamond_weight\": \"0.08\",\n            \"diamond_rate\": \"40000\",\n            \"diamond_lab\": \"GIA\",\n            \"diamond_certified\": \"no\",\n            \"diamond_certificate_id\": \"\"\n        }\n    ],\n    \"stone_details\": [\n        {\n            \"stone_quality\": \"precious\",\n            \"stone_type\": \"ruby\",\n            \"stone_shape\": \"square\",\n            \"stone_size\": \"7\",\n            \"stone_pieces\": 3,\n            \"stone_weight\": \"20\",\n            \"stone_rate\": \"7900\",\n            \"stone_color\": \"golden\"\n        }\n    ],\n    \"discounts\": [\n        {\n            \"discount_type\": \"making\",\n            \"value\": \"80000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"metal\",\n            \"value\": \"70000\",\n            \"discount_method\": \"amount\"\n        },\n        {\n            \"discount_type\": \"stone\",\n            \"value\": \"2300\",\n            \"discount_method\": \"amount\"\n        }\n    ],\n    \"upsell_ids\": [\n        68783,\n        68784\n    ],\n    \"cross_sell_ids\": [\n        68759\n    ],\n    \"meta_data\": {\n        \"seo_description\": \"This is product description\",\n        \"seo_title\": \"Earring - Gemstone Trial\",\n        \"metal_types\": [\n            \"gold\"\n        ],\n        \"metal_color\": \"yellow\",\n        \"diamond_from\": \"master\",\n        \"colorstone_from\": \"individual\",\n        \"total_gemstone_weight\": \"6.35\",\n        \"product_shipping\": {\n            \"min\": \"10\",\n            \"max\": \"20\"\n        },\n        \"product_width\": \"30mm\",\n        \"product_height\": \"SZ-14\",\n        \"wastage_percent\": \"18\",\n        \"labourType\": \"individual\",\n        \"manual_price\": 0,\n        \"image_colors\": [\n            {\n                \"id\": 25880,\n                \"color\": \"yellow\"\n            },\n            {\n                \"id\": 25881,\n                \"color\": \"yellow\"\n            }\n        ]\n    },\n    \"manage_stock\": false,\n    \"stock_quantity\": null,\n    \"backorders\": \"no\",\n    \"backorders_allowed\": false,\n    \"backordered\": true,\n    \"attributes\": [\n        {\n            \"id\": 15,\n            \"name\": \"Collections\",\n            \"visible\": true,\n            \"options\": [\n                \"Antique Jewellery\",\n                \"Gemstone Jewellery\",\n                \"Gold Jewellery\"\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Categories\",\n            \"visible\": true,\n            \"options\": [\n                \"Ladies Ring\"\n            ]\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Metal Purity\",\n            \"visible\": true,\n            \"options\": [\n                \"22 KT\"\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Metal Weight\",\n            \"visible\": true,\n            \"options\": [\n                \"5-10 g\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Ocassions\",\n            \"visible\": true,\n            \"options\": [\n                \"Daily Wear\",\n                \"Engagement\",\n                \"Gifting\",\n                \"Marriage\",\n                \"Office Wear\",\n                \"Party Wear\"\n            ]\n        },\n        {\n            \"id\": 0,\n            \"name\": \"Gender\",\n            \"visible\": true,\n            \"options\": [\n                \"female\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 7986,\n        \"name\": \"Vintage Gem Gold Cocktail Ring\",\n        \"slug\": \"vintage-gem-gold-cocktail-ring\",\n        \"permalink\": \"https://jwero.jwero.com/product/vintage-gem-gold-cocktail-ring/\",\n        \"date_created\": \"2025-04-19T18:39:11\",\n        \"date_created_gmt\": \"2025-04-19T13:09:11\",\n        \"date_modified\": \"2025-04-19T18:39:11\",\n        \"date_modified_gmt\": \"2025-04-19T13:09:11\",\n        \"type\": \"simple\",\n        \"status\": \"publish\",\n        \"featured\": false,\n        \"catalog_visibility\": \"visible\",\n        \"description\": \"Infused with a regal antique finish, this cocktail ring blends ornate 22KT gold craftsmanship with a striking round semi-precious bead at its center. Perfect for festive occasions, weddings, and gifting — a bold statement piece that speaks heritage and elegance.\",\n        \"short_description\": \"Vintage charm meets gemstone brilliance in this handcrafted 22KT cocktail ring.\",\n        \"sku\": \"RG-5122\",\n        \"price\": \"\",\n        \"regular_price\": \"\",\n        \"sale_price\": \"\",\n        \"date_on_sale_from\": null,\n        \"date_on_sale_from_gmt\": null,\n        \"date_on_sale_to\": null,\n        \"date_on_sale_to_gmt\": null,\n        \"on_sale\": false,\n        \"purchasable\": false,\n        \"total_sales\": 0,\n        \"virtual\": false,\n        \"downloadable\": false,\n        \"downloads\": [],\n        \"download_limit\": -1,\n        \"download_expiry\": -1,\n        \"external_url\": \"\",\n        \"button_text\": \"\",\n        \"tax_status\": \"taxable\",\n        \"tax_class\": \"\",\n        \"manage_stock\": false,\n        \"stock_quantity\": null,\n        \"backorders\": \"no\",\n        \"backorders_allowed\": false,\n        \"backordered\": true,\n        \"low_stock_amount\": null,\n        \"sold_individually\": false,\n        \"weight\": \"\",\n        \"dimensions\": {\n            \"length\": \"\",\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"upsell_ids\": [],\n        \"cross_sell_ids\": [],\n        \"categories\": [\n            {\n                \"id\": 112,\n                \"name\": \"Ladies Ring\",\n                \"slug\": \"ladies-ring\"\n            }\n        ],\n        \"tags\": [],\n        \"images\": [\n            {\n                \"id\": 7415,\n                \"date_created\": \"2023-11-21T20:57:07\",\n                \"date_created_gmt\": \"2023-11-21T04:27:07\",\n                \"date_modified\": \"2024-04-03T23:17:04\",\n                \"date_modified_gmt\": \"2024-04-03T06:47:04\",\n                \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/11/96.jpg\",\n                \"name\": \"96\",\n                \"alt\": \"\"\n            }\n        ],\n        \"attributes\": [\n            {\n                \"id\": 0,\n                \"name\": \"Ocassions\",\n                \"slug\": \"Ocassions\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"Daily Wear\",\n                    \"Engagement\",\n                    \"Gifting\",\n                    \"Marriage\",\n                    \"Office Wear\",\n                    \"Party Wear\"\n                ]\n            },\n            {\n                \"id\": 0,\n                \"name\": \"Gender\",\n                \"slug\": \"Gender\",\n                \"position\": 0,\n                \"visible\": true,\n                \"variation\": false,\n                \"options\": [\n                    \"female\"\n                ]\n            }\n        ],\n           \"meta_data\": {\n            \"seo_description\": \"\",\n            \"seo_title\": \"\",\n            \"seo_keywords\": [],\n            \"hallmarked\": \"\",\n            \"labour_from\": \"\",\n            \"wastage_from\": \"\",\n            \"making_from\": \"\",\n            \"minimum_labour\": \"\",\n            \"wastage_percent\": \"18\",\n            \"per_gram\": \"\",\n            \"huid\": \"\",\n            \"metal_color\": \"yellow\",\n            \"silver_purity\": \"\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"\",\n            \"extra_charges\": {},\n            \"total_diamond_weight\": \"\",\n            \"total_gemstone_weight\": \"6.35\",\n            \"disable_customization\": \"\",\n            \"diamond_from\": \"master\",\n            \"stone_from\": \"individual\"\n        },\n            \"diamond_details\": [\n                {\n                    \"diamond_type\": \"natural\",\n                    \"diamond_quality\": \"VVS-DE\",\n                    \"diamond_shape\": \"princess\",\n                    \"diamond_sieve\": \"1671627672_0ytnJ\",\n                    \"diamond_cut\": \"excellent\",\n                    \"diamond_pieces\": 12,\n                    \"diamond_weight\": \"0.08\",\n                    \"diamond_rate\": \"40000\",\n                    \"diamond_lab\": \"GIA\",\n                    \"diamond_certified\": \"no\",\n                    \"diamond_certificate_id\": \"\"\n                }\n            ],\n            \"stone_details\": [\n                {\n                    \"stone_quality\": \"precious\",\n                    \"stone_type\": \"ruby\",\n                    \"stone_shape\": \"square\",\n                    \"stone_size\": \"7\",\n                    \"stone_pieces\": 3,\n                    \"stone_weight\": \"20\",\n                    \"stone_rate\": \"7900\",\n                    \"stone_color\": \"golden\"\n                }\n            ],\n        \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"gross\": \"9.180\",\n                \"purity\": 750,\n                \"net\": \"7.91\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"gross\": \"\",\n                \"purity\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"gross\": \"\",\n                \"purity\": \"\",\n                \"net\": \"\"\n            }\n        ],\n        \"stock_status\": \"onbackorder\",\n        \"has_options\": false,\n        \"global_unique_id\": \"\",\n        \"permalink_template\": \"https://jwero.jwero.com/product/%pagename%/\",\n        \"generated_slug\": \"vintage-gem-gold-cocktail-ring\",\n        \"subcategory\": [\n            {\n                \"term_id\": 178,\n                \"name\": \"Ladies Ring\",\n                \"slug\": \"ladies-ring\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 178,\n                \"taxonomy\": \"pa_product_subcat\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 1,\n                \"filter\": \"raw\"\n            }\n        ],\n        \"collections\": [\n            {\n                \"term_id\": 177,\n                \"name\": \"Antique Jewellery\",\n                \"slug\": \"antique-jewellery\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 177,\n                \"taxonomy\": \"jewellery_type\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 1,\n                \"filter\": \"raw\"\n            },\n            {\n                \"term_id\": 156,\n                \"name\": \"Gemstone Jewellery\",\n                \"slug\": \"gemstone-jewellery\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 156,\n                \"taxonomy\": \"jewellery_type\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 1,\n                \"filter\": \"raw\"\n            },\n            {\n                \"term_id\": 18,\n                \"name\": \"Gold Jewellery\",\n                \"slug\": \"gold-jewellery\",\n                \"term_group\": 0,\n                \"term_taxonomy_id\": 18,\n                \"taxonomy\": \"jewellery_type\",\n                \"description\": \"\",\n                \"parent\": 0,\n                \"count\": 44,\n                \"filter\": \"raw\"\n            }\n        ]\n    }\n}"}],"_postman_id":"93ffc3e0-4196-4e91-9a9f-85da24d78674"}],"id":"bdf14b40-3e97-48ca-8c44-df9d7885768a","_postman_id":"bdf14b40-3e97-48ca-8c44-df9d7885768a","description":""},{"name":"Get Products","id":"e6bbbaf4-e05a-4e17-975b-a45fd59dbcd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/v1/products","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Possible Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Product ID, e.g., \"82591\" (unique identifier for each product)</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the product, e.g., \"Earring - Gemstone Trial\", \"Gold Earring - DK93\"</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Current status of the product, e.g., \"draft\", \"publish\" (defines if the product is visible)</td>\n</tr>\n<tr>\n<td>description_full</td>\n<td>Full description of the product, typically in HTML format, e.g., \"Diamond Jewellery - 18 KT Gold (1.210 gram) with diamonds (0.07 cts) - KP01\"</td>\n</tr>\n<tr>\n<td>description_short</td>\n<td>Short description of the product, typically used for summaries. Empty if not provided.</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>Stock Keeping Unit, e.g., \"12333234\" or \"DK93\" (unique identifier for inventory management)</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Price of the product, e.g., \"166550\" or \"1200\" (the amount the product sells for)</td>\n</tr>\n<tr>\n<td>regular_price</td>\n<td>Regular price without discounts, e.g., \"166550\" (same as price if no sale)</td>\n</tr>\n<tr>\n<td>sale_price</td>\n<td>Sale price if applicable. Empty string if no sale price is applied.</td>\n</tr>\n<tr>\n<td>backorders_status</td>\n<td>Indicates if backorders are allowed, e.g., \"no\" (backorders are not allowed)</td>\n</tr>\n<tr>\n<td>backorders_allowed</td>\n<td>Boolean flag to indicate if backorders are allowed, e.g., true or false</td>\n</tr>\n<tr>\n<td>backordered</td>\n<td>Boolean flag to indicate if the product is currently on backorder, e.g., true or false</td>\n</tr>\n<tr>\n<td>dimensions</td>\n<td>Dimensions of the product (length, width, height). Empty strings if not provided.</td>\n</tr>\n<tr>\n<td>shipping</td>\n<td>Shipping details including <code>required</code>, <code>taxable</code>, <code>min_shipping_days</code>, and <code>max_shipping_days</code>. Example: \"required\" (true/false), \"taxable\" (true/false), \"min_shipping_days\" (e.g., \"5\"), \"max_shipping_days\" (e.g., \"10\")</td>\n</tr>\n<tr>\n<td>stock_status</td>\n<td>Stock availability, e.g., \"onbackorder\" (product is on backorder)</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>Categories the product belongs to. Example: \"Earrings\" (id: 2, slug: \"earrings\")</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Tags associated with the product. Example: \"Tops\" (id: 78, slug: \"tops\")</td>\n</tr>\n<tr>\n<td>images</td>\n<td>Image details of the product. Includes image <code>id</code>, <code>src</code> (URL), and <code>name</code>. Example: src: \"<a href=\"https://tiarabytj.com/...jpg\">https://tiarabytj.com/...jpg\"</a></td>\n</tr>\n<tr>\n<td>meta_data</td>\n<td>Meta data related to the product, including SEO information and custom attributes. Example: <code>seo_description</code>, <code>seo_title</code>, <code>hallmarked</code>, <code>labour_from</code>, <code>wastage_from</code>, etc.</td>\n</tr>\n<tr>\n<td>metal_details</td>\n<td>Metal types and their weights (gross, net). Example: \"gold\", \"silver\", \"platinum\" with gross and net values.</td>\n</tr>\n<tr>\n<td>diamond_details</td>\n<td>Diamond details such as <code>diamond_type</code>, <code>diamond_quality</code>, <code>diamond_shape</code>, <code>diamond_weight</code>, etc. Example: <code>diamond_type: \"natural\"</code>, <code>diamond_shape: \"princess\"</code>, <code>diamond_weight: \"0.08\"</code></td>\n</tr>\n<tr>\n<td>stone_details</td>\n<td>Stone details including <code>stone_quality</code>, <code>stone_type</code>, <code>stone_shape</code>, etc. Example: <code>stone_quality: \"precious\"</code>, <code>stone_type: \"ruby\"</code>, <code>stone_weight: \"20\"</code></td>\n</tr>\n<tr>\n<td>discounts</td>\n<td>Discounts applied to the product. Includes <code>discount_type</code>, <code>value</code>, and <code>discount_method</code>. Example: <code>discount_type: \"making\"</code>, <code>value: \"80000\"</code>, <code>discount_method: \"amount\"</code></td>\n</tr>\n<tr>\n<td>upsell_ids</td>\n<td>IDs of upsell products, e.g., <code>[68783, 68784]</code> (IDs of related products to recommend for upselling)</td>\n</tr>\n<tr>\n<td>cross_sell_ids</td>\n<td>IDs of cross-sell products, e.g., <code>[68759]</code> (IDs of products recommended during checkout for cross-selling)</td>\n</tr>\n<tr>\n<td>meta_data.seo_description</td>\n<td>SEO description for the product. Example: \"This is product description\"</td>\n</tr>\n<tr>\n<td>meta_data.seo_title</td>\n<td>SEO title for the product. Example: \"Earring - Gemstone Trial\"</td>\n</tr>\n<tr>\n<td>meta_data.seo_keywords</td>\n<td>SEO keywords for the product. Example: [] (an empty array if no keywords are added)</td>\n</tr>\n<tr>\n<td>meta_data.hallmarked</td>\n<td>Indicates if the product is hallmarked. Example: \"1\" (hallmarked) or \"\" (not hallmarked)</td>\n</tr>\n<tr>\n<td>meta_data.labour_from</td>\n<td>The method of calculating labour charges. Possible values: \"gross\" (labour charges based on gross weight)</td>\n</tr>\n<tr>\n<td>meta_data.wastage_from</td>\n<td>The method of calculating wastage. Possible values: \"weight\" (based on weight)</td>\n</tr>\n<tr>\n<td>meta_data.making_from</td>\n<td>The method of calculating making charges. Possible values: \"labour\" (based on labour)</td>\n</tr>\n<tr>\n<td>meta_data.minimum_labour</td>\n<td>The minimum labour charge applicable. Example: \"499\" (the minimum labour cost)</td>\n</tr>\n<tr>\n<td>meta_data.wastage_percent</td>\n<td>The percentage of wastage applicable. Example: \"10\" (10% wastage)</td>\n</tr>\n<tr>\n<td>meta_data.per_gram</td>\n<td>The rate per gram of metal. Example: \"399\" (₹399 per gram)</td>\n</tr>\n<tr>\n<td>meta_data.huid</td>\n<td>A list of unique Hallmarking Unique Identification (HUID) codes. Example: <code>[\"324234\"]</code></td>\n</tr>\n<tr>\n<td>meta_data.metal_color</td>\n<td>The color of the metal used in the product. Example: \"yellow\" (yellow gold)</td>\n</tr>\n<tr>\n<td>meta_data.gold_kt</td>\n<td>The karat of the gold used in the product. Example: \"916\" (22KT)</td>\n</tr>\n<tr>\n<td>meta_data.silver_purity</td>\n<td>The purity of the silver used in the product. Example: \"995\" (Fine Silver)</td>\n</tr>\n<tr>\n<td>meta_data.platinum_purity</td>\n<td>The purity of the platinum used in the product. Example: \"\" (empty if no platinum purity is applicable)</td>\n</tr>\n<tr>\n<td>meta_data.manual_price</td>\n<td>Whether the price is manually set. Example: \"0\" (manually set to 0)</td>\n</tr>\n<tr>\n<td>meta_data.custom_wastage_from</td>\n<td>Custom wastage calculation method. Example: \"gross\" (calculated based on gross weight)</td>\n</tr>\n<tr>\n<td>meta_data.extra_charges</td>\n<td>Additional charges applicable to the product. Example: <code>extra_charge_label: \"certificate\", extra_charge_value: \"999\"</code> (₹999 charge for certification)</td>\n</tr>\n<tr>\n<td>meta_data.total_diamond_weight</td>\n<td>The total weight of diamonds in the product. Example: \"0.08\" (0.08 carats)</td>\n</tr>\n<tr>\n<td>meta_data.total_gemstone_weight</td>\n<td>The total weight of gemstones in the product. Example: \"20\" (20 carats)</td>\n</tr>\n<tr>\n<td>meta_data.disable_customization</td>\n<td>Indicates if customization is disabled for the product. Possible values: \"no\" (customization is allowed), \"yes\" (customization is disabled)</td>\n</tr>\n<tr>\n<td>meta_data.diamond_from</td>\n<td>Source of diamonds used in the product. Example: \"master\" (sourced from the master data)</td>\n</tr>\n<tr>\n<td>meta_data.stone_from</td>\n<td>Source of gemstones used in the product. Example: \"master\" (sourced from the master data)</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","products"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"dd8f4f94-464a-4f80-9ef5-e4203ac6513c","name":"Get Products","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.jwero.com/v1/products"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 82591,\n            \"name\": \"Earring - Gemstone Trial\",\n            \"status\": \"draft\",\n            \"description_full\": \"<p>This is product description</p>\\n\",\n            \"description_short\": \"\",\n            \"sku\": \"12333234\",\n            \"price\": \"166550\",\n            \"regular_price\": \"166550\",\n            \"sale_price\": \"\",\n            \"backorders_status\": \"no\",\n            \"backorders_allowed\": false,\n            \"backordered\": true,\n            \"dimensions\": {\n                \"length\": \"\",\n                \"width\": \"\",\n                \"height\": \"\"\n            },\n            \"shipping\": {\n                \"required\": true,\n                \"taxable\": true,\n                \"min_shipping_days\": 5,\n                \"max_shipping_days\": 10\n            },\n            \"stock_status\": \"onbackorder\",\n            \"categories\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Earrings\",\n                    \"slug\": \"earrings\"\n                }\n            ],\n            \"tags\": [\n                {\n                    \"id\": 78,\n                    \"name\": \"Tops\",\n                    \"slug\": \"tops\"\n                }\n            ],\n            \"images\": [\n                {\n                    \"id\": 81516,\n                    \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                    \"name\": \"NEw-Collectionn-4\"\n                }\n            ],\n            \"meta_data\": {\n                \"seo_description\": \"This is product description\",\n                \"seo_title\": \"Earring - Gemstone Trial\",\n                \"seo_keywords\": [],\n                \"hallmarked\": \"1\",\n                \"labour_from\": \"gross\",\n                \"wastage_from\": \"weight\",\n                \"making_from\": \"labour\",\n                \"minimum_labour\": \"499\",\n                \"wastage_percent\": \"10\",\n                \"per_gram\": \"399\",\n                \"huid\": [\n                    \"324234\"\n                ],\n                \"metal_color\": \"yellow\",\n                \"gold_kt\": \"916\",\n                \"silver_purity\": \"995\",\n                \"platinum_purity\": \"\",\n                \"manual_price\": \"0\",\n                \"custom_wastage_from\": \"gross\",\n                \"extra_charges\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"999\"\n                },\n                \"total_diamond_weight\": \"0.08\",\n                \"total_gemstone_weight\": \"20\",\n                \"disable_customization\": \"no\",\n                \"diamond_from\": \"master\",\n                \"stone_from\": \"master\"\n            },\n            \"metal_details\": [\n                {\n                    \"metal_type\": \"gold\",\n                    \"gross\": \"\",\n                    \"net\": \"\"\n                },\n                {\n                    \"metal_type\": \"silver\",\n                    \"gross\": \"\",\n                    \"net\": \"\"\n                },\n                {\n                    \"metal_type\": \"platinum\",\n                    \"gross\": \"\",\n                    \"net\": \"\"\n                }\n            ],\n            \"diamond_details\": [\n                {\n                    \"diamond_type\": \"natural\",\n                    \"diamond_quality\": \"VVS-DE\",\n                    \"diamond_shape\": \"princess\",\n                    \"diamond_sieve\": \"1671627672_0ytnJ\",\n                    \"diamond_cut\": \"excellent\",\n                    \"diamond_pieces\": 12,\n                    \"diamond_weight\": \"0.08\",\n                    \"diamond_rate\": \"40000\",\n                    \"diamond_lab\": \"\",\n                    \"diamond_certified\": \"\",\n                    \"diamond_certificate_id\": \"\"\n                }\n            ],\n            \"stone_details\": [\n                {\n                    \"stone_quality\": \"precious\",\n                    \"stone_type\": \"ruby\",\n                    \"stone_shape\": \"square\",\n                    \"stone_size\": \"7\",\n                    \"stone_pieces\": 3,\n                    \"stone_weight\": \"20\",\n                    \"stone_rate\": \"7900\",\n                    \"stone_color\": \"golden\"\n                }\n            ],\n            \"discounts\": [\n                {\n                    \"discount_type\": \"making\",\n                    \"value\": \"80000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"metal\",\n                    \"value\": \"70000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"stone\",\n                    \"value\": \"2300\",\n                    \"discount_method\": \"amount\"\n                }\n            ],\n            \"upsell_ids\": [\n                68783,\n                68784\n            ],\n            \"cross_sell_ids\": [\n                68759\n            ]\n        },\n        {\n            \"id\": 82586,\n            \"name\": \"Gold Earring - DK93\",\n            \"status\": \"publish\",\n            \"description_full\": \"\",\n            \"description_short\": \"\",\n            \"sku\": \"DK93\",\n            \"price\": \"1200\",\n            \"regular_price\": \"1200\",\n            \"sale_price\": \"\",\n            \"backorders_status\": \"no\",\n            \"backorders_allowed\": false,\n            \"backordered\": true,\n            \"dimensions\": {\n                \"length\": \"\",\n                \"width\": \"\",\n                \"height\": \"\"\n            },\n            \"shipping\": {\n                \"required\": true,\n                \"taxable\": true,\n                \"min_shipping_days\": \"5\",\n                \"max_shipping_days\": \"10\"\n            },\n            \"stock_status\": \"onbackorder\",\n            \"categories\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Earrings\",\n                    \"slug\": \"earrings\"\n                }\n            ],\n            \"tags\": [\n                {\n                    \"id\": 77,\n                    \"name\": \"Heart\",\n                    \"slug\": \"heart\"\n                }\n            ],\n            \"images\": [],\n            \"meta_data\": {\n                \"seo_description\": \"\",\n                \"seo_title\": \"\",\n                \"seo_keywords\": [],\n                \"hallmarked\": \"\",\n                \"labour_from\": \"gross\",\n                \"wastage_from\": \"weight\",\n                \"making_from\": \"labour\",\n                \"minimum_labour\": \"499\",\n                \"wastage_percent\": \"10\",\n                \"per_gram\": \"399\",\n                \"huid\": [],\n                \"metal_color\": \"yellow\",\n                \"gold_kt\": \"916\",\n                \"silver_purity\": \"995\",\n                \"platinum_purity\": \"\",\n                \"manual_price\": \"1200\",\n                \"custom_wastage_from\": \"gross\",\n                \"extra_charges\": {\n                    \"1\": {\n                        \"extra_charge_label\": \"hallmark\",\n                        \"extra_charge_value\": \"999\"\n                    }\n                },\n                \"total_diamond_weight\": \"\",\n                \"total_gemstone_weight\": \"\",\n                \"disable_customization\": \"no\",\n                \"diamond_from\": \"master\",\n                \"stone_from\": \"master\"\n            },\n            \"metal_details\": [\n                {\n                    \"metal_type\": \"gold\",\n                    \"gross\": \"2.1\",\n                    \"net\": \"2.1\"\n                },\n                {\n                    \"metal_type\": \"silver\",\n                    \"gross\": \"\",\n                    \"net\": \"\"\n                },\n                {\n                    \"metal_type\": \"platinum\",\n                    \"gross\": \"\",\n                    \"net\": \"\"\n                }\n            ],\n            \"diamond_details\": [],\n            \"stone_details\": [],\n            \"discounts\": [\n                {\n                    \"discount_type\": \"making\",\n                    \"value\": \"\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"metal\",\n                    \"value\": \"\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"stone\",\n                    \"value\": \"\",\n                    \"discount_method\": \"amount\"\n                }\n            ],\n            \"upsell_ids\": [],\n            \"cross_sell_ids\": []\n        }\n    ]\n}"}],"_postman_id":"e6bbbaf4-e05a-4e17-975b-a45fd59dbcd4"},{"name":"Update Product","id":"cafd89a4-a450-41a8-affd-5bdfe5bf8f60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": 81594,\n  \"name\": \"Earring - Gemstone Trial\",\n  \"slug\": \"earring-gemstone-trial\",\n  \"permalink\": \"https://tiarabytj.com/?post_type=product&p=81594\",\n  \"date_created\": \"2024-05-04T17:05:02\",\n  \"date_modified\": \"2024-08-22T20:03:38\",\n  \"status\": \"draft\",\n  \"catalog_visibility\": \"visible\",\n  \"description_full\": \"<p>This is product description</p>\",\n  \"description_short\": \"<p>This is product description</p>\",\n  \"sku\": \"12334\",\n  \"price\": \"808396\",\n  \"regular_price\": \"960696\",\n  \"sale_price\": \"808396\",\n  \"date_on_sale_from\": null,\n  \"date_on_sale_to\": null,\n  \"backorders_allowed\": false,\n  \"backorders_status\": \"no\",\n  \"backordered\": true,\n  \"sold_individually\": false,\n  \"dimensions\": {\n    \"length\": \"324\",\n    \"width\": \"234\",\n    \"height\": \"435\"\n  },\n  \"shipping\": {\n    \"required\": true,\n    \"taxable\": true,\n    \"min_shipping_days\": 5,\n    \"max_shipping_days\": 10\n  },\n  \"stock_status\": \"onbackorder\",\n  \"categories\": [\n    {\n      \"id\": 2,\n      \"name\": \"Earrings\",\n      \"slug\": \"earrings\"\n    }\n  ],\n  \"collections\": [\n    {\n      \"term_id\": 12,\n      \"name\": \"Diamond Jewellery\",\n      \"slug\": \"diamond-jewellery\"\n    },\n    {\n      \"term_id\": 15,\n      \"name\": \"Gemstone Jewellery\",\n      \"slug\": \"gemstone-jewellery\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 78,\n      \"name\": \"Tops\",\n      \"slug\": \"tops\"\n    }\n  ],\n  \"images\": [\n    {\n      \"id\": 81516,\n      \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\", \n      \"name\": \"NEw-Collectionn-4\"\n    }\n  ],\n  \"meta_data\": {\n    \"seo_description\": \"This is product description\",\n    \"seo_title\": \"Earring - Gemstone Trial\",\n    \"seo_keywords\": [],\n    \"hallmarked\": \"1\",\n    \"labour_from\": \"gross\",\n    \"wastage_from\": \"weight\",\n    \"making_from\": \"labour\",\n    \"minimum_labour\": \"499\",\n    \"wastage_percent\": \"10\",\n    \"per_gram\": \"399\",\n    \"huid\": [\"324234\"],\n    \"metal_color\": \"yellow\",\n    \"gold_kt\": \"916\",\n    \"silver_purity\": \"995\",\n    \"platinum_purity\": \"\",\n    \"manual_price\": \"0\",\n    \"custom_wastage_from\": \"gross\",\n    \"extra_charges\": {\n      \"extra_charge_label\": \"certificate\",\n      \"extra_charge_value\": \"999\"\n    },\n    \"total_diamond_weight\": \"0.08\",\n    \"total_gemstone_weight\": \"20\",\n    \"disable_customization\": \"no\",\n    \"diamond_from\": \"master\",\n    \"stone_from\": \"master\"\n  },\n  \"metal_details\": [\n    {\n      \"metal_type\": \"gold\",\n      \"gross\": \"99\",\n      \"net\": \"94.984\"\n    }\n  ],\n  \"diamond_details\": [\n    {\n      \"diamond_type\": \"natural\",\n      \"diamond_quality\": \"VVS-DE\",\n      \"diamond_shape\": \"princess\",\n      \"diamond_sieve\": \"1671627672_0ytnJ\",\n      \"diamond_cut\": \"excellent\",\n      \"diamond_pieces\": 12,\n      \"diamond_weight\": \"0.08\",\n      \"diamond_rate\": \"40000\",\n      \"diamond_lab\": \"GIA\",\n      \"diamond_certified\": \"no\",\n      \"diamond_certificate_id\": \"\"\n    }\n  ],\n  \"stone_details\": [\n    {\n      \"stone_quality\": \"precious\",\n      \"stone_type\": \"ruby\",\n      \"stone_shape\": \"square\",\n      \"stone_size\": \"7\",\n      \"stone_pieces\": 3,\n      \"stone_weight\": \"20\",\n      \"stone_rate\": \"7900\",\n      \"stone_color\": \"golden\"\n    }\n  ],\n  \"discounts\": [\n    {\n      \"discount_type\": \"making\",\n      \"value\": \"80000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"metal\",\n      \"value\": \"70000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"stone\",\n      \"value\": \"2300\",\n      \"discount_method\": \"amount\"\n    }\n  ],\n  \"upsell_ids\": [68783, 68784],\n  \"cross_sell_ids\": [68759]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products/81594","urlObject":{"protocol":"https","path":["v1","products","81594"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"d8b11a05-d1e3-4a9b-8b57-5457166afefc","name":"Update Product","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": 81594,\n  \"name\": \"Earring - Gemstone Trial\",\n  \"slug\": \"earring-gemstone-trial\",\n  \"permalink\": \"https://tiarabytj.com/?post_type=product&p=81594\",\n  \"date_created\": \"2024-05-04T17:05:02\",\n  \"date_modified\": \"2024-08-22T20:03:38\",\n  \"status\": \"draft\",\n  \"catalog_visibility\": \"visible\",\n  \"description_full\": \"<p>This is product description</p>\",\n  \"description_short\": \"<p>This is product description</p>\",\n  \"sku\": \"12334\",\n  \"price\": \"808396\",\n  \"regular_price\": \"960696\",\n  \"sale_price\": \"808396\",\n  \"date_on_sale_from\": null,\n  \"date_on_sale_to\": null,\n  \"backorders_allowed\": false,\n  \"backorders_status\": \"no\",\n  \"backordered\": true,\n  \"sold_individually\": false,\n  \"dimensions\": {\n    \"length\": \"324\",\n    \"width\": \"234\",\n    \"height\": \"435\"\n  },\n  \"shipping\": {\n    \"required\": true,\n    \"taxable\": true,\n    \"min_shipping_days\": 5,\n    \"max_shipping_days\": 10\n  },\n  \"stock_status\": \"onbackorder\",\n  \"categories\": [\n    {\n      \"id\": 2,\n      \"name\": \"Earrings\",\n      \"slug\": \"earrings\"\n    }\n  ],\n  \"collections\": [\n    {\n      \"term_id\": 12,\n      \"name\": \"Diamond Jewellery\",\n      \"slug\": \"diamond-jewellery\"\n    },\n    {\n      \"term_id\": 15,\n      \"name\": \"Gemstone Jewellery\",\n      \"slug\": \"gemstone-jewellery\"\n    }\n  ],\n  \"tags\": [\n    {\n      \"id\": 78,\n      \"name\": \"Tops\",\n      \"slug\": \"tops\"\n    }\n  ],\n  \"images\": [\n    {\n      \"id\": 81516,\n      \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\", \n      \"name\": \"NEw-Collectionn-4\"\n    }\n  ],\n  \"meta_data\": {\n    \"seo_description\": \"This is product description\",\n    \"seo_title\": \"Earring - Gemstone Trial\",\n    \"seo_keywords\": [],\n    \"hallmarked\": \"1\",\n    \"labour_from\": \"gross\",\n    \"wastage_from\": \"weight\",\n    \"making_from\": \"labour\",\n    \"minimum_labour\": \"499\",\n    \"wastage_percent\": \"10\",\n    \"per_gram\": \"399\",\n    \"huid\": [\"324234\"],\n    \"metal_color\": \"yellow\",\n    \"gold_kt\": \"916\",\n    \"silver_purity\": \"995\",\n    \"platinum_purity\": \"\",\n    \"manual_price\": \"0\",\n    \"custom_wastage_from\": \"gross\",\n    \"extra_charges\": {\n      \"extra_charge_label\": \"certificate\",\n      \"extra_charge_value\": \"999\"\n    },\n    \"total_diamond_weight\": \"0.08\",\n    \"total_gemstone_weight\": \"20\",\n    \"disable_customization\": \"no\",\n    \"diamond_from\": \"master\",\n    \"stone_from\": \"master\"\n  },\n  \"metal_details\": [\n    {\n      \"metal_type\": \"gold\",\n      \"gross\": \"99\",\n      \"net\": \"94.984\"\n    }\n  ],\n  \"diamond_details\": [\n    {\n      \"diamond_type\": \"natural\",\n      \"diamond_quality\": \"VVS-DE\",\n      \"diamond_shape\": \"princess\",\n      \"diamond_sieve\": \"1671627672_0ytnJ\",\n      \"diamond_cut\": \"excellent\",\n      \"diamond_pieces\": 12,\n      \"diamond_weight\": \"0.08\",\n      \"diamond_rate\": \"40000\",\n      \"diamond_lab\": \"GIA\",\n      \"diamond_certified\": \"no\",\n      \"diamond_certificate_id\": \"\"\n    }\n  ],\n  \"stone_details\": [\n    {\n      \"stone_quality\": \"precious\",\n      \"stone_type\": \"ruby\",\n      \"stone_shape\": \"square\",\n      \"stone_size\": \"7\",\n      \"stone_pieces\": 3,\n      \"stone_weight\": \"20\",\n      \"stone_rate\": \"7900\",\n      \"stone_color\": \"golden\"\n    }\n  ],\n  \"discounts\": [\n    {\n      \"discount_type\": \"making\",\n      \"value\": \"80000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"metal\",\n      \"value\": \"70000\",\n      \"discount_method\": \"amount\"\n    },\n    {\n      \"discount_type\": \"stone\",\n      \"value\": \"2300\",\n      \"discount_method\": \"amount\"\n    }\n  ],\n  \"upsell_ids\": [68783, 68784],\n  \"cross_sell_ids\": [68759]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products/81594"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 81594,\n        \"name\": \"Earring - Gemstone Trial\",\n        \"status\": \"draft\",\n        \"description_full\": \"<p>This is product description</p>\",\n        \"description_short\": \"<p>This is product description</p>\",\n        \"sku\": \"12334\",\n        \"price\": \"166550\",\n        \"regular_price\": \"166550\",\n        \"sale_price\": \"\",\n        \"backorders_status\": \"no\",\n        \"backorders_allowed\": false,\n        \"backordered\": true,\n        \"dimensions\": {\n            \"length\": \"324\",\n            \"width\": \"234\",\n            \"height\": \"435\"\n        },\n        \"shipping\": {\n            \"required\": true,\n            \"taxable\": true,\n            \"min_shipping_days\": 5,\n            \"max_shipping_days\": 10\n        },\n        \"stock_status\": \"onbackorder\",\n        \"categories\": [\n            {\n                \"id\": 2,\n                \"name\": \"Earrings\",\n                \"slug\": \"earrings\"\n            }\n        ],\n        \"tags\": [\n            {\n                \"id\": 78,\n                \"name\": \"Tops\",\n                \"slug\": \"tops\"\n            }\n        ],\n        \"images\": [\n            {\n                \"id\": 81516,\n                \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                \"name\": \"NEw-Collectionn-4\"\n            }\n        ],\n        \"meta_data\": {\n            \"seo_description\": \"This is product description\",\n            \"seo_title\": \"Earring - Gemstone Trial\",\n            \"seo_keywords\": [],\n            \"hallmarked\": \"1\",\n            \"labour_from\": \"gross\",\n            \"wastage_from\": \"weight\",\n            \"making_from\": \"labour\",\n            \"minimum_labour\": \"499\",\n            \"wastage_percent\": \"10\",\n            \"per_gram\": \"399\",\n            \"huid\": [\n                \"324234\"\n            ],\n            \"metal_color\": \"yellow\",\n            \"gold_kt\": \"916\",\n            \"silver_purity\": \"995\",\n            \"platinum_purity\": \"\",\n            \"manual_price\": \"0\",\n            \"custom_wastage_from\": \"gross\",\n            \"extra_charges\": {\n                \"extra_charge_label\": \"certificate\",\n                \"extra_charge_value\": \"999\"\n            },\n            \"total_diamond_weight\": \"0.08\",\n            \"total_gemstone_weight\": \"20\",\n            \"disable_customization\": \"no\",\n            \"diamond_from\": \"master\",\n            \"stone_from\": \"master\"\n        },\n        \"metal_details\": [\n            {\n                \"metal_type\": \"gold\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"silver\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            },\n            {\n                \"metal_type\": \"platinum\",\n                \"gross\": \"\",\n                \"net\": \"\"\n            }\n        ],\n        \"diamond_details\": [\n            {\n                \"diamond_type\": \"natural\",\n                \"diamond_quality\": \"VVS-DE\",\n                \"diamond_shape\": \"princess\",\n                \"diamond_sieve\": \"1671627672_0ytnJ\",\n                \"diamond_cut\": \"excellent\",\n                \"diamond_pieces\": 12,\n                \"diamond_weight\": \"0.08\",\n                \"diamond_rate\": \"40000\",\n                \"diamond_lab\": \"\",\n                \"diamond_certified\": \"\",\n                \"diamond_certificate_id\": \"\"\n            }\n        ],\n        \"stone_details\": [\n            {\n                \"stone_quality\": \"precious\",\n                \"stone_type\": \"ruby\",\n                \"stone_shape\": \"square\",\n                \"stone_size\": \"7\",\n                \"stone_pieces\": 3,\n                \"stone_weight\": \"20\",\n                \"stone_rate\": \"7900\",\n                \"stone_color\": \"golden\"\n            }\n        ],\n        \"discounts\": [\n            {\n                \"discount_type\": \"making\",\n                \"value\": \"80000\",\n                \"discount_method\": \"amount\"\n            },\n            {\n                \"discount_type\": \"metal\",\n                \"value\": \"70000\",\n                \"discount_method\": \"amount\"\n            },\n            {\n                \"discount_type\": \"stone\",\n                \"value\": \"2300\",\n                \"discount_method\": \"amount\"\n            }\n        ],\n        \"upsell_ids\": [\n            68783,\n            68784\n        ],\n        \"cross_sell_ids\": [\n            68759\n        ]\n    }\n}"}],"_postman_id":"cafd89a4-a450-41a8-affd-5bdfe5bf8f60"},{"name":"Bulk Create Update Products","id":"074cc831-17e7-4fd5-88a3-5afa0d82cdb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6Im9BZXFMYXZxMEFRaSIsInBpZCI6NjAsInRlc3QiOjEyMywiaWF0IjoxNzczMjE0NjU1LCJleHAiOjE3NzU4MDY2NTV9.1ZFiT9cyZ6EEjaj3qdKAEabodf-3dHoXwrzNL3XVmVg"}],"body":{"mode":"raw","raw":"{\n    \"create\": [\n        {\n            \"name\": \"Earring - Gemstone Trial\",\n            \"slug\": \"earring-gemstone-trial\",\n            \"permalink\": \"https://tiarabytj.com/?post_type=product&p=81594\",\n            \"date_created\": \"2024-05-04T17:05:02\",\n            \"date_modified\": \"2024-08-22T20:03:38\",\n            \"status\": \"draft\",\n            \"catalog_visibility\": \"visible\",\n            \"description_full\": \"<p>This is product description</p>\",\n            \"description_short\": \"<p>This is product description</p>\",\n            \"sku\": \"12333234\",\n            \"price\": \"808396\",\n            \"regular_price\": \"960696\",\n            \"sale_price\": \"808396\",\n            \"date_on_sale_from\": null,\n            \"date_on_sale_to\": null,\n            \"backorders_allowed\": false,\n            \"backorders_status\": \"no\",\n            \"backordered\": true,\n            \"sold_individually\": false,\n            \"dimensions\": {\n                \"length\": \"324\",\n                \"width\": \"234\",\n                \"height\": \"435\"\n            },\n            \"shipping\": {\n                \"required\": true,\n                \"taxable\": true,\n                \"min_shipping_days\": 5,\n                \"max_shipping_days\": 10\n            },\n            \"stock_status\": \"onbackorder\",\n            \"categories\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Earrings\",\n                    \"slug\": \"earrings\"\n                }\n            ],\n            \"collections\": [\n                {\n                    \"term_id\": 12,\n                    \"name\": \"Diamond Jewellery\",\n                    \"slug\": \"diamond-jewellery\"\n                },\n                {\n                    \"term_id\": 15,\n                    \"name\": \"Gemstone Jewellery\",\n                    \"slug\": \"gemstone-jewellery\"\n                }\n            ],\n            \"tags\": [\n                {\n                    \"id\": 78,\n                    \"name\": \"Tops\",\n                    \"slug\": \"tops\"\n                }\n            ],\n            \"images\": [\n                {\n                    \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                    \"name\": \"NEw-Collectionn-4\"\n                }\n            ],\n            \"meta_data\": {\n                \"seo_description\": \"This is product description\",\n                \"seo_title\": \"Earring - Gemstone Trial\",\n                \"seo_keywords\": [],\n                \"hallmarked\": \"1\",\n                \"labour_from\": \"gross\",\n                \"wastage_from\": \"weight\",\n                \"making_from\": \"labour\",\n                \"minimum_labour\": \"499\",\n                \"wastage_percent\": \"10\",\n                \"per_gram\": \"399\",\n                \"huid\": [\n                    \"324234\"\n                ],\n                \"metal_color\": \"yellow\",\n                \"gold_kt\": \"916\",\n                \"silver_purity\": \"995\",\n                \"platinum_purity\": \"\",\n                \"manual_price\": \"0\",\n                \"custom_wastage_from\": \"gross\",\n                \"extra_charges\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"999\"\n                },\n                \"total_diamond_weight\": \"0.08\",\n                \"total_gemstone_weight\": \"20\",\n                \"disable_customization\": \"no\",\n                \"diamond_from\": \"master\",\n                \"stone_from\": \"master\"\n            },\n            \"metal_details\": [\n                {\n                    \"metal_type\": \"gold\",\n                    \"gross\": \"99\",\n                    \"net\": \"94.984\"\n                }\n            ],\n            \"diamond_details\": [\n                {\n                    \"diamond_type\": \"natural\",\n                    \"diamond_quality\": \"VVS-DE\",\n                    \"diamond_shape\": \"princess\",\n                    \"diamond_sieve\": \"1671627672_0ytnJ\",\n                    \"diamond_cut\": \"excellent\",\n                    \"diamond_pieces\": 12,\n                    \"diamond_weight\": \"0.08\",\n                    \"diamond_rate\": \"40000\",\n                    \"diamond_lab\": \"GIA\",\n                    \"diamond_certified\": \"no\",\n                    \"diamond_certificate_id\": \"\"\n                }\n            ],\n            \"stone_details\": [\n                {\n                    \"stone_quality\": \"precious\",\n                    \"stone_type\": \"ruby\",\n                    \"stone_shape\": \"square\",\n                    \"stone_size\": \"7\",\n                    \"stone_pieces\": 3,\n                    \"stone_weight\": \"20\",\n                    \"stone_rate\": \"7900\",\n                    \"stone_color\": \"golden\"\n                }\n            ],\n            \"discounts\": [\n                {\n                    \"discount_type\": \"making\",\n                    \"value\": \"80000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"metal\",\n                    \"value\": \"70000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"stone\",\n                    \"value\": \"2300\",\n                    \"discount_method\": \"amount\"\n                }\n            ],\n            \"upsell_ids\": [\n                68783,\n                68784\n            ],\n            \"cross_sell_ids\": [\n                68759\n            ]\n        }\n    ],\n    \"update\": [\n        {\n            \"id\": 81594,\n            \"name\": \"Earring - Gemstone Trial\",\n            \"slug\": \"earring-gemstone-trial\",\n            \"permalink\": \"https://tiarabytj.com/?post_type=product&p=81594\",\n            \"date_created\": \"2024-05-04T17:05:02\",\n            \"date_modified\": \"2024-08-22T20:03:38\",\n            \"status\": \"draft\",\n            \"catalog_visibility\": \"visible\",\n            \"description_full\": \"<p>This is product description</p>\",\n            \"description_short\": \"<p>This is product description</p>\",\n            \"sku\": \"12334\",\n            \"price\": \"808396\",\n            \"regular_price\": \"960696\",\n            \"sale_price\": \"808396\",\n            \"date_on_sale_from\": null,\n            \"date_on_sale_to\": null,\n            \"backorders_allowed\": false,\n            \"backorders_status\": \"no\",\n            \"backordered\": true,\n            \"sold_individually\": false,\n            \"dimensions\": {\n                \"length\": \"324\",\n                \"width\": \"234\",\n                \"height\": \"435\"\n            },\n            \"shipping\": {\n                \"required\": true,\n                \"taxable\": true,\n                \"min_shipping_days\": 5,\n                \"max_shipping_days\": 10\n            },\n            \"stock_status\": \"onbackorder\",\n            \"categories\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Earrings\",\n                    \"slug\": \"earrings\"\n                }\n            ],\n            \"collections\": [\n                {\n                    \"term_id\": 12,\n                    \"name\": \"Diamond Jewellery\",\n                    \"slug\": \"diamond-jewellery\"\n                },\n                {\n                    \"term_id\": 15,\n                    \"name\": \"Gemstone Jewellery\",\n                    \"slug\": \"gemstone-jewellery\"\n                }\n            ],\n            \"tags\": [\n                {\n                    \"id\": 78,\n                    \"name\": \"Tops\",\n                    \"slug\": \"tops\"\n                }\n            ],\n            \"images\": [\n                {\n                    \"id\": 81516,\n                    \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                    \"name\": \"NEw-Collectionn-4\"\n                }\n            ],\n            \"meta_data\": {\n                \"seo_description\": \"This is product description\",\n                \"seo_title\": \"Earring - Gemstone Trial\",\n                \"seo_keywords\": [],\n                \"hallmarked\": \"1\",\n                \"labour_from\": \"gross\",\n                \"wastage_from\": \"weight\",\n                \"making_from\": \"labour\",\n                \"minimum_labour\": \"499\",\n                \"wastage_percent\": \"10\",\n                \"per_gram\": \"399\",\n                \"huid\": [\n                    \"324234\"\n                ],\n                \"metal_color\": \"yellow\",\n                \"gold_kt\": \"916\",\n                \"silver_purity\": \"995\",\n                \"platinum_purity\": \"\",\n                \"manual_price\": \"0\",\n                \"custom_wastage_from\": \"gross\",\n                \"extra_charges\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"999\"\n                },\n                \"total_diamond_weight\": \"0.08\",\n                \"total_gemstone_weight\": \"20\",\n                \"disable_customization\": \"no\",\n                \"diamond_from\": \"master\",\n                \"stone_from\": \"master\"\n            },\n            \"metal_details\": [\n                {\n                    \"metal_type\": \"gold\",\n                    \"gross\": \"99\",\n                    \"net\": \"94.984\"\n                }\n            ],\n            \"diamond_details\": [\n                {\n                    \"diamond_type\": \"natural\",\n                    \"diamond_quality\": \"VVS-DE\",\n                    \"diamond_shape\": \"princess\",\n                    \"diamond_sieve\": \"1671627672_0ytnJ\",\n                    \"diamond_cut\": \"excellent\",\n                    \"diamond_pieces\": 12,\n                    \"diamond_weight\": \"0.08\",\n                    \"diamond_rate\": \"40000\",\n                    \"diamond_lab\": \"GIA\",\n                    \"diamond_certified\": \"no\",\n                    \"diamond_certificate_id\": \"\"\n                }\n            ],\n            \"stone_details\": [\n                {\n                    \"stone_quality\": \"precious\",\n                    \"stone_type\": \"ruby\",\n                    \"stone_shape\": \"square\",\n                    \"stone_size\": \"7\",\n                    \"stone_pieces\": 3,\n                    \"stone_weight\": \"20\",\n                    \"stone_rate\": \"7900\",\n                    \"stone_color\": \"golden\"\n                }\n            ],\n            \"discounts\": [\n                {\n                    \"discount_type\": \"making\",\n                    \"value\": \"80000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"metal\",\n                    \"value\": \"70000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"stone\",\n                    \"value\": \"2300\",\n                    \"discount_method\": \"amount\"\n                }\n            ],\n            \"upsell_ids\": [\n                68783,\n                68784\n            ],\n            \"cross_sell_ids\": [\n                68759\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/products/batch","description":"<p>AUTHORIZATION</p>\n<p>apikey : {{your_api_key}}</p>\n<p>LIMITS:<br />- \"create\" array: maximum 100 objects<br />- \"update\" array: maximum 100 objects</p>\n<p>REQUEST BODY</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"create\": [\n        {\n            \"name\": \"Earring - Gemstone Trial\",\n            \"slug\": \"earring-gemstone-trial\",\n            \"permalink\": \"https://tiarabytj.com/?post_type=product&amp;p=81594\",\n            \"date_created\": \"2024-05-04T17:05:02\",\n            \"date_modified\": \"2024-08-22T20:03:38\",\n            \"status\": \"draft\",\n            \"catalog_visibility\": \"visible\",\n            \"description_full\": \"&lt;p class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;This is product description&lt;/p&gt;\",\n            \"description_short\": \"&lt;p class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;This is product description&lt;/p&gt;\",\n            \"sku\": \"12333234\",\n            \"price\": \"808396\",\n            \"regular_price\": \"960696\",\n            \"sale_price\": \"808396\",\n            \"date_on_sale_from\": null,\n            \"date_on_sale_to\": null,\n            \"backorders_allowed\": false,\n            \"backorders_status\": \"no\",\n            \"backordered\": true,\n            \"sold_individually\": false,\n            \"dimensions\": {\n                \"length\": \"324\",\n                \"width\": \"234\",\n                \"height\": \"435\"\n            },\n            \"shipping\": {\n                \"required\": true,\n                \"taxable\": true,\n                \"min_shipping_days\": 5,\n                \"max_shipping_days\": 10\n            },\n            \"stock_status\": \"onbackorder\",\n            \"categories\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Earrings\",\n                    \"slug\": \"earrings\"\n                }\n            ],\n            \"collections\": [\n                {\n                    \"term_id\": 12,\n                    \"name\": \"Diamond Jewellery\",\n                    \"slug\": \"diamond-jewellery\"\n                },\n                {\n                    \"term_id\": 15,\n                    \"name\": \"Gemstone Jewellery\",\n                    \"slug\": \"gemstone-jewellery\"\n                }\n            ],\n            \"tags\": [\n                {\n                    \"id\": 78,\n                    \"name\": \"Tops\",\n                    \"slug\": \"tops\"\n                }\n            ],\n            \"images\": [\n                {\n                    \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                    \"name\": \"NEw-Collectionn-4\"\n                }\n            ],\n            \"meta_data\": {\n                \"seo_description\": \"This is product description\",\n                \"seo_title\": \"Earring - Gemstone Trial\",\n                \"seo_keywords\": [],\n                \"hallmarked\": \"1\",\n                \"labour_from\": \"gross\",\n                \"wastage_from\": \"weight\",\n                \"making_from\": \"labour\",\n                \"minimum_labour\": \"499\",\n                \"wastage_percent\": \"10\",\n                \"per_gram\": \"399\",\n                \"huid\": [\n                    \"324234\"\n                ],\n                \"metal_color\": \"yellow\",\n                \"gold_kt\": \"916\",\n                \"silver_purity\": \"995\",\n                \"platinum_purity\": \"\",\n                \"manual_price\": \"0\",\n                \"custom_wastage_from\": \"gross\",\n                \"extra_charges\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"999\"\n                },\n                \"total_diamond_weight\": \"0.08\",\n                \"total_gemstone_weight\": \"20\",\n                \"disable_customization\": \"no\",\n                \"diamond_from\": \"master\",\n                \"stone_from\": \"master\"\n            },\n            \"metal_details\": [\n                {\n                    \"metal_type\": \"gold\",\n                    \"gross\": \"99\",\n                    \"net\": \"94.984\"\n                }\n            ],\n            \"diamond_details\": [\n                {\n                    \"diamond_type\": \"natural\",\n                    \"diamond_quality\": \"VVS-DE\",\n                    \"diamond_shape\": \"princess\",\n                    \"diamond_sieve\": \"1671627672_0ytnJ\",\n                    \"diamond_cut\": \"excellent\",\n                    \"diamond_pieces\": 12,\n                    \"diamond_weight\": \"0.08\",\n                    \"diamond_rate\": \"40000\",\n                    \"diamond_lab\": \"GIA\",\n                    \"diamond_certified\": \"no\",\n                    \"diamond_certificate_id\": \"\"\n                }\n            ],\n            \"stone_details\": [\n                {\n                    \"stone_quality\": \"precious\",\n                    \"stone_type\": \"ruby\",\n                    \"stone_shape\": \"square\",\n                    \"stone_size\": \"7\",\n                    \"stone_pieces\": 3,\n                    \"stone_weight\": \"20\",\n                    \"stone_rate\": \"7900\",\n                    \"stone_color\": \"golden\"\n                }\n            ],\n            \"discounts\": [\n                {\n                    \"discount_type\": \"making\",\n                    \"value\": \"80000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"metal\",\n                    \"value\": \"70000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"stone\",\n                    \"value\": \"2300\",\n                    \"discount_method\": \"amount\"\n                }\n            ],\n            \"upsell_ids\": [\n                68783,\n                68784\n            ],\n            \"cross_sell_ids\": [\n                68759\n            ]\n        }\n    ],\n    \"update\": [\n        {\n            \"id\": 81594,\n            \"name\": \"Earring - Gemstone Trial\",\n            \"slug\": \"earring-gemstone-trial\",\n            \"permalink\": \"https://tiarabytj.com/?post_type=product&amp;p=81594\",\n            \"date_created\": \"2024-05-04T17:05:02\",\n            \"date_modified\": \"2024-08-22T20:03:38\",\n            \"status\": \"draft\",\n            \"catalog_visibility\": \"visible\",\n            \"description_full\": \"&lt;p class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;This is product description&lt;/p&gt;\",\n            \"description_short\": \"&lt;p class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;This is product description&lt;/p&gt;\",\n            \"sku\": \"12334\",\n            \"price\": \"808396\",\n            \"regular_price\": \"960696\",\n            \"sale_price\": \"808396\",\n            \"date_on_sale_from\": null,\n            \"date_on_sale_to\": null,\n            \"backorders_allowed\": false,\n            \"backorders_status\": \"no\",\n            \"backordered\": true,\n            \"sold_individually\": false,\n            \"dimensions\": {\n                \"length\": \"324\",\n                \"width\": \"234\",\n                \"height\": \"435\"\n            },\n            \"shipping\": {\n                \"required\": true,\n                \"taxable\": true,\n                \"min_shipping_days\": 5,\n                \"max_shipping_days\": 10\n            },\n            \"stock_status\": \"onbackorder\",\n            \"categories\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Earrings\",\n                    \"slug\": \"earrings\"\n                }\n            ],\n            \"collections\": [\n                {\n                    \"term_id\": 12,\n                    \"name\": \"Diamond Jewellery\",\n                    \"slug\": \"diamond-jewellery\"\n                },\n                {\n                    \"term_id\": 15,\n                    \"name\": \"Gemstone Jewellery\",\n                    \"slug\": \"gemstone-jewellery\"\n                }\n            ],\n            \"tags\": [\n                {\n                    \"id\": 78,\n                    \"name\": \"Tops\",\n                    \"slug\": \"tops\"\n                }\n            ],\n            \"images\": [\n                {\n                    \"id\": 81516,\n                    \"src\": \"https://tiarabytj.com/wp-content/uploads/sites/27/2024/04/NEw-Collectionn-4.jpg\",\n                    \"name\": \"NEw-Collectionn-4\"\n                }\n            ],\n            \"meta_data\": {\n                \"seo_description\": \"This is product description\",\n                \"seo_title\": \"Earring - Gemstone Trial\",\n                \"seo_keywords\": [],\n                \"hallmarked\": \"1\",\n                \"labour_from\": \"gross\",\n                \"wastage_from\": \"weight\",\n                \"making_from\": \"labour\",\n                \"minimum_labour\": \"499\",\n                \"wastage_percent\": \"10\",\n                \"per_gram\": \"399\",\n                \"huid\": [\n                    \"324234\"\n                ],\n                \"metal_color\": \"yellow\",\n                \"gold_kt\": \"916\",\n                \"silver_purity\": \"995\",\n                \"platinum_purity\": \"\",\n                \"manual_price\": \"0\",\n                \"custom_wastage_from\": \"gross\",\n                \"extra_charges\": {\n                    \"extra_charge_label\": \"certificate\",\n                    \"extra_charge_value\": \"999\"\n                },\n                \"total_diamond_weight\": \"0.08\",\n                \"total_gemstone_weight\": \"20\",\n                \"disable_customization\": \"no\",\n                \"diamond_from\": \"master\",\n                \"stone_from\": \"master\"\n            },\n            \"metal_details\": [\n                {\n                    \"metal_type\": \"gold\",\n                    \"gross\": \"99\",\n                    \"net\": \"94.984\"\n                }\n            ],\n            \"diamond_details\": [\n                {\n                    \"diamond_type\": \"natural\",\n                    \"diamond_quality\": \"VVS-DE\",\n                    \"diamond_shape\": \"princess\",\n                    \"diamond_sieve\": \"1671627672_0ytnJ\",\n                    \"diamond_cut\": \"excellent\",\n                    \"diamond_pieces\": 12,\n                    \"diamond_weight\": \"0.08\",\n                    \"diamond_rate\": \"40000\",\n                    \"diamond_lab\": \"GIA\",\n                    \"diamond_certified\": \"no\",\n                    \"diamond_certificate_id\": \"\"\n                }\n            ],\n            \"stone_details\": [\n                {\n                    \"stone_quality\": \"precious\",\n                    \"stone_type\": \"ruby\",\n                    \"stone_shape\": \"square\",\n                    \"stone_size\": \"7\",\n                    \"stone_pieces\": 3,\n                    \"stone_weight\": \"20\",\n                    \"stone_rate\": \"7900\",\n                    \"stone_color\": \"golden\"\n                }\n            ],\n            \"discounts\": [\n                {\n                    \"discount_type\": \"making\",\n                    \"value\": \"80000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"metal\",\n                    \"value\": \"70000\",\n                    \"discount_method\": \"amount\"\n                },\n                {\n                    \"discount_type\": \"stone\",\n                    \"value\": \"2300\",\n                    \"discount_method\": \"amount\"\n                }\n            ],\n            \"upsell_ids\": [\n                68783,\n                68784\n            ],\n            \"cross_sell_ids\": [\n                68759\n            ]\n        }\n    ]\n}\n\n</code></pre>","urlObject":{"protocol":"https","path":["v1","products","batch"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"074cc831-17e7-4fd5-88a3-5afa0d82cdb3"}],"id":"17d00069-f23e-41ba-9430-265d9efa8795","_postman_id":"17d00069-f23e-41ba-9430-265d9efa8795","description":""},{"name":"Masters","item":[{"name":"Get Business settings","id":"56771fe0-9587-4f28-8386-40e210e6f315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/business_settings","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>net_weight</td>\n<td>How the net weight is calculated. Possible values are: \"auto\" (net weight is calculated automatically), \"manual\" (net weight is entered manually)</td>\n</tr>\n<tr>\n<td>default_currency</td>\n<td>The default currency you deal in for pricing. Possible values: \"INR\" (Indian Rupee), \"USD\" (US Dollar), \"EUR\" (Euro), \"GBP\" (British Pound), \"AUD\" (Australian Dollar), \"AED\" (Emirati Dirham), \"SGD\" (Singapore Dollar), \"SAR\" (Saudi Riyal), \"ZAR\" (South African Rand), \"CAD\" (Canadian Dollar), \"JPY\" (Japanese Yen), \"CNY\" (Chinese Yuan), \"VND\" (Vietnamese Dong), \"THB\" (Thai Baht), \"KWD\" (Kuwaiti Dinar)</td>\n</tr>\n<tr>\n<td>types</td>\n<td>The types of jewellery you deal in. Examples: \"diamond\" (Diamond Jewellery), \"silver\" (Silver Jewellery), \"platinium\" (Platinum Jewellery), \"gemstone\" (Gemstone Jewellery), \"antique\" (Antique / Jadau Jewellery), \"cz\" (CZ Jewellery), \"gold\" (Gold Jewellery)</td>\n</tr>\n<tr>\n<td>gold_purities</td>\n<td>Gold purity you deal in. Examples: \"916\" (22KT), \"750\" (18KT), \"999\" (24KT), \"999.99\" (24KT), \"995\" (24KT), \"583\" (14KT), \"375\" (9KT)</td>\n</tr>\n<tr>\n<td>silver_purities</td>\n<td>Silver purity you deal in. Examples: \"995\" (Fine Silver), \"925\" (Sterling Silver), \"999\" (Fine Silver), \"800\", \"750\", \"850\", \"650\"</td>\n</tr>\n<tr>\n<td>platinum_purities</td>\n<td>Platinum purity you deal in. Examples: \"900\" (90% pure), \"950\" (95% pure), \"850\" (85% pure)</td>\n</tr>\n<tr>\n<td>colors</td>\n<td>Metal colors you offer. Examples: \"white\" (White color), \"yellow\" (Yellow color), \"rose\" (Rose gold), \"two-tone\" (Combination of two colors)</td>\n</tr>\n<tr>\n<td>diamond_types</td>\n<td>Types of diamonds you offer. Examples: \"natural\" (Natural Diamond), \"lab_grown\" (Lab Grown Diamond)</td>\n</tr>\n<tr>\n<td>diamond_clarities</td>\n<td>Diamond clarity you offer. Examples: \"IF\" (Internally Flawless), \"VVS\" (Very Very Slightly Included), \"VS\" (Very Slightly Included), \"SI\" (Slightly Included), \"I\" (Included)</td>\n</tr>\n<tr>\n<td>diamond_cuts</td>\n<td>Diamond cuts you offer. Examples: \"excellent\", \"very_good\", \"good\", \"fair\", \"poor\"</td>\n</tr>\n<tr>\n<td>diamond_shapes</td>\n<td>Diamond shapes you deal in. Examples: \"round\", \"princess\", \"marquise\", \"pear\", \"oval\", \"baguette\", \"heart\"</td>\n</tr>\n<tr>\n<td>diamond_colors</td>\n<td>Diamond color grades you offer. Examples: \"D\" (Colorless), \"E\", \"F\", \"G\", \"H\", \"I\", \"J\", \"PINK\" (Pink Diamond), \"BLUE\" (Blue Diamond)</td>\n</tr>\n<tr>\n<td>gemstone_qualities</td>\n<td>Gemstone qualities you deal in. Examples: \"precious\", \"semi-precious\", \"polki\", \"kundan\", \"uncut\", \"hydro\", \"doublet\"</td>\n</tr>\n<tr>\n<td>gemstone_shapes</td>\n<td>Gemstone shapes you deal in. Examples: \"pumpkin_beads/kharbuja\", \"pear\", \"oval\", \"round\", \"triangle\"</td>\n</tr>\n<tr>\n<td>gemstone_types</td>\n<td>Types of gemstones you deal in. Examples: \"undrilled\", \"blue-sapphire\", \"real-coral\", \"ruby\", \"emerald\", \"pearl\", \"sapphire\"</td>\n</tr>\n<tr>\n<td>diamond_labs</td>\n<td>Diamond certification labs you work with. Examples: \"AGS\", \"GIA\", \"IGI\", \"EGL\", \"HRD\", \"IIDGR\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","business_settings"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"27ede32e-2d22-4163-bac2-fd42d25ddfcf","name":"Get Business settings","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/business_settings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"success\",\n    \"data\": {\n        \"types\": [\n            {\n                \"label\": \"Diamond Jewellery\",\n                \"value\": \"diamond\"\n            },\n            {\n                \"label\": \"Silver Jewellery\",\n                \"value\": \"silver\"\n            },\n            {\n                \"label\": \"Platinum Jewellery\",\n                \"value\": \"platinium\"\n            },\n            {\n                \"label\": \"Gemstone Jewellery\",\n                \"value\": \"gemstone\"\n            },\n            {\n                \"label\": \"Antique / Jadau Jewellery\",\n                \"value\": \"antique\"\n            },\n            {\n                \"label\": \"CZ Jewellery\",\n                \"value\": \"cz\"\n            },\n            {\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold\"\n            }\n        ],\n        \"gold_purities\": [\n            {\n                \"label\": \"22KT (916)\",\n                \"value\": \"916\"\n            },\n            {\n                \"label\": \"18KT (750)\",\n                \"value\": \"750\"\n            },\n            {\n                \"label\": \"24KT (999)\",\n                \"value\": \"999\"\n            },\n            {\n                \"label\": \"24KT (999.99)\",\n                \"value\": \"999.99\"\n            },\n            {\n                \"label\": \"24KT (995)\",\n                \"value\": \"995\"\n            },\n            {\n                \"label\": \"14KT (583)\",\n                \"value\": \"583\"\n            },\n            {\n                \"label\": \"9KT (375)\",\n                \"value\": \"375\"\n            }\n        ],\n        \"silver_purities\": [\n            {\n                \"label\": \"Fine (995)\",\n                \"value\": \"995\"\n            },\n            {\n                \"label\": \"Sterling (925)\",\n                \"value\": \"925\"\n            },\n            {\n                \"label\": \"Fine (999)\",\n                \"value\": \"999\"\n            },\n            {\n                \"label\": \"800\",\n                \"value\": \"800\"\n            },\n            {\n                \"label\": \"750\",\n                \"value\": \"750\"\n            },\n            {\n                \"label\": \"850\",\n                \"value\": \"850\"\n            },\n            {\n                \"label\": \"650\",\n                \"value\": \"650\"\n            }\n        ],\n        \"platinum_purities\": [\n            {\n                \"label\": \"900\",\n                \"value\": \"900\"\n            },\n            {\n                \"label\": \"950\",\n                \"value\": \"950\"\n            },\n            {\n                \"label\": \"850\",\n                \"value\": \"850\"\n            }\n        ],\n        \"colors\": [\n            {\n                \"label\": \"White\",\n                \"value\": \"white\"\n            },\n            {\n                \"label\": \"Yellow\",\n                \"value\": \"yellow\"\n            },\n            {\n                \"label\": \"Rose\",\n                \"value\": \"rose\"\n            },\n            {\n                \"label\": \"Two Tone\",\n                \"value\": \"two-tone\"\n            }\n        ],\n        \"net_weight\": \"auto\",\n        \"auto_diamond_sieve\": \"\",\n        \"collections\": [],\n        \"categories\": [],\n        \"diamond_types\": [\n            {\n                \"label\": \"Natural\",\n                \"value\": \"natural\"\n            },\n            {\n                \"label\": \"Lab Grown\",\n                \"value\": \"lab_grown\"\n            }\n        ],\n        \"diamond_clarities\": [\n            {\n                \"label\": \"IF\",\n                \"value\": \"IF\"\n            },\n            {\n                \"label\": \"VVS\",\n                \"value\": \"VVS\"\n            },\n            {\n                \"label\": \"VVS1\",\n                \"value\": \"VVS1\"\n            },\n            {\n                \"label\": \"VVS2\",\n                \"value\": \"VVS2\"\n            },\n            {\n                \"label\": \"VS\",\n                \"value\": \"VS\"\n            },\n            {\n                \"label\": \"VS1\",\n                \"value\": \"VS1\"\n            },\n            {\n                \"label\": \"VS2\",\n                \"value\": \"VS2\"\n            },\n            {\n                \"label\": \"SI\",\n                \"value\": \"SI\"\n            },\n            {\n                \"label\": \"SI1\",\n                \"value\": \"SI1\"\n            },\n            {\n                \"label\": \"SI2\",\n                \"value\": \"SI2\"\n            },\n            {\n                \"label\": \"SI3\",\n                \"value\": \"SI3\"\n            },\n            {\n                \"label\": \"I\",\n                \"value\": \"I\"\n            },\n            {\n                \"label\": \"I1\",\n                \"value\": \"I1\"\n            },\n            {\n                \"label\": \"2I\",\n                \"value\": \"I2\"\n            },\n            {\n                \"label\": \"IF/VVS\",\n                \"value\": \"IF/VVS\"\n            },\n            {\n                \"label\": \"VVS/VS\",\n                \"value\": \"VVS/VS\"\n            },\n            {\n                \"label\": \"VS/SI\",\n                \"value\": \"VS/SI\"\n            },\n            {\n                \"label\": \"SI/I\",\n                \"value\": \"SI/I\"\n            },\n            {\n                \"label\": \"SI/I1\",\n                \"value\": \"SI/I1\"\n            },\n            {\n                \"label\": \"DIAMOND\",\n                \"value\": \"DIAMOND\"\n            }\n        ],\n        \"diamond_cuts\": [\n            {\n                \"label\": \"Excellent\",\n                \"value\": \"excellent\"\n            },\n            {\n                \"label\": \"Very Good\",\n                \"value\": \"very_good\"\n            },\n            {\n                \"label\": \"Good\",\n                \"value\": \"good\"\n            },\n            {\n                \"label\": \"Fair\",\n                \"value\": \"fair\"\n            },\n            {\n                \"label\": \"Poor\",\n                \"value\": \"poor\"\n            }\n        ],\n        \"diamond_shapes\": [\n            {\n                \"label\": \"Round\",\n                \"value\": \"round\"\n            },\n            {\n                \"label\": \"Princess\",\n                \"value\": \"princess\"\n            },\n            {\n                \"label\": \"Marquise\",\n                \"value\": \"marquise\"\n            },\n            {\n                \"label\": \"Pear\",\n                \"value\": \"pear\"\n            },\n            {\n                \"label\": \"Oval\",\n                \"value\": \"oval\"\n            },\n            {\n                \"label\": \"Taper Baguette\",\n                \"value\": \"tapered_baguette\"\n            },\n            {\n                \"label\": \"Bullet Baguette\",\n                \"value\": \"bullet_baguette\"\n            },\n            {\n                \"label\": \"Baguette\",\n                \"value\": \"baguette\"\n            },\n            {\n                \"label\": \"Heart\",\n                \"value\": \"heart\"\n            },\n            {\n                \"label\": \"Cushion\",\n                \"value\": \"cushion\"\n            },\n            {\n                \"label\": \"Radiant\",\n                \"value\": \"radiant\"\n            },\n            {\n                \"label\": \"Asscher\",\n                \"value\": \"asscher\"\n            },\n            {\n                \"label\": \"Trillion\",\n                \"value\": \"trillion\"\n            },\n            {\n                \"label\": \"Lozenge\",\n                \"value\": \"lozenge\"\n            },\n            {\n                \"label\": \"Emerald\",\n                \"value\": \"emerald\"\n            },\n            {\n                \"label\": \"Half Moon\",\n                \"value\": \"halfmoon\"\n            },\n            {\n                \"label\": \"Triangle\",\n                \"value\": \"triangle\"\n            },\n            {\n                \"label\": \"Fancy\",\n                \"value\": \"fancy\"\n            },\n            {\n                \"label\": \"Trapezoid\",\n                \"value\": \"trapezoid\"\n            },\n            {\n                \"label\": \"Kite\",\n                \"value\": \"kite\"\n            }\n        ],\n        \"diamond_colors\": [\n            {\n                \"label\": \"D\",\n                \"value\": \"D\"\n            },\n            {\n                \"label\": \"E\",\n                \"value\": \"E\"\n            },\n            {\n                \"label\": \"F\",\n                \"value\": \"F\"\n            },\n            {\n                \"label\": \"G\",\n                \"value\": \"G\"\n            },\n            {\n                \"label\": \"H\",\n                \"value\": \"H\"\n            },\n            {\n                \"label\": \"I\",\n                \"value\": \"I\"\n            },\n            {\n                \"label\": \"J\",\n                \"value\": \"J\"\n            },\n            {\n                \"label\": \"K\",\n                \"value\": \"K\"\n            },\n            {\n                \"label\": \"L\",\n                \"value\": \"L\"\n            },\n            {\n                \"label\": \"M\",\n                \"value\": \"M\"\n            },\n            {\n                \"label\": \"PINK\",\n                \"value\": \"PINK\",\n                \"type\": \"extra\"\n            },\n            {\n                \"label\": \"BLUE\",\n                \"value\": \"BLUE\",\n                \"type\": \"extra\"\n            },\n            {\n                \"label\": \"YELLOW\",\n                \"value\": \"YELLOW\",\n                \"type\": \"extra\"\n            },\n            {\n                \"label\": \"BLACK\",\n                \"value\": \"BLACK\",\n                \"type\": \"extra\"\n            }\n        ],\n        \"diamond_sizes\": [],\n        \"currency\": [\n            {\n                \"label\": \"INR\",\n                \"value\": \"INR\",\n                \"symbol\": \"₹\",\n                \"name\": \"Indian Rupee\",\n                \"country\": \"India\"\n            }\n        ],\n        \"default_currency\": \"INR\",\n        \"gemstone_qualities\": [\n            {\n                \"label\": \"Precious\",\n                \"value\": \"precious\"\n            },\n            {\n                \"label\": \"Semi precious\",\n                \"value\": \"semi-precious\"\n            },\n            {\n                \"label\": \"Polki\",\n                \"value\": \"polki\"\n            },\n            {\n                \"label\": \"Kundan\",\n                \"value\": \"kundan\"\n            },\n            {\n                \"label\": \"Uncut\",\n                \"value\": \"uncut\"\n            },\n            {\n                \"label\": \"Hydro\",\n                \"value\": \"hydro\"\n            },\n            {\n                \"label\": \"Doublet\",\n                \"value\": \"doublet\"\n            },\n            {\n                \"label\": \"925 Sterling Silver\",\n                \"value\": \"925-sterling-silver\"\n            },\n            {\n                \"label\": \"Fashion\",\n                \"value\": \"fashion\"\n            },\n            {\n                \"label\": \"Gold\",\n                \"value\": \"gold\"\n            },\n            {\n                \"label\": \"Pearl\",\n                \"value\": \"pearl\"\n            },\n            {\n                \"label\": \"Silver\",\n                \"value\": \"silver\"\n            },\n            {\n                \"label\": \"Southsea\",\n                \"value\": \"southsea\"\n            },\n            {\n                \"label\": \"Pearls\",\n                \"value\": \"pearls\"\n            },\n            {\n                \"label\": \"Gemstone\",\n                \"value\": \"gemstone\"\n            }\n        ],\n        \"gemstone_shapes\": [\n            {\n                \"label\": \"Pumpkin Beads/Kharbuja\",\n                \"value\": \"pumpkin_beads/kharbuja\"\n            },\n            {\n                \"label\": \"Potato\",\n                \"value\": \"potato\"\n            },\n            {\n                \"label\": \"Seed\",\n                \"value\": \"seed\"\n            },\n            {\n                \"label\": \"Drop\",\n                \"value\": \"drop\"\n            },\n            {\n                \"label\": \"Flat\",\n                \"value\": \"flat\"\n            },\n            {\n                \"label\": \"Triangle\",\n                \"value\": \"triangle\"\n            },\n            {\n                \"label\": \"Tumble\",\n                \"value\": \"tumble\"\n            },\n            {\n                \"label\": \"Uneven Shape\",\n                \"value\": \"uneven-shape\"\n            },\n            {\n                \"label\": \"Rice\",\n                \"value\": \"rice\"\n            },\n            {\n                \"label\": \"Keshi\",\n                \"value\": \"keshi\"\n            },\n            {\n                \"label\": \"Tumble/Uneven Shape\",\n                \"value\": \"tumble/uneven_shape\"\n            },\n            {\n                \"label\": \"Beads\",\n                \"value\": \"beads\"\n            },\n            {\n                \"label\": \"Drum\",\n                \"value\": \"drum\"\n            },\n            {\n                \"label\": \"Button\",\n                \"value\": \"button\"\n            },\n            {\n                \"label\": \"Marquise\",\n                \"value\": \"marquise\"\n            },\n            {\n                \"label\": \"Pear\",\n                \"value\": \"pear\"\n            },\n            {\n                \"label\": \"Emerald\",\n                \"value\": \"emerald\"\n            },\n            {\n                \"label\": \"Oval\",\n                \"value\": \"oval\"\n            },\n            {\n                \"label\": \"Square\",\n                \"value\": \"square\"\n            },\n            {\n                \"label\": \"Round\",\n                \"value\": \"round\"\n            }\n        ],\n        \"gemstone_types\": [\n            {\n                \"label\": \"Undrilled\",\n                \"value\": \"undrilled\"\n            },\n            {\n                \"label\": \"Blue sapphire\",\n                \"value\": \"blue-sapphire\"\n            },\n            {\n                \"label\": \"Blue sapphire-beads\",\n                \"value\": \"blue-sapphire-beads\"\n            },\n            {\n                \"label\": \"Real coral\",\n                \"value\": \"real-coral\"\n            },\n            {\n                \"label\": \"Claw\",\n                \"value\": \"claw\"\n            },\n            {\n                \"label\": \"Cubic zirconia\",\n                \"value\": \"cubic-zirconia\"\n            },\n            {\n                \"label\": \"Cubic zircon\",\n                \"value\": \"cubic-zircon\"\n            },\n            {\n                \"label\": \"Real emerald\",\n                \"value\": \"real-emerald\"\n            },\n            {\n                \"label\": \"Garnet\",\n                \"value\": \"garnet\"\n            },\n            {\n                \"label\": \"Gempu ruby\",\n                \"value\": \"gempu-ruby\"\n            },\n            {\n                \"label\": \"Multicolor mix\",\n                \"value\": \"multicolor-mix\"\n            },\n            {\n                \"label\": \"Navratna set with cubic zirconia\",\n                \"value\": \"navratna-set-with-cubic-zirconia\"\n            },\n            {\n                \"label\": \"Navratna set with diamond\",\n                \"value\": \"navratna-set-with-diamond\"\n            },\n            {\n                \"label\": \"Ruby beads\",\n                \"value\": \"ruby-beads\"\n            },\n            {\n                \"label\": \"Ruby emerald\",\n                \"value\": \"ruby-emerald\"\n            },\n            {\n                \"label\": \"Black diamond\",\n                \"value\": \"black-diamond\"\n            },\n            {\n                \"label\": \"Southsea cream-pearl\",\n                \"value\": \"southsea-cream-pearl\"\n            },\n            {\n                \"label\": \"Spinnel ruby red\",\n                \"value\": \"spinnel-ruby-red\"\n            },\n            {\n                \"label\": \"Synthetic\",\n                \"value\": \"synthetic\"\n            },\n            {\n                \"label\": \"Synthetic beads\",\n                \"value\": \"synthetic-beads\"\n            },\n            {\n                \"label\": \"Turquoise\",\n                \"value\": \"turquoise\"\n            },\n            {\n                \"label\": \"Watch\",\n                \"value\": \"watch\"\n            },\n            {\n                \"label\": \"Wax\",\n                \"value\": \"wax\"\n            },\n            {\n                \"label\": \"Yellow topaz\",\n                \"value\": \"yellow-topaz\"\n            },\n            {\n                \"label\": \"Topaz\",\n                \"value\": \"topaz\"\n            },\n            {\n                \"label\": \"Colour Stones\",\n                \"value\": \"colour-stones\"\n            },\n            {\n                \"label\": \"Crystal\",\n                \"value\": \"crystal\"\n            },\n            {\n                \"label\": \"Mother of Pearl\",\n                \"value\": \"mother-of-pearl\"\n            },\n            {\n                \"label\": \"Multi Stones\",\n                \"value\": \"multi-stones\"\n            },\n            {\n                \"label\": \"Semi Precious\",\n                \"value\": \"semi-precious\"\n            },\n            {\n                \"label\": \"Freshwater Pearls\",\n                \"value\": \"freshwater-pearls\"\n            },\n            {\n                \"label\": \"UnCut Diamond\",\n                \"value\": \"uncut-diamond\"\n            },\n            {\n                \"label\": \"Victorian Balls\",\n                \"value\": \"victorian-balls\"\n            },\n            {\n                \"label\": \"Ruby\",\n                \"value\": \"ruby\"\n            },\n            {\n                \"label\": \"Emerald\",\n                \"value\": \"emerald\"\n            },\n            {\n                \"label\": \"Pearl\",\n                \"value\": \"pearl\"\n            },\n            {\n                \"label\": \"Sapphire\",\n                \"value\": \"sapphire\"\n            },\n            {\n                \"label\": \"Amethyst\",\n                \"value\": \"amethyst\"\n            },\n            {\n                \"label\": \"Beads\",\n                \"value\": \"beads\"\n            },\n            {\n                \"label\": \"Black beeds\",\n                \"value\": \"black-beeds\"\n            },\n            {\n                \"label\": \"Real ruby\",\n                \"value\": \"real-ruby\"\n            },\n            {\n                \"label\": \"Jade\",\n                \"value\": \"jade\"\n            },\n            {\n                \"label\": \"SouthSea Pearls\",\n                \"value\": \"southsea_pearls\"\n            },\n            {\n                \"label\": \"Tahitian Pearl\",\n                \"value\": \"tahitian_pearl\"\n            },\n            {\n                \"label\": \"Wiring\",\n                \"value\": \"wiring\"\n            },\n            {\n                \"label\": \"Invisible\",\n                \"value\": \"invisible\"\n            },\n            {\n                \"label\": \"Fresh Water Pearls\",\n                \"value\": \"fresh_water_pearls\"\n            },\n            {\n                \"label\": \"Basara Pearls\",\n                \"value\": \"basara-pearls\"\n            },\n            {\n                \"label\": \"Beryl Emerald\",\n                \"value\": \"beryl-emerald\"\n            },\n            {\n                \"label\": \"Black Beads\",\n                \"value\": \"black-beads\"\n            },\n            {\n                \"label\": \"Black Diamonds\",\n                \"value\": \"black-diamonds\"\n            },\n            {\n                \"label\": \"Cats Eye\",\n                \"value\": \"cats-eye\"\n            },\n            {\n                \"label\": \"Color stones\",\n                \"value\": \"color-stones\"\n            },\n            {\n                \"label\": \"Coral\",\n                \"value\": \"coral\"\n            },\n            {\n                \"label\": \"emeralds\",\n                \"value\": \"emeralds\"\n            },\n            {\n                \"label\": \"Fluorite\",\n                \"value\": \"fluorite\"\n            },\n            {\n                \"label\": \"Gomed\",\n                \"value\": \"gomed\"\n            },\n            {\n                \"label\": \"Hessonite Garnet\",\n                \"value\": \"hessonite-garnet\"\n            },\n            {\n                \"label\": \"Lapis\",\n                \"value\": \"lapis\"\n            },\n            {\n                \"label\": \"Moon Stone\",\n                \"value\": \"moon-stone\"\n            },\n            {\n                \"label\": \"Morganite\",\n                \"value\": \"morganite\"\n            },\n            {\n                \"label\": \"Navratan\",\n                \"value\": \"navratan\"\n            },\n            {\n                \"label\": \"Peridot\",\n                \"value\": \"peridot\"\n            },\n            {\n                \"label\": \"Precious Stone\",\n                \"value\": \"precious-stone\"\n            },\n            {\n                \"label\": \"R+E+P\",\n                \"value\": \"r+e+p\"\n            },\n            {\n                \"label\": \"Rubies\",\n                \"value\": \"rubies\"\n            },\n            {\n                \"label\": \"Shell Pearl\",\n                \"value\": \"shell-pearl\"\n            },\n            {\n                \"label\": \"Tahitian Pearls\",\n                \"value\": \"tahitian-pearls\"\n            },\n            {\n                \"label\": \"Tarmoline\",\n                \"value\": \"tarmoline\"\n            },\n            {\n                \"label\": \"Yellow Sapphire\",\n                \"value\": \"yellow-sapphire\"\n            },\n            {\n                \"label\": \"Ruby Lab Created\",\n                \"value\": \"ruby-lab-created\"\n            },\n            {\n                \"label\": \"Emerald Lab Created\",\n                \"value\": \"emerald-lab-created\"\n            },\n            {\n                \"label\": \"Blue Sapphire Lab Created\",\n                \"value\": \"blue-sapphire-lab-created\"\n            },\n            {\n                \"label\": \"CZ\",\n                \"value\": \"cz\"\n            },\n            {\n                \"label\": \"South Sea Pearls\",\n                \"value\": \"south-sea-pearls\"\n            }\n        ],\n        \"diamond_labs\": [\n            {\n                \"label\": \"AGS\",\n                \"value\": \"AGS\"\n            },\n            {\n                \"label\": \"DGLA\",\n                \"value\": \"DGLA\"\n            },\n            {\n                \"label\": \"DGSL\",\n                \"value\": \"DGSL\"\n            },\n            {\n                \"label\": \"DHC\",\n                \"value\": \"DHC\"\n            },\n            {\n                \"label\": \"EGL\",\n                \"value\": \"EGL\"\n            },\n            {\n                \"label\": \"Forevermark\",\n                \"value\": \"Forevermark\"\n            },\n            {\n                \"label\": \"GIA\",\n                \"value\": \"GIA\"\n            },\n            {\n                \"label\": \"GII\",\n                \"value\": \"GII\"\n            },\n            {\n                \"label\": \"GSI\",\n                \"value\": \"GSI\"\n            },\n            {\n                \"label\": \"HRD\",\n                \"value\": \"HRD\"\n            },\n            {\n                \"label\": \"IDT\",\n                \"value\": \"IDT\"\n            },\n            {\n                \"label\": \"IIDGR\",\n                \"value\": \"IIDGR\"\n            },\n            {\n                \"label\": \"IGI\",\n                \"value\": \"IGI\"\n            },\n            {\n                \"label\": \"IIG\",\n                \"value\": \"IIG\"\n            },\n            {\n                \"label\": \"SGL\",\n                \"value\": \"SGL\"\n            },\n            {\n                \"label\": \"PTR\",\n                \"value\": \"PTR\"\n            }\n        ],\n        \"hide_pricing\": false\n    }\n}"}],"_postman_id":"56771fe0-9587-4f28-8386-40e210e6f315"},{"name":"Update Business settings","id":"8347df7a-b8ee-46d2-8500-29ce50b921dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"types\": [\r\n      {\r\n        \"label\": \"Diamond Jewellery\",\r\n        \"value\": \"diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Silver Jewellery\",\r\n        \"value\": \"silver\"\r\n      },\r\n      {\r\n        \"label\": \"Platinum Jewellery\",\r\n        \"value\": \"platinium\"\r\n      },\r\n      {\r\n        \"label\": \"Gemstone Jewellery\",\r\n        \"value\": \"gemstone\"\r\n      },\r\n      {\r\n        \"label\": \"Antique / Jadau Jewellery\",\r\n        \"value\": \"antique\"\r\n      },\r\n      {\r\n        \"label\": \"CZ Jewellery\",\r\n        \"value\": \"cz\"\r\n      },\r\n      {\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold\"\r\n      }\r\n    ],\r\n    \"gold_purities\": [\r\n      {\r\n        \"label\": \"22KT (916)\",\r\n        \"value\": \"916\"\r\n      },\r\n      {\r\n        \"label\": \"18KT (750)\",\r\n        \"value\": \"750\"\r\n      },\r\n      {\r\n        \"label\": \"24KT (999)\",\r\n        \"value\": \"999\"\r\n      },\r\n      {\r\n        \"label\": \"24KT (999.99)\",\r\n        \"value\": \"999.99\"\r\n      },\r\n      {\r\n        \"label\": \"24KT (995)\",\r\n        \"value\": \"995\"\r\n      },\r\n      {\r\n        \"label\": \"14KT (583)\",\r\n        \"value\": \"583\"\r\n      },\r\n      {\r\n        \"label\": \"9KT (375)\",\r\n        \"value\": \"375\"\r\n      }\r\n    ],\r\n    \"silver_purities\": [\r\n      {\r\n        \"label\": \"Fine (995)\",\r\n        \"value\": \"995\"\r\n      },\r\n      {\r\n        \"label\": \"Sterling (925)\",\r\n        \"value\": \"925\"\r\n      },\r\n      {\r\n        \"label\": \"Fine (999)\",\r\n        \"value\": \"999\"\r\n      },\r\n      {\r\n        \"label\": \"800\",\r\n        \"value\": \"800\"\r\n      },\r\n      {\r\n        \"label\": \"750\",\r\n        \"value\": \"750\"\r\n      },\r\n      {\r\n        \"label\": \"850\",\r\n        \"value\": \"850\"\r\n      },\r\n      {\r\n        \"label\": \"650\",\r\n        \"value\": \"650\"\r\n      }\r\n    ],\r\n    \"platinum_purities\": [\r\n      {\r\n        \"label\": \"900\",\r\n        \"value\": \"900\"\r\n      },\r\n      {\r\n        \"label\": \"950\",\r\n        \"value\": \"950\"\r\n      },\r\n      {\r\n        \"label\": \"850\",\r\n        \"value\": \"850\"\r\n      }\r\n    ],\r\n    \"colors\": [\r\n      {\r\n        \"label\": \"White\",\r\n        \"value\": \"white\"\r\n      },\r\n      {\r\n        \"label\": \"Yellow\",\r\n        \"value\": \"yellow\"\r\n      },\r\n      {\r\n        \"label\": \"Rose\",\r\n        \"value\": \"rose\"\r\n      },\r\n      {\r\n        \"label\": \"Two Tone\",\r\n        \"value\": \"two-tone\"\r\n      }\r\n    ],\r\n    \"net_weight\": \"auto\",\r\n    \"auto_diamond_sieve\": \"\",\r\n    \"collections\": [],\r\n    \"categories\": [],\r\n    \"diamond_types\": [\r\n      {\r\n        \"label\": \"Natural\",\r\n        \"value\": \"natural\"\r\n      },\r\n      {\r\n        \"label\": \"Lab Grown\",\r\n        \"value\": \"lab_grown\"\r\n      }\r\n    ],\r\n    \"diamond_clarities\": [\r\n      {\r\n        \"label\": \"IF\",\r\n        \"value\": \"IF\"\r\n      },\r\n      {\r\n        \"label\": \"VVS\",\r\n        \"value\": \"VVS\"\r\n      },\r\n      {\r\n        \"label\": \"VVS1\",\r\n        \"value\": \"VVS1\"\r\n      },\r\n      {\r\n        \"label\": \"VVS2\",\r\n        \"value\": \"VVS2\"\r\n      },\r\n      {\r\n        \"label\": \"VS\",\r\n        \"value\": \"VS\"\r\n      },\r\n      {\r\n        \"label\": \"VS1\",\r\n        \"value\": \"VS1\"\r\n      },\r\n      {\r\n        \"label\": \"VS2\",\r\n        \"value\": \"VS2\"\r\n      },\r\n      {\r\n        \"label\": \"SI\",\r\n        \"value\": \"SI\"\r\n      },\r\n      {\r\n        \"label\": \"SI1\",\r\n        \"value\": \"SI1\"\r\n      },\r\n      {\r\n        \"label\": \"SI2\",\r\n        \"value\": \"SI2\"\r\n      },\r\n      {\r\n        \"label\": \"SI3\",\r\n        \"value\": \"SI3\"\r\n      },\r\n      {\r\n        \"label\": \"I\",\r\n        \"value\": \"I\"\r\n      },\r\n      {\r\n        \"label\": \"I1\",\r\n        \"value\": \"I1\"\r\n      },\r\n      {\r\n        \"label\": \"2I\",\r\n        \"value\": \"I2\"\r\n      },\r\n      {\r\n        \"label\": \"IF/VVS\",\r\n        \"value\": \"IF/VVS\"\r\n      },\r\n      {\r\n        \"label\": \"VVS/VS\",\r\n        \"value\": \"VVS/VS\"\r\n      },\r\n      {\r\n        \"label\": \"VS/SI\",\r\n        \"value\": \"VS/SI\"\r\n      },\r\n      {\r\n        \"label\": \"SI/I\",\r\n        \"value\": \"SI/I\"\r\n      },\r\n      {\r\n        \"label\": \"SI/I1\",\r\n        \"value\": \"SI/I1\"\r\n      },\r\n      {\r\n        \"label\": \"DIAMOND\",\r\n        \"value\": \"DIAMOND\"\r\n      }\r\n    ],\r\n    \"diamond_cuts\": [\r\n      {\r\n        \"label\": \"Excellent\",\r\n        \"value\": \"excellent\"\r\n      },\r\n      {\r\n        \"label\": \"Very Good\",\r\n        \"value\": \"very_good\"\r\n      },\r\n      {\r\n        \"label\": \"Good\",\r\n        \"value\": \"good\"\r\n      },\r\n      {\r\n        \"label\": \"Fair\",\r\n        \"value\": \"fair\"\r\n      },\r\n      {\r\n        \"label\": \"Poor\",\r\n        \"value\": \"poor\"\r\n      }\r\n    ],\r\n    \"diamond_shapes\": [\r\n      {\r\n        \"label\": \"Round\",\r\n        \"value\": \"round\"\r\n      },\r\n      {\r\n        \"label\": \"Princess\",\r\n        \"value\": \"princess\"\r\n      },\r\n      {\r\n        \"label\": \"Marquise\",\r\n        \"value\": \"marquise\"\r\n      },\r\n      {\r\n        \"label\": \"Pear\",\r\n        \"value\": \"pear\"\r\n      },\r\n      {\r\n        \"label\": \"Oval\",\r\n        \"value\": \"oval\"\r\n      },\r\n      {\r\n        \"label\": \"Taper Baguette\",\r\n        \"value\": \"tapered_baguette\"\r\n      },\r\n      {\r\n        \"label\": \"Bullet Baguette\",\r\n        \"value\": \"bullet_baguette\"\r\n      },\r\n      {\r\n        \"label\": \"Baguette\",\r\n        \"value\": \"baguette\"\r\n      },\r\n      {\r\n        \"label\": \"Heart\",\r\n        \"value\": \"heart\"\r\n      },\r\n      {\r\n        \"label\": \"Cushion\",\r\n        \"value\": \"cushion\"\r\n      },\r\n      {\r\n        \"label\": \"Radiant\",\r\n        \"value\": \"radiant\"\r\n      },\r\n      {\r\n        \"label\": \"Asscher\",\r\n        \"value\": \"asscher\"\r\n      },\r\n      {\r\n        \"label\": \"Trillion\",\r\n        \"value\": \"trillion\"\r\n      },\r\n      {\r\n        \"label\": \"Lozenge\",\r\n        \"value\": \"lozenge\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald\",\r\n        \"value\": \"emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Half Moon\",\r\n        \"value\": \"halfmoon\"\r\n      },\r\n      {\r\n        \"label\": \"Triangle\",\r\n        \"value\": \"triangle\"\r\n      },\r\n      {\r\n        \"label\": \"Fancy\",\r\n        \"value\": \"fancy\"\r\n      },\r\n      {\r\n        \"label\": \"Trapezoid\",\r\n        \"value\": \"trapezoid\"\r\n      },\r\n      {\r\n        \"label\": \"Kite\",\r\n        \"value\": \"kite\"\r\n      }\r\n    ],\r\n    \"diamond_colors\": [\r\n      {\r\n        \"label\": \"D\",\r\n        \"value\": \"D\"\r\n      },\r\n      {\r\n        \"label\": \"E\",\r\n        \"value\": \"E\"\r\n      },\r\n      {\r\n        \"label\": \"F\",\r\n        \"value\": \"F\"\r\n      },\r\n      {\r\n        \"label\": \"G\",\r\n        \"value\": \"G\"\r\n      },\r\n      {\r\n        \"label\": \"H\",\r\n        \"value\": \"H\"\r\n      },\r\n      {\r\n        \"label\": \"I\",\r\n        \"value\": \"I\"\r\n      },\r\n      {\r\n        \"label\": \"J\",\r\n        \"value\": \"J\"\r\n      },\r\n      {\r\n        \"label\": \"K\",\r\n        \"value\": \"K\"\r\n      },\r\n      {\r\n        \"label\": \"L\",\r\n        \"value\": \"L\"\r\n      },\r\n      {\r\n        \"label\": \"M\",\r\n        \"value\": \"M\"\r\n      },\r\n      {\r\n        \"label\": \"PINK\",\r\n        \"value\": \"PINK\",\r\n        \"type\": \"extra\"\r\n      },\r\n      {\r\n        \"label\": \"BLUE\",\r\n        \"value\": \"BLUE\",\r\n        \"type\": \"extra\"\r\n      },\r\n      {\r\n        \"label\": \"YELLOW\",\r\n        \"value\": \"YELLOW\",\r\n        \"type\": \"extra\"\r\n      },\r\n      {\r\n        \"label\": \"BLACK\",\r\n        \"value\": \"BLACK\",\r\n        \"type\": \"extra\"\r\n      }\r\n    ],\r\n    \"diamond_sizes\": [],\r\n    \"currency\": [\r\n      {\r\n        \"label\": \"INR\",\r\n        \"value\": \"INR\",\r\n        \"symbol\": \"₹\",\r\n        \"name\": \"Indian Rupee\",\r\n        \"country\": \"India\"\r\n      }\r\n    ],\r\n    \"default_currency\": \"INR\",\r\n    \"gemstone_qualities\": [\r\n      {\r\n        \"label\": \"Precious\",\r\n        \"value\": \"precious\"\r\n      },\r\n      {\r\n        \"label\": \"Semi precious\",\r\n        \"value\": \"semi-precious\"\r\n      },\r\n      {\r\n        \"label\": \"Polki\",\r\n        \"value\": \"polki\"\r\n      },\r\n      {\r\n        \"label\": \"Kundan\",\r\n        \"value\": \"kundan\"\r\n      },\r\n      {\r\n        \"label\": \"Uncut\",\r\n        \"value\": \"uncut\"\r\n      },\r\n      {\r\n        \"label\": \"Hydro\",\r\n        \"value\": \"hydro\"\r\n      },\r\n      {\r\n        \"label\": \"Doublet\",\r\n        \"value\": \"doublet\"\r\n      },\r\n      {\r\n        \"label\": \"925 Sterling Silver\",\r\n        \"value\": \"925-sterling-silver\"\r\n      },\r\n      {\r\n        \"label\": \"Fashion\",\r\n        \"value\": \"fashion\"\r\n      },\r\n      {\r\n        \"label\": \"Gold\",\r\n        \"value\": \"gold\"\r\n      },\r\n      {\r\n        \"label\": \"Pearl\",\r\n        \"value\": \"pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Silver\",\r\n        \"value\": \"silver\"\r\n      },\r\n      {\r\n        \"label\": \"Southsea\",\r\n        \"value\": \"southsea\"\r\n      },\r\n      {\r\n        \"label\": \"Pearls\",\r\n        \"value\": \"pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Gemstone\",\r\n        \"value\": \"gemstone\"\r\n      }\r\n    ],\r\n    \"gemstone_shapes\": [\r\n      {\r\n        \"label\": \"Pumpkin Beads/Kharbuja\",\r\n        \"value\": \"pumpkin_beads/kharbuja\"\r\n      },\r\n      {\r\n        \"label\": \"Potato\",\r\n        \"value\": \"potato\"\r\n      },\r\n      {\r\n        \"label\": \"Seed\",\r\n        \"value\": \"seed\"\r\n      },\r\n      {\r\n        \"label\": \"Drop\",\r\n        \"value\": \"drop\"\r\n      },\r\n      {\r\n        \"label\": \"Flat\",\r\n        \"value\": \"flat\"\r\n      },\r\n      {\r\n        \"label\": \"Triangle\",\r\n        \"value\": \"triangle\"\r\n      },\r\n      {\r\n        \"label\": \"Tumble\",\r\n        \"value\": \"tumble\"\r\n      },\r\n      {\r\n        \"label\": \"Uneven Shape\",\r\n        \"value\": \"uneven-shape\"\r\n      },\r\n      {\r\n        \"label\": \"Rice\",\r\n        \"value\": \"rice\"\r\n      },\r\n      {\r\n        \"label\": \"Keshi\",\r\n        \"value\": \"keshi\"\r\n      },\r\n      {\r\n        \"label\": \"Tumble/Uneven Shape\",\r\n        \"value\": \"tumble/uneven_shape\"\r\n      },\r\n      {\r\n        \"label\": \"Beads\",\r\n        \"value\": \"beads\"\r\n      },\r\n      {\r\n        \"label\": \"Drum\",\r\n        \"value\": \"drum\"\r\n      },\r\n      {\r\n        \"label\": \"Button\",\r\n        \"value\": \"button\"\r\n      },\r\n      {\r\n        \"label\": \"Marquise\",\r\n        \"value\": \"marquise\"\r\n      },\r\n      {\r\n        \"label\": \"Pear\",\r\n        \"value\": \"pear\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald\",\r\n        \"value\": \"emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Oval\",\r\n        \"value\": \"oval\"\r\n      },\r\n      {\r\n        \"label\": \"Square\",\r\n        \"value\": \"square\"\r\n      },\r\n      {\r\n        \"label\": \"Round\",\r\n        \"value\": \"round\"\r\n      }\r\n    ],\r\n    \"gemstone_types\": [\r\n      {\r\n        \"label\": \"Undrilled\",\r\n        \"value\": \"undrilled\"\r\n      },\r\n      {\r\n        \"label\": \"Blue sapphire\",\r\n        \"value\": \"blue-sapphire\"\r\n      },\r\n      {\r\n        \"label\": \"Blue sapphire-beads\",\r\n        \"value\": \"blue-sapphire-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Real coral\",\r\n        \"value\": \"real-coral\"\r\n      },\r\n      {\r\n        \"label\": \"Claw\",\r\n        \"value\": \"claw\"\r\n      },\r\n      {\r\n        \"label\": \"Cubic zirconia\",\r\n        \"value\": \"cubic-zirconia\"\r\n      },\r\n      {\r\n        \"label\": \"Cubic zircon\",\r\n        \"value\": \"cubic-zircon\"\r\n      },\r\n      {\r\n        \"label\": \"Real emerald\",\r\n        \"value\": \"real-emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Garnet\",\r\n        \"value\": \"garnet\"\r\n      },\r\n      {\r\n        \"label\": \"Gempu ruby\",\r\n        \"value\": \"gempu-ruby\"\r\n      },\r\n      {\r\n        \"label\": \"Multicolor mix\",\r\n        \"value\": \"multicolor-mix\"\r\n      },\r\n      {\r\n        \"label\": \"Navratna set with cubic zirconia\",\r\n        \"value\": \"navratna-set-with-cubic-zirconia\"\r\n      },\r\n      {\r\n        \"label\": \"Navratna set with diamond\",\r\n        \"value\": \"navratna-set-with-diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby beads\",\r\n        \"value\": \"ruby-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby emerald\",\r\n        \"value\": \"ruby-emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Black diamond\",\r\n        \"value\": \"black-diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Southsea cream-pearl\",\r\n        \"value\": \"southsea-cream-pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Spinnel ruby red\",\r\n        \"value\": \"spinnel-ruby-red\"\r\n      },\r\n      {\r\n        \"label\": \"Synthetic\",\r\n        \"value\": \"synthetic\"\r\n      },\r\n      {\r\n        \"label\": \"Synthetic beads\",\r\n        \"value\": \"synthetic-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Turquoise\",\r\n        \"value\": \"turquoise\"\r\n      },\r\n      {\r\n        \"label\": \"Watch\",\r\n        \"value\": \"watch\"\r\n      },\r\n      {\r\n        \"label\": \"Wax\",\r\n        \"value\": \"wax\"\r\n      },\r\n      {\r\n        \"label\": \"Yellow topaz\",\r\n        \"value\": \"yellow-topaz\"\r\n      },\r\n      {\r\n        \"label\": \"Topaz\",\r\n        \"value\": \"topaz\"\r\n      },\r\n      {\r\n        \"label\": \"Colour Stones\",\r\n        \"value\": \"colour-stones\"\r\n      },\r\n      {\r\n        \"label\": \"Crystal\",\r\n        \"value\": \"crystal\"\r\n      },\r\n      {\r\n        \"label\": \"Mother of Pearl\",\r\n        \"value\": \"mother-of-pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Multi Stones\",\r\n        \"value\": \"multi-stones\"\r\n      },\r\n      {\r\n        \"label\": \"Semi Precious\",\r\n        \"value\": \"semi-precious\"\r\n      },\r\n      {\r\n        \"label\": \"Freshwater Pearls\",\r\n        \"value\": \"freshwater-pearls\"\r\n      },\r\n      {\r\n        \"label\": \"UnCut Diamond\",\r\n        \"value\": \"uncut-diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Victorian Balls\",\r\n        \"value\": \"victorian-balls\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby\",\r\n        \"value\": \"ruby\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald\",\r\n        \"value\": \"emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Pearl\",\r\n        \"value\": \"pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Sapphire\",\r\n        \"value\": \"sapphire\"\r\n      },\r\n      {\r\n        \"label\": \"Amethyst\",\r\n        \"value\": \"amethyst\"\r\n      },\r\n      {\r\n        \"label\": \"Beads\",\r\n        \"value\": \"beads\"\r\n      },\r\n      {\r\n        \"label\": \"Black beeds\",\r\n        \"value\": \"black-beeds\"\r\n      },\r\n      {\r\n        \"label\": \"Real ruby\",\r\n        \"value\": \"real-ruby\"\r\n      },\r\n      {\r\n        \"label\": \"Jade\",\r\n        \"value\": \"jade\"\r\n      },\r\n      {\r\n        \"label\": \"SouthSea Pearls\",\r\n        \"value\": \"southsea_pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Tahitian Pearl\",\r\n        \"value\": \"tahitian_pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Wiring\",\r\n        \"value\": \"wiring\"\r\n      },\r\n      {\r\n        \"label\": \"Invisible\",\r\n        \"value\": \"invisible\"\r\n      },\r\n      {\r\n        \"label\": \"Fresh Water Pearls\",\r\n        \"value\": \"fresh_water_pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Basara Pearls\",\r\n        \"value\": \"basara-pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Beryl Emerald\",\r\n        \"value\": \"beryl-emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Black Beads\",\r\n        \"value\": \"black-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Black Diamonds\",\r\n        \"value\": \"black-diamonds\"\r\n      },\r\n      {\r\n        \"label\": \"Cats Eye\",\r\n        \"value\": \"cats-eye\"\r\n      },\r\n      {\r\n        \"label\": \"Color stones\",\r\n        \"value\": \"color-stones\"\r\n      },\r\n      {\r\n        \"label\": \"Coral\",\r\n        \"value\": \"coral\"\r\n      },\r\n      {\r\n        \"label\": \"emeralds\",\r\n        \"value\": \"emeralds\"\r\n      },\r\n      {\r\n        \"label\": \"Fluorite\",\r\n        \"value\": \"fluorite\"\r\n      },\r\n      {\r\n        \"label\": \"Gomed\",\r\n        \"value\": \"gomed\"\r\n      },\r\n      {\r\n        \"label\": \"Hessonite Garnet\",\r\n        \"value\": \"hessonite-garnet\"\r\n      },\r\n      {\r\n        \"label\": \"Lapis\",\r\n        \"value\": \"lapis\"\r\n      },\r\n      {\r\n        \"label\": \"Moon Stone\",\r\n        \"value\": \"moon-stone\"\r\n      },\r\n      {\r\n        \"label\": \"Morganite\",\r\n        \"value\": \"morganite\"\r\n      },\r\n      {\r\n        \"label\": \"Navratan\",\r\n        \"value\": \"navratan\"\r\n      },\r\n      {\r\n        \"label\": \"Peridot\",\r\n        \"value\": \"peridot\"\r\n      },\r\n      {\r\n        \"label\": \"Precious Stone\",\r\n        \"value\": \"precious-stone\"\r\n      },\r\n      {\r\n        \"label\": \"R+E+P\",\r\n        \"value\": \"r+e+p\"\r\n      },\r\n      {\r\n        \"label\": \"Rubies\",\r\n        \"value\": \"rubies\"\r\n      },\r\n      {\r\n        \"label\": \"Shell Pearl\",\r\n        \"value\": \"shell-pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Tahitian Pearls\",\r\n        \"value\": \"tahitian-pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Tarmoline\",\r\n        \"value\": \"tarmoline\"\r\n      },\r\n      {\r\n        \"label\": \"Yellow Sapphire\",\r\n        \"value\": \"yellow-sapphire\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby Lab Created\",\r\n        \"value\": \"ruby-lab-created\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald Lab Created\",\r\n        \"value\": \"emerald-lab-created\"\r\n      },\r\n      {\r\n        \"label\": \"Blue Sapphire Lab Created\",\r\n        \"value\": \"blue-sapphire-lab-created\"\r\n      },\r\n      {\r\n        \"label\": \"CZ\",\r\n        \"value\": \"cz\"\r\n      },\r\n      {\r\n        \"label\": \"South Sea Pearls\",\r\n        \"value\": \"south-sea-pearls\"\r\n      }\r\n    ],\r\n    \"diamond_labs\": [\r\n      {\r\n        \"label\": \"AGS\",\r\n        \"value\": \"AGS\"\r\n      },\r\n      {\r\n        \"label\": \"DGLA\",\r\n        \"value\": \"DGLA\"\r\n      },\r\n      {\r\n        \"label\": \"DGSL\",\r\n        \"value\": \"DGSL\"\r\n      },\r\n      {\r\n        \"label\": \"DHC\",\r\n        \"value\": \"DHC\"\r\n      },\r\n      {\r\n        \"label\": \"EGL\",\r\n        \"value\": \"EGL\"\r\n      },\r\n      {\r\n        \"label\": \"Forevermark\",\r\n        \"value\": \"Forevermark\"\r\n      },\r\n      {\r\n        \"label\": \"GIA\",\r\n        \"value\": \"GIA\"\r\n      },\r\n      {\r\n        \"label\": \"GII\",\r\n        \"value\": \"GII\"\r\n      },\r\n      {\r\n        \"label\": \"GSI\",\r\n        \"value\": \"GSI\"\r\n      },\r\n      {\r\n        \"label\": \"HRD\",\r\n        \"value\": \"HRD\"\r\n      },\r\n      {\r\n        \"label\": \"IDT\",\r\n        \"value\": \"IDT\"\r\n      },\r\n      {\r\n        \"label\": \"IIDGR\",\r\n        \"value\": \"IIDGR\"\r\n      },\r\n      {\r\n        \"label\": \"IGI\",\r\n        \"value\": \"IGI\"\r\n      },\r\n      {\r\n        \"label\": \"IIG\",\r\n        \"value\": \"IIG\"\r\n      },\r\n      {\r\n        \"label\": \"SGL\",\r\n        \"value\": \"SGL\"\r\n      },\r\n      {\r\n        \"label\": \"PTR\",\r\n        \"value\": \"PTR\"\r\n      }\r\n    ],\r\n    \"hide_pricing\": false\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/business_settings","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>net_weight</td>\n<td>How the net weight is calculated. Possible values are: \"auto\" (net weight is calculated automatically), \"manual\" (net weight is entered manually)</td>\n</tr>\n<tr>\n<td>default_currency</td>\n<td>The default currency you deal in for pricing. Possible values: \"INR\" (Indian Rupee), \"USD\" (US Dollar), \"EUR\" (Euro), \"GBP\" (British Pound), \"AUD\" (Australian Dollar), \"AED\" (Emirati Dirham), \"SGD\" (Singapore Dollar), \"SAR\" (Saudi Riyal), \"ZAR\" (South African Rand), \"CAD\" (Canadian Dollar), \"JPY\" (Japanese Yen), \"CNY\" (Chinese Yuan), \"VND\" (Vietnamese Dong), \"THB\" (Thai Baht), \"KWD\" (Kuwaiti Dinar)</td>\n</tr>\n<tr>\n<td>types</td>\n<td>The types of jewellery you deal in. Examples: \"diamond\" (Diamond Jewellery), \"silver\" (Silver Jewellery), \"platinium\" (Platinum Jewellery), \"gemstone\" (Gemstone Jewellery), \"antique\" (Antique / Jadau Jewellery), \"cz\" (CZ Jewellery), \"gold\" (Gold Jewellery)</td>\n</tr>\n<tr>\n<td>gold_purities</td>\n<td>Gold purity you deal in. Examples: \"916\" (22KT), \"750\" (18KT), \"999\" (24KT), \"999.99\" (24KT), \"995\" (24KT), \"583\" (14KT), \"375\" (9KT)</td>\n</tr>\n<tr>\n<td>silver_purities</td>\n<td>Silver purity you deal in. Examples: \"995\" (Fine Silver), \"925\" (Sterling Silver), \"999\" (Fine Silver), \"800\", \"750\", \"850\", \"650\"</td>\n</tr>\n<tr>\n<td>platinum_purities</td>\n<td>Platinum purity you deal in. Examples: \"900\" (90% pure), \"950\" (95% pure), \"850\" (85% pure)</td>\n</tr>\n<tr>\n<td>colors</td>\n<td>Metal colors you offer. Examples: \"white\" (White color), \"yellow\" (Yellow color), \"rose\" (Rose gold), \"two-tone\" (Combination of two colors)</td>\n</tr>\n<tr>\n<td>diamond_types</td>\n<td>Types of diamonds you offer. Examples: \"natural\" (Natural Diamond), \"lab_grown\" (Lab Grown Diamond)</td>\n</tr>\n<tr>\n<td>diamond_clarities</td>\n<td>Diamond clarity you offer. Examples: \"IF\" (Internally Flawless), \"VVS\" (Very Very Slightly Included), \"VS\" (Very Slightly Included), \"SI\" (Slightly Included), \"I\" (Included)</td>\n</tr>\n<tr>\n<td>diamond_cuts</td>\n<td>Diamond cuts you offer. Examples: \"excellent\", \"very_good\", \"good\", \"fair\", \"poor\"</td>\n</tr>\n<tr>\n<td>diamond_shapes</td>\n<td>Diamond shapes you deal in. Examples: \"round\", \"princess\", \"marquise\", \"pear\", \"oval\", \"baguette\", \"heart\"</td>\n</tr>\n<tr>\n<td>diamond_colors</td>\n<td>Diamond color grades you offer. Examples: \"D\" (Colorless), \"E\", \"F\", \"G\", \"H\", \"I\", \"J\", \"PINK\" (Pink Diamond), \"BLUE\" (Blue Diamond)</td>\n</tr>\n<tr>\n<td>gemstone_qualities</td>\n<td>Gemstone qualities you deal in. Examples: \"precious\", \"semi-precious\", \"polki\", \"kundan\", \"uncut\", \"hydro\", \"doublet\"</td>\n</tr>\n<tr>\n<td>gemstone_shapes</td>\n<td>Gemstone shapes you deal in. Examples: \"pumpkin_beads/kharbuja\", \"pear\", \"oval\", \"round\", \"triangle\"</td>\n</tr>\n<tr>\n<td>gemstone_types</td>\n<td>Types of gemstones you deal in. Examples: \"undrilled\", \"blue-sapphire\", \"real-coral\", \"ruby\", \"emerald\", \"pearl\", \"sapphire\"</td>\n</tr>\n<tr>\n<td>diamond_labs</td>\n<td>Diamond certification labs you work with. Examples: \"AGS\", \"GIA\", \"IGI\", \"EGL\", \"HRD\", \"IIDGR\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","business_settings"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"87a4a2f6-b180-4e7c-a07e-75436ebaab89","name":"update Business settings","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"types\": [\r\n      {\r\n        \"label\": \"Diamond Jewellery\",\r\n        \"value\": \"diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Silver Jewellery\",\r\n        \"value\": \"silver\"\r\n      },\r\n      {\r\n        \"label\": \"Platinum Jewellery\",\r\n        \"value\": \"platinium\"\r\n      },\r\n      {\r\n        \"label\": \"Gemstone Jewellery\",\r\n        \"value\": \"gemstone\"\r\n      },\r\n      {\r\n        \"label\": \"Antique / Jadau Jewellery\",\r\n        \"value\": \"antique\"\r\n      },\r\n      {\r\n        \"label\": \"CZ Jewellery\",\r\n        \"value\": \"cz\"\r\n      },\r\n      {\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold\"\r\n      }\r\n    ],\r\n    \"gold_purities\": [\r\n      {\r\n        \"label\": \"22KT (916)\",\r\n        \"value\": \"916\"\r\n      },\r\n      {\r\n        \"label\": \"18KT (750)\",\r\n        \"value\": \"750\"\r\n      },\r\n      {\r\n        \"label\": \"24KT (999)\",\r\n        \"value\": \"999\"\r\n      },\r\n      {\r\n        \"label\": \"24KT (999.99)\",\r\n        \"value\": \"999.99\"\r\n      },\r\n      {\r\n        \"label\": \"24KT (995)\",\r\n        \"value\": \"995\"\r\n      },\r\n      {\r\n        \"label\": \"14KT (583)\",\r\n        \"value\": \"583\"\r\n      },\r\n      {\r\n        \"label\": \"9KT (375)\",\r\n        \"value\": \"375\"\r\n      }\r\n    ],\r\n    \"silver_purities\": [\r\n      {\r\n        \"label\": \"Fine (995)\",\r\n        \"value\": \"995\"\r\n      },\r\n      {\r\n        \"label\": \"Sterling (925)\",\r\n        \"value\": \"925\"\r\n      },\r\n      {\r\n        \"label\": \"Fine (999)\",\r\n        \"value\": \"999\"\r\n      },\r\n      {\r\n        \"label\": \"800\",\r\n        \"value\": \"800\"\r\n      },\r\n      {\r\n        \"label\": \"750\",\r\n        \"value\": \"750\"\r\n      },\r\n      {\r\n        \"label\": \"850\",\r\n        \"value\": \"850\"\r\n      },\r\n      {\r\n        \"label\": \"650\",\r\n        \"value\": \"650\"\r\n      }\r\n    ],\r\n    \"platinum_purities\": [\r\n      {\r\n        \"label\": \"900\",\r\n        \"value\": \"900\"\r\n      },\r\n      {\r\n        \"label\": \"950\",\r\n        \"value\": \"950\"\r\n      },\r\n      {\r\n        \"label\": \"850\",\r\n        \"value\": \"850\"\r\n      }\r\n    ],\r\n    \"colors\": [\r\n      {\r\n        \"label\": \"White\",\r\n        \"value\": \"white\"\r\n      },\r\n      {\r\n        \"label\": \"Yellow\",\r\n        \"value\": \"yellow\"\r\n      },\r\n      {\r\n        \"label\": \"Rose\",\r\n        \"value\": \"rose\"\r\n      },\r\n      {\r\n        \"label\": \"Two Tone\",\r\n        \"value\": \"two-tone\"\r\n      }\r\n    ],\r\n    \"net_weight\": \"auto\",\r\n    \"auto_diamond_sieve\": \"\",\r\n    \"collections\": [],\r\n    \"categories\": [],\r\n    \"diamond_types\": [\r\n      {\r\n        \"label\": \"Natural\",\r\n        \"value\": \"natural\"\r\n      },\r\n      {\r\n        \"label\": \"Lab Grown\",\r\n        \"value\": \"lab_grown\"\r\n      }\r\n    ],\r\n    \"diamond_clarities\": [\r\n      {\r\n        \"label\": \"IF\",\r\n        \"value\": \"IF\"\r\n      },\r\n      {\r\n        \"label\": \"VVS\",\r\n        \"value\": \"VVS\"\r\n      },\r\n      {\r\n        \"label\": \"VVS1\",\r\n        \"value\": \"VVS1\"\r\n      },\r\n      {\r\n        \"label\": \"VVS2\",\r\n        \"value\": \"VVS2\"\r\n      },\r\n      {\r\n        \"label\": \"VS\",\r\n        \"value\": \"VS\"\r\n      },\r\n      {\r\n        \"label\": \"VS1\",\r\n        \"value\": \"VS1\"\r\n      },\r\n      {\r\n        \"label\": \"VS2\",\r\n        \"value\": \"VS2\"\r\n      },\r\n      {\r\n        \"label\": \"SI\",\r\n        \"value\": \"SI\"\r\n      },\r\n      {\r\n        \"label\": \"SI1\",\r\n        \"value\": \"SI1\"\r\n      },\r\n      {\r\n        \"label\": \"SI2\",\r\n        \"value\": \"SI2\"\r\n      },\r\n      {\r\n        \"label\": \"SI3\",\r\n        \"value\": \"SI3\"\r\n      },\r\n      {\r\n        \"label\": \"I\",\r\n        \"value\": \"I\"\r\n      },\r\n      {\r\n        \"label\": \"I1\",\r\n        \"value\": \"I1\"\r\n      },\r\n      {\r\n        \"label\": \"2I\",\r\n        \"value\": \"I2\"\r\n      },\r\n      {\r\n        \"label\": \"IF/VVS\",\r\n        \"value\": \"IF/VVS\"\r\n      },\r\n      {\r\n        \"label\": \"VVS/VS\",\r\n        \"value\": \"VVS/VS\"\r\n      },\r\n      {\r\n        \"label\": \"VS/SI\",\r\n        \"value\": \"VS/SI\"\r\n      },\r\n      {\r\n        \"label\": \"SI/I\",\r\n        \"value\": \"SI/I\"\r\n      },\r\n      {\r\n        \"label\": \"SI/I1\",\r\n        \"value\": \"SI/I1\"\r\n      },\r\n      {\r\n        \"label\": \"DIAMOND\",\r\n        \"value\": \"DIAMOND\"\r\n      }\r\n    ],\r\n    \"diamond_cuts\": [\r\n      {\r\n        \"label\": \"Excellent\",\r\n        \"value\": \"excellent\"\r\n      },\r\n      {\r\n        \"label\": \"Very Good\",\r\n        \"value\": \"very_good\"\r\n      },\r\n      {\r\n        \"label\": \"Good\",\r\n        \"value\": \"good\"\r\n      },\r\n      {\r\n        \"label\": \"Fair\",\r\n        \"value\": \"fair\"\r\n      },\r\n      {\r\n        \"label\": \"Poor\",\r\n        \"value\": \"poor\"\r\n      }\r\n    ],\r\n    \"diamond_shapes\": [\r\n      {\r\n        \"label\": \"Round\",\r\n        \"value\": \"round\"\r\n      },\r\n      {\r\n        \"label\": \"Princess\",\r\n        \"value\": \"princess\"\r\n      },\r\n      {\r\n        \"label\": \"Marquise\",\r\n        \"value\": \"marquise\"\r\n      },\r\n      {\r\n        \"label\": \"Pear\",\r\n        \"value\": \"pear\"\r\n      },\r\n      {\r\n        \"label\": \"Oval\",\r\n        \"value\": \"oval\"\r\n      },\r\n      {\r\n        \"label\": \"Taper Baguette\",\r\n        \"value\": \"tapered_baguette\"\r\n      },\r\n      {\r\n        \"label\": \"Bullet Baguette\",\r\n        \"value\": \"bullet_baguette\"\r\n      },\r\n      {\r\n        \"label\": \"Baguette\",\r\n        \"value\": \"baguette\"\r\n      },\r\n      {\r\n        \"label\": \"Heart\",\r\n        \"value\": \"heart\"\r\n      },\r\n      {\r\n        \"label\": \"Cushion\",\r\n        \"value\": \"cushion\"\r\n      },\r\n      {\r\n        \"label\": \"Radiant\",\r\n        \"value\": \"radiant\"\r\n      },\r\n      {\r\n        \"label\": \"Asscher\",\r\n        \"value\": \"asscher\"\r\n      },\r\n      {\r\n        \"label\": \"Trillion\",\r\n        \"value\": \"trillion\"\r\n      },\r\n      {\r\n        \"label\": \"Lozenge\",\r\n        \"value\": \"lozenge\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald\",\r\n        \"value\": \"emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Half Moon\",\r\n        \"value\": \"halfmoon\"\r\n      },\r\n      {\r\n        \"label\": \"Triangle\",\r\n        \"value\": \"triangle\"\r\n      },\r\n      {\r\n        \"label\": \"Fancy\",\r\n        \"value\": \"fancy\"\r\n      },\r\n      {\r\n        \"label\": \"Trapezoid\",\r\n        \"value\": \"trapezoid\"\r\n      },\r\n      {\r\n        \"label\": \"Kite\",\r\n        \"value\": \"kite\"\r\n      }\r\n    ],\r\n    \"diamond_colors\": [\r\n      {\r\n        \"label\": \"D\",\r\n        \"value\": \"D\"\r\n      },\r\n      {\r\n        \"label\": \"E\",\r\n        \"value\": \"E\"\r\n      },\r\n      {\r\n        \"label\": \"F\",\r\n        \"value\": \"F\"\r\n      },\r\n      {\r\n        \"label\": \"G\",\r\n        \"value\": \"G\"\r\n      },\r\n      {\r\n        \"label\": \"H\",\r\n        \"value\": \"H\"\r\n      },\r\n      {\r\n        \"label\": \"I\",\r\n        \"value\": \"I\"\r\n      },\r\n      {\r\n        \"label\": \"J\",\r\n        \"value\": \"J\"\r\n      },\r\n      {\r\n        \"label\": \"K\",\r\n        \"value\": \"K\"\r\n      },\r\n      {\r\n        \"label\": \"L\",\r\n        \"value\": \"L\"\r\n      },\r\n      {\r\n        \"label\": \"M\",\r\n        \"value\": \"M\"\r\n      },\r\n      {\r\n        \"label\": \"PINK\",\r\n        \"value\": \"PINK\",\r\n        \"type\": \"extra\"\r\n      },\r\n      {\r\n        \"label\": \"BLUE\",\r\n        \"value\": \"BLUE\",\r\n        \"type\": \"extra\"\r\n      },\r\n      {\r\n        \"label\": \"YELLOW\",\r\n        \"value\": \"YELLOW\",\r\n        \"type\": \"extra\"\r\n      },\r\n      {\r\n        \"label\": \"BLACK\",\r\n        \"value\": \"BLACK\",\r\n        \"type\": \"extra\"\r\n      }\r\n    ],\r\n    \"diamond_sizes\": [],\r\n    \"currency\": [\r\n      {\r\n        \"label\": \"INR\",\r\n        \"value\": \"INR\",\r\n        \"symbol\": \"₹\",\r\n        \"name\": \"Indian Rupee\",\r\n        \"country\": \"India\"\r\n      }\r\n    ],\r\n    \"default_currency\": \"INR\",\r\n    \"gemstone_qualities\": [\r\n      {\r\n        \"label\": \"Precious\",\r\n        \"value\": \"precious\"\r\n      },\r\n      {\r\n        \"label\": \"Semi precious\",\r\n        \"value\": \"semi-precious\"\r\n      },\r\n      {\r\n        \"label\": \"Polki\",\r\n        \"value\": \"polki\"\r\n      },\r\n      {\r\n        \"label\": \"Kundan\",\r\n        \"value\": \"kundan\"\r\n      },\r\n      {\r\n        \"label\": \"Uncut\",\r\n        \"value\": \"uncut\"\r\n      },\r\n      {\r\n        \"label\": \"Hydro\",\r\n        \"value\": \"hydro\"\r\n      },\r\n      {\r\n        \"label\": \"Doublet\",\r\n        \"value\": \"doublet\"\r\n      },\r\n      {\r\n        \"label\": \"925 Sterling Silver\",\r\n        \"value\": \"925-sterling-silver\"\r\n      },\r\n      {\r\n        \"label\": \"Fashion\",\r\n        \"value\": \"fashion\"\r\n      },\r\n      {\r\n        \"label\": \"Gold\",\r\n        \"value\": \"gold\"\r\n      },\r\n      {\r\n        \"label\": \"Pearl\",\r\n        \"value\": \"pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Silver\",\r\n        \"value\": \"silver\"\r\n      },\r\n      {\r\n        \"label\": \"Southsea\",\r\n        \"value\": \"southsea\"\r\n      },\r\n      {\r\n        \"label\": \"Pearls\",\r\n        \"value\": \"pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Gemstone\",\r\n        \"value\": \"gemstone\"\r\n      }\r\n    ],\r\n    \"gemstone_shapes\": [\r\n      {\r\n        \"label\": \"Pumpkin Beads/Kharbuja\",\r\n        \"value\": \"pumpkin_beads/kharbuja\"\r\n      },\r\n      {\r\n        \"label\": \"Potato\",\r\n        \"value\": \"potato\"\r\n      },\r\n      {\r\n        \"label\": \"Seed\",\r\n        \"value\": \"seed\"\r\n      },\r\n      {\r\n        \"label\": \"Drop\",\r\n        \"value\": \"drop\"\r\n      },\r\n      {\r\n        \"label\": \"Flat\",\r\n        \"value\": \"flat\"\r\n      },\r\n      {\r\n        \"label\": \"Triangle\",\r\n        \"value\": \"triangle\"\r\n      },\r\n      {\r\n        \"label\": \"Tumble\",\r\n        \"value\": \"tumble\"\r\n      },\r\n      {\r\n        \"label\": \"Uneven Shape\",\r\n        \"value\": \"uneven-shape\"\r\n      },\r\n      {\r\n        \"label\": \"Rice\",\r\n        \"value\": \"rice\"\r\n      },\r\n      {\r\n        \"label\": \"Keshi\",\r\n        \"value\": \"keshi\"\r\n      },\r\n      {\r\n        \"label\": \"Tumble/Uneven Shape\",\r\n        \"value\": \"tumble/uneven_shape\"\r\n      },\r\n      {\r\n        \"label\": \"Beads\",\r\n        \"value\": \"beads\"\r\n      },\r\n      {\r\n        \"label\": \"Drum\",\r\n        \"value\": \"drum\"\r\n      },\r\n      {\r\n        \"label\": \"Button\",\r\n        \"value\": \"button\"\r\n      },\r\n      {\r\n        \"label\": \"Marquise\",\r\n        \"value\": \"marquise\"\r\n      },\r\n      {\r\n        \"label\": \"Pear\",\r\n        \"value\": \"pear\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald\",\r\n        \"value\": \"emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Oval\",\r\n        \"value\": \"oval\"\r\n      },\r\n      {\r\n        \"label\": \"Square\",\r\n        \"value\": \"square\"\r\n      },\r\n      {\r\n        \"label\": \"Round\",\r\n        \"value\": \"round\"\r\n      }\r\n    ],\r\n    \"gemstone_types\": [\r\n      {\r\n        \"label\": \"Undrilled\",\r\n        \"value\": \"undrilled\"\r\n      },\r\n      {\r\n        \"label\": \"Blue sapphire\",\r\n        \"value\": \"blue-sapphire\"\r\n      },\r\n      {\r\n        \"label\": \"Blue sapphire-beads\",\r\n        \"value\": \"blue-sapphire-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Real coral\",\r\n        \"value\": \"real-coral\"\r\n      },\r\n      {\r\n        \"label\": \"Claw\",\r\n        \"value\": \"claw\"\r\n      },\r\n      {\r\n        \"label\": \"Cubic zirconia\",\r\n        \"value\": \"cubic-zirconia\"\r\n      },\r\n      {\r\n        \"label\": \"Cubic zircon\",\r\n        \"value\": \"cubic-zircon\"\r\n      },\r\n      {\r\n        \"label\": \"Real emerald\",\r\n        \"value\": \"real-emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Garnet\",\r\n        \"value\": \"garnet\"\r\n      },\r\n      {\r\n        \"label\": \"Gempu ruby\",\r\n        \"value\": \"gempu-ruby\"\r\n      },\r\n      {\r\n        \"label\": \"Multicolor mix\",\r\n        \"value\": \"multicolor-mix\"\r\n      },\r\n      {\r\n        \"label\": \"Navratna set with cubic zirconia\",\r\n        \"value\": \"navratna-set-with-cubic-zirconia\"\r\n      },\r\n      {\r\n        \"label\": \"Navratna set with diamond\",\r\n        \"value\": \"navratna-set-with-diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby beads\",\r\n        \"value\": \"ruby-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby emerald\",\r\n        \"value\": \"ruby-emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Black diamond\",\r\n        \"value\": \"black-diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Southsea cream-pearl\",\r\n        \"value\": \"southsea-cream-pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Spinnel ruby red\",\r\n        \"value\": \"spinnel-ruby-red\"\r\n      },\r\n      {\r\n        \"label\": \"Synthetic\",\r\n        \"value\": \"synthetic\"\r\n      },\r\n      {\r\n        \"label\": \"Synthetic beads\",\r\n        \"value\": \"synthetic-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Turquoise\",\r\n        \"value\": \"turquoise\"\r\n      },\r\n      {\r\n        \"label\": \"Watch\",\r\n        \"value\": \"watch\"\r\n      },\r\n      {\r\n        \"label\": \"Wax\",\r\n        \"value\": \"wax\"\r\n      },\r\n      {\r\n        \"label\": \"Yellow topaz\",\r\n        \"value\": \"yellow-topaz\"\r\n      },\r\n      {\r\n        \"label\": \"Topaz\",\r\n        \"value\": \"topaz\"\r\n      },\r\n      {\r\n        \"label\": \"Colour Stones\",\r\n        \"value\": \"colour-stones\"\r\n      },\r\n      {\r\n        \"label\": \"Crystal\",\r\n        \"value\": \"crystal\"\r\n      },\r\n      {\r\n        \"label\": \"Mother of Pearl\",\r\n        \"value\": \"mother-of-pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Multi Stones\",\r\n        \"value\": \"multi-stones\"\r\n      },\r\n      {\r\n        \"label\": \"Semi Precious\",\r\n        \"value\": \"semi-precious\"\r\n      },\r\n      {\r\n        \"label\": \"Freshwater Pearls\",\r\n        \"value\": \"freshwater-pearls\"\r\n      },\r\n      {\r\n        \"label\": \"UnCut Diamond\",\r\n        \"value\": \"uncut-diamond\"\r\n      },\r\n      {\r\n        \"label\": \"Victorian Balls\",\r\n        \"value\": \"victorian-balls\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby\",\r\n        \"value\": \"ruby\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald\",\r\n        \"value\": \"emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Pearl\",\r\n        \"value\": \"pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Sapphire\",\r\n        \"value\": \"sapphire\"\r\n      },\r\n      {\r\n        \"label\": \"Amethyst\",\r\n        \"value\": \"amethyst\"\r\n      },\r\n      {\r\n        \"label\": \"Beads\",\r\n        \"value\": \"beads\"\r\n      },\r\n      {\r\n        \"label\": \"Black beeds\",\r\n        \"value\": \"black-beeds\"\r\n      },\r\n      {\r\n        \"label\": \"Real ruby\",\r\n        \"value\": \"real-ruby\"\r\n      },\r\n      {\r\n        \"label\": \"Jade\",\r\n        \"value\": \"jade\"\r\n      },\r\n      {\r\n        \"label\": \"SouthSea Pearls\",\r\n        \"value\": \"southsea_pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Tahitian Pearl\",\r\n        \"value\": \"tahitian_pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Wiring\",\r\n        \"value\": \"wiring\"\r\n      },\r\n      {\r\n        \"label\": \"Invisible\",\r\n        \"value\": \"invisible\"\r\n      },\r\n      {\r\n        \"label\": \"Fresh Water Pearls\",\r\n        \"value\": \"fresh_water_pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Basara Pearls\",\r\n        \"value\": \"basara-pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Beryl Emerald\",\r\n        \"value\": \"beryl-emerald\"\r\n      },\r\n      {\r\n        \"label\": \"Black Beads\",\r\n        \"value\": \"black-beads\"\r\n      },\r\n      {\r\n        \"label\": \"Black Diamonds\",\r\n        \"value\": \"black-diamonds\"\r\n      },\r\n      {\r\n        \"label\": \"Cats Eye\",\r\n        \"value\": \"cats-eye\"\r\n      },\r\n      {\r\n        \"label\": \"Color stones\",\r\n        \"value\": \"color-stones\"\r\n      },\r\n      {\r\n        \"label\": \"Coral\",\r\n        \"value\": \"coral\"\r\n      },\r\n      {\r\n        \"label\": \"emeralds\",\r\n        \"value\": \"emeralds\"\r\n      },\r\n      {\r\n        \"label\": \"Fluorite\",\r\n        \"value\": \"fluorite\"\r\n      },\r\n      {\r\n        \"label\": \"Gomed\",\r\n        \"value\": \"gomed\"\r\n      },\r\n      {\r\n        \"label\": \"Hessonite Garnet\",\r\n        \"value\": \"hessonite-garnet\"\r\n      },\r\n      {\r\n        \"label\": \"Lapis\",\r\n        \"value\": \"lapis\"\r\n      },\r\n      {\r\n        \"label\": \"Moon Stone\",\r\n        \"value\": \"moon-stone\"\r\n      },\r\n      {\r\n        \"label\": \"Morganite\",\r\n        \"value\": \"morganite\"\r\n      },\r\n      {\r\n        \"label\": \"Navratan\",\r\n        \"value\": \"navratan\"\r\n      },\r\n      {\r\n        \"label\": \"Peridot\",\r\n        \"value\": \"peridot\"\r\n      },\r\n      {\r\n        \"label\": \"Precious Stone\",\r\n        \"value\": \"precious-stone\"\r\n      },\r\n      {\r\n        \"label\": \"R+E+P\",\r\n        \"value\": \"r+e+p\"\r\n      },\r\n      {\r\n        \"label\": \"Rubies\",\r\n        \"value\": \"rubies\"\r\n      },\r\n      {\r\n        \"label\": \"Shell Pearl\",\r\n        \"value\": \"shell-pearl\"\r\n      },\r\n      {\r\n        \"label\": \"Tahitian Pearls\",\r\n        \"value\": \"tahitian-pearls\"\r\n      },\r\n      {\r\n        \"label\": \"Tarmoline\",\r\n        \"value\": \"tarmoline\"\r\n      },\r\n      {\r\n        \"label\": \"Yellow Sapphire\",\r\n        \"value\": \"yellow-sapphire\"\r\n      },\r\n      {\r\n        \"label\": \"Ruby Lab Created\",\r\n        \"value\": \"ruby-lab-created\"\r\n      },\r\n      {\r\n        \"label\": \"Emerald Lab Created\",\r\n        \"value\": \"emerald-lab-created\"\r\n      },\r\n      {\r\n        \"label\": \"Blue Sapphire Lab Created\",\r\n        \"value\": \"blue-sapphire-lab-created\"\r\n      },\r\n      {\r\n        \"label\": \"CZ\",\r\n        \"value\": \"cz\"\r\n      },\r\n      {\r\n        \"label\": \"South Sea Pearls\",\r\n        \"value\": \"south-sea-pearls\"\r\n      }\r\n    ],\r\n    \"diamond_labs\": [\r\n      {\r\n        \"label\": \"AGS\",\r\n        \"value\": \"AGS\"\r\n      },\r\n      {\r\n        \"label\": \"DGLA\",\r\n        \"value\": \"DGLA\"\r\n      },\r\n      {\r\n        \"label\": \"DGSL\",\r\n        \"value\": \"DGSL\"\r\n      },\r\n      {\r\n        \"label\": \"DHC\",\r\n        \"value\": \"DHC\"\r\n      },\r\n      {\r\n        \"label\": \"EGL\",\r\n        \"value\": \"EGL\"\r\n      },\r\n      {\r\n        \"label\": \"Forevermark\",\r\n        \"value\": \"Forevermark\"\r\n      },\r\n      {\r\n        \"label\": \"GIA\",\r\n        \"value\": \"GIA\"\r\n      },\r\n      {\r\n        \"label\": \"GII\",\r\n        \"value\": \"GII\"\r\n      },\r\n      {\r\n        \"label\": \"GSI\",\r\n        \"value\": \"GSI\"\r\n      },\r\n      {\r\n        \"label\": \"HRD\",\r\n        \"value\": \"HRD\"\r\n      },\r\n      {\r\n        \"label\": \"IDT\",\r\n        \"value\": \"IDT\"\r\n      },\r\n      {\r\n        \"label\": \"IIDGR\",\r\n        \"value\": \"IIDGR\"\r\n      },\r\n      {\r\n        \"label\": \"IGI\",\r\n        \"value\": \"IGI\"\r\n      },\r\n      {\r\n        \"label\": \"IIG\",\r\n        \"value\": \"IIG\"\r\n      },\r\n      {\r\n        \"label\": \"SGL\",\r\n        \"value\": \"SGL\"\r\n      },\r\n      {\r\n        \"label\": \"PTR\",\r\n        \"value\": \"PTR\"\r\n      }\r\n    ],\r\n    \"hide_pricing\": false\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/business_settings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"success\",\n    \"data\": {\n        \"types\": [\n            {\n                \"label\": \"Diamond Jewellery\",\n                \"value\": \"diamond\"\n            },\n            {\n                \"label\": \"Silver Jewellery\",\n                \"value\": \"silver\"\n            },\n            {\n                \"label\": \"Platinum Jewellery\",\n                \"value\": \"platinium\"\n            },\n            {\n                \"label\": \"Gemstone Jewellery\",\n                \"value\": \"gemstone\"\n            },\n            {\n                \"label\": \"Antique / Jadau Jewellery\",\n                \"value\": \"antique\"\n            },\n            {\n                \"label\": \"CZ Jewellery\",\n                \"value\": \"cz\"\n            },\n            {\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold\"\n            }\n        ],\n        \"gold_purities\": [\n            {\n                \"label\": \"22KT (916)\",\n                \"value\": \"916\"\n            },\n            {\n                \"label\": \"18KT (750)\",\n                \"value\": \"750\"\n            },\n            {\n                \"label\": \"24KT (999)\",\n                \"value\": \"999\"\n            },\n            {\n                \"label\": \"24KT (999.99)\",\n                \"value\": \"999.99\"\n            },\n            {\n                \"label\": \"24KT (995)\",\n                \"value\": \"995\"\n            },\n            {\n                \"label\": \"14KT (583)\",\n                \"value\": \"583\"\n            },\n            {\n                \"label\": \"9KT (375)\",\n                \"value\": \"375\"\n            }\n        ],\n        \"silver_purities\": [\n            {\n                \"label\": \"Fine (995)\",\n                \"value\": \"995\"\n            },\n            {\n                \"label\": \"Sterling (925)\",\n                \"value\": \"925\"\n            },\n            {\n                \"label\": \"Fine (999)\",\n                \"value\": \"999\"\n            },\n            {\n                \"label\": \"800\",\n                \"value\": \"800\"\n            },\n            {\n                \"label\": \"750\",\n                \"value\": \"750\"\n            },\n            {\n                \"label\": \"850\",\n                \"value\": \"850\"\n            },\n            {\n                \"label\": \"650\",\n                \"value\": \"650\"\n            }\n        ],\n        \"platinum_purities\": [\n            {\n                \"label\": \"900\",\n                \"value\": \"900\"\n            },\n            {\n                \"label\": \"950\",\n                \"value\": \"950\"\n            },\n            {\n                \"label\": \"850\",\n                \"value\": \"850\"\n            }\n        ],\n        \"colors\": [\n            {\n                \"label\": \"White\",\n                \"value\": \"white\"\n            },\n            {\n                \"label\": \"Yellow\",\n                \"value\": \"yellow\"\n            },\n            {\n                \"label\": \"Rose\",\n                \"value\": \"rose\"\n            },\n            {\n                \"label\": \"Two Tone\",\n                \"value\": \"two-tone\"\n            }\n        ],\n        \"net_weight\": \"auto\",\n        \"auto_diamond_sieve\": \"\",\n        \"collections\": [],\n        \"categories\": [],\n        \"diamond_types\": [\n            {\n                \"label\": \"Natural\",\n                \"value\": \"natural\"\n            },\n            {\n                \"label\": \"Lab Grown\",\n                \"value\": \"lab_grown\"\n            }\n        ],\n        \"diamond_clarities\": [\n            {\n                \"label\": \"IF\",\n                \"value\": \"IF\"\n            },\n            {\n                \"label\": \"VVS\",\n                \"value\": \"VVS\"\n            },\n            {\n                \"label\": \"VVS1\",\n                \"value\": \"VVS1\"\n            },\n            {\n                \"label\": \"VVS2\",\n                \"value\": \"VVS2\"\n            },\n            {\n                \"label\": \"VS\",\n                \"value\": \"VS\"\n            },\n            {\n                \"label\": \"VS1\",\n                \"value\": \"VS1\"\n            },\n            {\n                \"label\": \"VS2\",\n                \"value\": \"VS2\"\n            },\n            {\n                \"label\": \"SI\",\n                \"value\": \"SI\"\n            },\n            {\n                \"label\": \"SI1\",\n                \"value\": \"SI1\"\n            },\n            {\n                \"label\": \"SI2\",\n                \"value\": \"SI2\"\n            },\n            {\n                \"label\": \"SI3\",\n                \"value\": \"SI3\"\n            },\n            {\n                \"label\": \"I\",\n                \"value\": \"I\"\n            },\n            {\n                \"label\": \"I1\",\n                \"value\": \"I1\"\n            },\n            {\n                \"label\": \"2I\",\n                \"value\": \"I2\"\n            },\n            {\n                \"label\": \"IF/VVS\",\n                \"value\": \"IF/VVS\"\n            },\n            {\n                \"label\": \"VVS/VS\",\n                \"value\": \"VVS/VS\"\n            },\n            {\n                \"label\": \"VS/SI\",\n                \"value\": \"VS/SI\"\n            },\n            {\n                \"label\": \"SI/I\",\n                \"value\": \"SI/I\"\n            },\n            {\n                \"label\": \"SI/I1\",\n                \"value\": \"SI/I1\"\n            },\n            {\n                \"label\": \"DIAMOND\",\n                \"value\": \"DIAMOND\"\n            }\n        ],\n        \"diamond_cuts\": [\n            {\n                \"label\": \"Excellent\",\n                \"value\": \"excellent\"\n            },\n            {\n                \"label\": \"Very Good\",\n                \"value\": \"very_good\"\n            },\n            {\n                \"label\": \"Good\",\n                \"value\": \"good\"\n            },\n            {\n                \"label\": \"Fair\",\n                \"value\": \"fair\"\n            },\n            {\n                \"label\": \"Poor\",\n                \"value\": \"poor\"\n            }\n        ],\n        \"diamond_shapes\": [\n            {\n                \"label\": \"Round\",\n                \"value\": \"round\"\n            },\n            {\n                \"label\": \"Princess\",\n                \"value\": \"princess\"\n            },\n            {\n                \"label\": \"Marquise\",\n                \"value\": \"marquise\"\n            },\n            {\n                \"label\": \"Pear\",\n                \"value\": \"pear\"\n            },\n            {\n                \"label\": \"Oval\",\n                \"value\": \"oval\"\n            },\n            {\n                \"label\": \"Taper Baguette\",\n                \"value\": \"tapered_baguette\"\n            },\n            {\n                \"label\": \"Bullet Baguette\",\n                \"value\": \"bullet_baguette\"\n            },\n            {\n                \"label\": \"Baguette\",\n                \"value\": \"baguette\"\n            },\n            {\n                \"label\": \"Heart\",\n                \"value\": \"heart\"\n            },\n            {\n                \"label\": \"Cushion\",\n                \"value\": \"cushion\"\n            },\n            {\n                \"label\": \"Radiant\",\n                \"value\": \"radiant\"\n            },\n            {\n                \"label\": \"Asscher\",\n                \"value\": \"asscher\"\n            },\n            {\n                \"label\": \"Trillion\",\n                \"value\": \"trillion\"\n            },\n            {\n                \"label\": \"Lozenge\",\n                \"value\": \"lozenge\"\n            },\n            {\n                \"label\": \"Emerald\",\n                \"value\": \"emerald\"\n            },\n            {\n                \"label\": \"Half Moon\",\n                \"value\": \"halfmoon\"\n            },\n            {\n                \"label\": \"Triangle\",\n                \"value\": \"triangle\"\n            },\n            {\n                \"label\": \"Fancy\",\n                \"value\": \"fancy\"\n            },\n            {\n                \"label\": \"Trapezoid\",\n                \"value\": \"trapezoid\"\n            },\n            {\n                \"label\": \"Kite\",\n                \"value\": \"kite\"\n            }\n        ],\n        \"diamond_colors\": [\n            {\n                \"label\": \"D\",\n                \"value\": \"D\"\n            },\n            {\n                \"label\": \"E\",\n                \"value\": \"E\"\n            },\n            {\n                \"label\": \"F\",\n                \"value\": \"F\"\n            },\n            {\n                \"label\": \"G\",\n                \"value\": \"G\"\n            },\n            {\n                \"label\": \"H\",\n                \"value\": \"H\"\n            },\n            {\n                \"label\": \"I\",\n                \"value\": \"I\"\n            },\n            {\n                \"label\": \"J\",\n                \"value\": \"J\"\n            },\n            {\n                \"label\": \"K\",\n                \"value\": \"K\"\n            },\n            {\n                \"label\": \"L\",\n                \"value\": \"L\"\n            },\n            {\n                \"label\": \"M\",\n                \"value\": \"M\"\n            },\n            {\n                \"label\": \"PINK\",\n                \"value\": \"PINK\",\n                \"type\": \"extra\"\n            },\n            {\n                \"label\": \"BLUE\",\n                \"value\": \"BLUE\",\n                \"type\": \"extra\"\n            },\n            {\n                \"label\": \"YELLOW\",\n                \"value\": \"YELLOW\",\n                \"type\": \"extra\"\n            },\n            {\n                \"label\": \"BLACK\",\n                \"value\": \"BLACK\",\n                \"type\": \"extra\"\n            }\n        ],\n        \"diamond_sizes\": [],\n        \"currency\": [\n            {\n                \"label\": \"INR\",\n                \"value\": \"INR\",\n                \"symbol\": \"₹\",\n                \"name\": \"Indian Rupee\",\n                \"country\": \"India\"\n            }\n        ],\n        \"default_currency\": \"INR\",\n        \"gemstone_qualities\": [\n            {\n                \"label\": \"Precious\",\n                \"value\": \"precious\"\n            },\n            {\n                \"label\": \"Semi precious\",\n                \"value\": \"semi-precious\"\n            },\n            {\n                \"label\": \"Polki\",\n                \"value\": \"polki\"\n            },\n            {\n                \"label\": \"Kundan\",\n                \"value\": \"kundan\"\n            },\n            {\n                \"label\": \"Uncut\",\n                \"value\": \"uncut\"\n            },\n            {\n                \"label\": \"Hydro\",\n                \"value\": \"hydro\"\n            },\n            {\n                \"label\": \"Doublet\",\n                \"value\": \"doublet\"\n            },\n            {\n                \"label\": \"925 Sterling Silver\",\n                \"value\": \"925-sterling-silver\"\n            },\n            {\n                \"label\": \"Fashion\",\n                \"value\": \"fashion\"\n            },\n            {\n                \"label\": \"Gold\",\n                \"value\": \"gold\"\n            },\n            {\n                \"label\": \"Pearl\",\n                \"value\": \"pearl\"\n            },\n            {\n                \"label\": \"Silver\",\n                \"value\": \"silver\"\n            },\n            {\n                \"label\": \"Southsea\",\n                \"value\": \"southsea\"\n            },\n            {\n                \"label\": \"Pearls\",\n                \"value\": \"pearls\"\n            },\n            {\n                \"label\": \"Gemstone\",\n                \"value\": \"gemstone\"\n            }\n        ],\n        \"gemstone_shapes\": [\n            {\n                \"label\": \"Pumpkin Beads/Kharbuja\",\n                \"value\": \"pumpkin_beads/kharbuja\"\n            },\n            {\n                \"label\": \"Potato\",\n                \"value\": \"potato\"\n            },\n            {\n                \"label\": \"Seed\",\n                \"value\": \"seed\"\n            },\n            {\n                \"label\": \"Drop\",\n                \"value\": \"drop\"\n            },\n            {\n                \"label\": \"Flat\",\n                \"value\": \"flat\"\n            },\n            {\n                \"label\": \"Triangle\",\n                \"value\": \"triangle\"\n            },\n            {\n                \"label\": \"Tumble\",\n                \"value\": \"tumble\"\n            },\n            {\n                \"label\": \"Uneven Shape\",\n                \"value\": \"uneven-shape\"\n            },\n            {\n                \"label\": \"Rice\",\n                \"value\": \"rice\"\n            },\n            {\n                \"label\": \"Keshi\",\n                \"value\": \"keshi\"\n            },\n            {\n                \"label\": \"Tumble/Uneven Shape\",\n                \"value\": \"tumble/uneven_shape\"\n            },\n            {\n                \"label\": \"Beads\",\n                \"value\": \"beads\"\n            },\n            {\n                \"label\": \"Drum\",\n                \"value\": \"drum\"\n            },\n            {\n                \"label\": \"Button\",\n                \"value\": \"button\"\n            },\n            {\n                \"label\": \"Marquise\",\n                \"value\": \"marquise\"\n            },\n            {\n                \"label\": \"Pear\",\n                \"value\": \"pear\"\n            },\n            {\n                \"label\": \"Emerald\",\n                \"value\": \"emerald\"\n            },\n            {\n                \"label\": \"Oval\",\n                \"value\": \"oval\"\n            },\n            {\n                \"label\": \"Square\",\n                \"value\": \"square\"\n            },\n            {\n                \"label\": \"Round\",\n                \"value\": \"round\"\n            }\n        ],\n        \"gemstone_types\": [\n            {\n                \"label\": \"Undrilled\",\n                \"value\": \"undrilled\"\n            },\n            {\n                \"label\": \"Blue sapphire\",\n                \"value\": \"blue-sapphire\"\n            },\n            {\n                \"label\": \"Blue sapphire-beads\",\n                \"value\": \"blue-sapphire-beads\"\n            },\n            {\n                \"label\": \"Real coral\",\n                \"value\": \"real-coral\"\n            },\n            {\n                \"label\": \"Claw\",\n                \"value\": \"claw\"\n            },\n            {\n                \"label\": \"Cubic zirconia\",\n                \"value\": \"cubic-zirconia\"\n            },\n            {\n                \"label\": \"Cubic zircon\",\n                \"value\": \"cubic-zircon\"\n            },\n            {\n                \"label\": \"Real emerald\",\n                \"value\": \"real-emerald\"\n            },\n            {\n                \"label\": \"Garnet\",\n                \"value\": \"garnet\"\n            },\n            {\n                \"label\": \"Gempu ruby\",\n                \"value\": \"gempu-ruby\"\n            },\n            {\n                \"label\": \"Multicolor mix\",\n                \"value\": \"multicolor-mix\"\n            },\n            {\n                \"label\": \"Navratna set with cubic zirconia\",\n                \"value\": \"navratna-set-with-cubic-zirconia\"\n            },\n            {\n                \"label\": \"Navratna set with diamond\",\n                \"value\": \"navratna-set-with-diamond\"\n            },\n            {\n                \"label\": \"Ruby beads\",\n                \"value\": \"ruby-beads\"\n            },\n            {\n                \"label\": \"Ruby emerald\",\n                \"value\": \"ruby-emerald\"\n            },\n            {\n                \"label\": \"Black diamond\",\n                \"value\": \"black-diamond\"\n            },\n            {\n                \"label\": \"Southsea cream-pearl\",\n                \"value\": \"southsea-cream-pearl\"\n            },\n            {\n                \"label\": \"Spinnel ruby red\",\n                \"value\": \"spinnel-ruby-red\"\n            },\n            {\n                \"label\": \"Synthetic\",\n                \"value\": \"synthetic\"\n            },\n            {\n                \"label\": \"Synthetic beads\",\n                \"value\": \"synthetic-beads\"\n            },\n            {\n                \"label\": \"Turquoise\",\n                \"value\": \"turquoise\"\n            },\n            {\n                \"label\": \"Watch\",\n                \"value\": \"watch\"\n            },\n            {\n                \"label\": \"Wax\",\n                \"value\": \"wax\"\n            },\n            {\n                \"label\": \"Yellow topaz\",\n                \"value\": \"yellow-topaz\"\n            },\n            {\n                \"label\": \"Topaz\",\n                \"value\": \"topaz\"\n            },\n            {\n                \"label\": \"Colour Stones\",\n                \"value\": \"colour-stones\"\n            },\n            {\n                \"label\": \"Crystal\",\n                \"value\": \"crystal\"\n            },\n            {\n                \"label\": \"Mother of Pearl\",\n                \"value\": \"mother-of-pearl\"\n            },\n            {\n                \"label\": \"Multi Stones\",\n                \"value\": \"multi-stones\"\n            },\n            {\n                \"label\": \"Semi Precious\",\n                \"value\": \"semi-precious\"\n            },\n            {\n                \"label\": \"Freshwater Pearls\",\n                \"value\": \"freshwater-pearls\"\n            },\n            {\n                \"label\": \"UnCut Diamond\",\n                \"value\": \"uncut-diamond\"\n            },\n            {\n                \"label\": \"Victorian Balls\",\n                \"value\": \"victorian-balls\"\n            },\n            {\n                \"label\": \"Ruby\",\n                \"value\": \"ruby\"\n            },\n            {\n                \"label\": \"Emerald\",\n                \"value\": \"emerald\"\n            },\n            {\n                \"label\": \"Pearl\",\n                \"value\": \"pearl\"\n            },\n            {\n                \"label\": \"Sapphire\",\n                \"value\": \"sapphire\"\n            },\n            {\n                \"label\": \"Amethyst\",\n                \"value\": \"amethyst\"\n            },\n            {\n                \"label\": \"Beads\",\n                \"value\": \"beads\"\n            },\n            {\n                \"label\": \"Black beeds\",\n                \"value\": \"black-beeds\"\n            },\n            {\n                \"label\": \"Real ruby\",\n                \"value\": \"real-ruby\"\n            },\n            {\n                \"label\": \"Jade\",\n                \"value\": \"jade\"\n            },\n            {\n                \"label\": \"SouthSea Pearls\",\n                \"value\": \"southsea_pearls\"\n            },\n            {\n                \"label\": \"Tahitian Pearl\",\n                \"value\": \"tahitian_pearl\"\n            },\n            {\n                \"label\": \"Wiring\",\n                \"value\": \"wiring\"\n            },\n            {\n                \"label\": \"Invisible\",\n                \"value\": \"invisible\"\n            },\n            {\n                \"label\": \"Fresh Water Pearls\",\n                \"value\": \"fresh_water_pearls\"\n            },\n            {\n                \"label\": \"Basara Pearls\",\n                \"value\": \"basara-pearls\"\n            },\n            {\n                \"label\": \"Beryl Emerald\",\n                \"value\": \"beryl-emerald\"\n            },\n            {\n                \"label\": \"Black Beads\",\n                \"value\": \"black-beads\"\n            },\n            {\n                \"label\": \"Black Diamonds\",\n                \"value\": \"black-diamonds\"\n            },\n            {\n                \"label\": \"Cats Eye\",\n                \"value\": \"cats-eye\"\n            },\n            {\n                \"label\": \"Color stones\",\n                \"value\": \"color-stones\"\n            },\n            {\n                \"label\": \"Coral\",\n                \"value\": \"coral\"\n            },\n            {\n                \"label\": \"emeralds\",\n                \"value\": \"emeralds\"\n            },\n            {\n                \"label\": \"Fluorite\",\n                \"value\": \"fluorite\"\n            },\n            {\n                \"label\": \"Gomed\",\n                \"value\": \"gomed\"\n            },\n            {\n                \"label\": \"Hessonite Garnet\",\n                \"value\": \"hessonite-garnet\"\n            },\n            {\n                \"label\": \"Lapis\",\n                \"value\": \"lapis\"\n            },\n            {\n                \"label\": \"Moon Stone\",\n                \"value\": \"moon-stone\"\n            },\n            {\n                \"label\": \"Morganite\",\n                \"value\": \"morganite\"\n            },\n            {\n                \"label\": \"Navratan\",\n                \"value\": \"navratan\"\n            },\n            {\n                \"label\": \"Peridot\",\n                \"value\": \"peridot\"\n            },\n            {\n                \"label\": \"Precious Stone\",\n                \"value\": \"precious-stone\"\n            },\n            {\n                \"label\": \"R+E+P\",\n                \"value\": \"r+e+p\"\n            },\n            {\n                \"label\": \"Rubies\",\n                \"value\": \"rubies\"\n            },\n            {\n                \"label\": \"Shell Pearl\",\n                \"value\": \"shell-pearl\"\n            },\n            {\n                \"label\": \"Tahitian Pearls\",\n                \"value\": \"tahitian-pearls\"\n            },\n            {\n                \"label\": \"Tarmoline\",\n                \"value\": \"tarmoline\"\n            },\n            {\n                \"label\": \"Yellow Sapphire\",\n                \"value\": \"yellow-sapphire\"\n            },\n            {\n                \"label\": \"Ruby Lab Created\",\n                \"value\": \"ruby-lab-created\"\n            },\n            {\n                \"label\": \"Emerald Lab Created\",\n                \"value\": \"emerald-lab-created\"\n            },\n            {\n                \"label\": \"Blue Sapphire Lab Created\",\n                \"value\": \"blue-sapphire-lab-created\"\n            },\n            {\n                \"label\": \"CZ\",\n                \"value\": \"cz\"\n            },\n            {\n                \"label\": \"South Sea Pearls\",\n                \"value\": \"south-sea-pearls\"\n            }\n        ],\n        \"diamond_labs\": [\n            {\n                \"label\": \"AGS\",\n                \"value\": \"AGS\"\n            },\n            {\n                \"label\": \"DGLA\",\n                \"value\": \"DGLA\"\n            },\n            {\n                \"label\": \"DGSL\",\n                \"value\": \"DGSL\"\n            },\n            {\n                \"label\": \"DHC\",\n                \"value\": \"DHC\"\n            },\n            {\n                \"label\": \"EGL\",\n                \"value\": \"EGL\"\n            },\n            {\n                \"label\": \"Forevermark\",\n                \"value\": \"Forevermark\"\n            },\n            {\n                \"label\": \"GIA\",\n                \"value\": \"GIA\"\n            },\n            {\n                \"label\": \"GII\",\n                \"value\": \"GII\"\n            },\n            {\n                \"label\": \"GSI\",\n                \"value\": \"GSI\"\n            },\n            {\n                \"label\": \"HRD\",\n                \"value\": \"HRD\"\n            },\n            {\n                \"label\": \"IDT\",\n                \"value\": \"IDT\"\n            },\n            {\n                \"label\": \"IIDGR\",\n                \"value\": \"IIDGR\"\n            },\n            {\n                \"label\": \"IGI\",\n                \"value\": \"IGI\"\n            },\n            {\n                \"label\": \"IIG\",\n                \"value\": \"IIG\"\n            },\n            {\n                \"label\": \"SGL\",\n                \"value\": \"SGL\"\n            },\n            {\n                \"label\": \"PTR\",\n                \"value\": \"PTR\"\n            }\n        ],\n        \"hide_pricing\": false\n    }\n}"}],"_postman_id":"8347df7a-b8ee-46d2-8500-29ce50b921dc"},{"name":"Get Taxonomies","id":"2b49ce22-0b48-41fd-8786-7798f22a7803","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/taxonomies","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>collections</td>\n<td>The types of jewellery collections available in your system. Each collection includes fields like <code>id</code> (unique identifier), <code>label</code> (the name of the collection), <code>value</code> (the slug for the collection), and <code>count</code> (number of items in that collection). Examples of collections include \"Antique Jewellery\", \"Diamond Jewellery\", \"Gold Jewellery\", and \"Gemstone Jewellery\".</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>The categories of jewellery items within collections. Each category has similar fields as collections, such as <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>. Categories help organize the jewellery items further into types like \"Bangles\", \"Necklaces\", \"Bracelets\", etc.</td>\n</tr>\n<tr>\n<td>sub-categories</td>\n<td>Sub-divisions within categories, offering more specific groupings of jewellery items. Each sub-category includes <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>. Examples include \"Maang Tikka\", \"Gold Jewellery\", and \"Diamond Nose Pin\".</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Tags associated with jewellery items that help with item identification, filtering, and searching. Examples include \"7 Diamonds\", \"Designer\", and \"Valentine\".</td>\n</tr>\n<tr>\n<td>diamond_wt</td>\n<td>Weight categories for diamonds. Each weight category includes fields like <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>.</td>\n</tr>\n<tr>\n<td>gold_wt</td>\n<td>Weight categories for gold items. Similar to <code>diamond_wt</code>, includes fields like <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>.</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>The gender category for jewellery items. Fields include <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>. Examples include \"Male\", \"Female\", \"Kids\", and \"Unisex\".</td>\n</tr>\n<tr>\n<td>ocassions</td>\n<td>Special occasions for which jewellery items are categorized. Examples include \"Anniversary\", \"Birthday\", and \"All Occasions\".</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","taxonomies"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"2cd6aef3-afa9-46ec-a6f6-d5fc32e3f571","name":"Get Taxonomies","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/taxonomies"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"collections\": [\n            {\n                \"id\": 618,\n                \"label\": \"alskdfj\",\n                \"value\": \"alskdfj\",\n                \"count\": 0\n            },\n            {\n                \"id\": 205,\n                \"label\": \"Antique Jewellery\",\n                \"value\": \"antique-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 556,\n                \"label\": \"Beeds Jewellery\",\n                \"value\": \"beeds-jewellery\",\n                \"count\": 1\n            },\n            {\n                \"id\": 649,\n                \"label\": \"Coins\",\n                \"value\": \"coins\",\n                \"count\": 0\n            },\n            {\n                \"id\": 552,\n                \"label\": \"CZ / Swaroski Jewellery\",\n                \"value\": \"cz-swaroski-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 403,\n                \"label\": \"Dazzling Collections\",\n                \"value\": \"dazzling-collections\",\n                \"count\": 0\n            },\n            {\n                \"id\": 12,\n                \"label\": \"Diamond Jewellery\",\n                \"value\": \"diamond-jewellery\",\n                \"count\": 4447\n            },\n            {\n                \"id\": 15,\n                \"label\": \"Gemstone Jewellery\",\n                \"value\": \"gemstone-jewellery\",\n                \"count\": 1\n            },\n            {\n                \"id\": 11,\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold-jewellery\",\n                \"count\": 11\n            },\n            {\n                \"id\": 584,\n                \"label\": \"Gold Pen\",\n                \"value\": \"gold-pen\",\n                \"count\": 0\n            },\n            {\n                \"id\": 554,\n                \"label\": \"Heritage jewellery\",\n                \"value\": \"heritage-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 592,\n                \"label\": \"Imported Collection\",\n                \"value\": \"imported-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 467,\n                \"label\": \"Jewellery\",\n                \"value\": \"jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 381,\n                \"label\": \"Lab Grown Diamonds\",\n                \"value\": \"lab-grown-diamonds\",\n                \"count\": 0\n            },\n            {\n                \"id\": 663,\n                \"label\": \"Lightweight Jewellery\",\n                \"value\": \"lightweight-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 655,\n                \"label\": \"manav\",\n                \"value\": \"manav\",\n                \"count\": 0\n            },\n            {\n                \"id\": 530,\n                \"label\": \"Nakas / Antique Jewellery\",\n                \"value\": \"nakas-antique-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 549,\n                \"label\": \"Pachi Ruby Emerald Jewellery\",\n                \"value\": \"pachi-ruby-emerald-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 623,\n                \"label\": \"Pearl Jewellery\",\n                \"value\": \"pearl-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 213,\n                \"label\": \"platinum-jewellery\",\n                \"value\": \"platinum-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 550,\n                \"label\": \"Polki Jewellery\",\n                \"value\": \"polki-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 406,\n                \"label\": \"Ruby Collections\",\n                \"value\": \"ruby-collections\",\n                \"count\": 0\n            },\n            {\n                \"id\": 524,\n                \"label\": \"Silver\",\n                \"value\": \"silver\",\n                \"count\": 0\n            },\n            {\n                \"id\": 540,\n                \"label\": \"Silver Articles\",\n                \"value\": \"silver-articles\",\n                \"count\": 0\n            },\n            {\n                \"id\": 286,\n                \"label\": \"silver-jewellery\",\n                \"value\": \"silver-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 595,\n                \"label\": \"SiYA Collection\",\n                \"value\": \"siya-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 355,\n                \"label\": \"solitaire\",\n                \"value\": \"solitaire\",\n                \"count\": 0\n            },\n            {\n                \"id\": 391,\n                \"label\": \"T-1\",\n                \"value\": \"t-1\",\n                \"count\": 0\n            },\n            {\n                \"id\": 560,\n                \"label\": \"Ultra Light Weight Jewellery\",\n                \"value\": \"ultra-light-weight-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 678,\n                \"label\": \"Utsav Collection\",\n                \"value\": \"utsav-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 599,\n                \"label\": \"X collection\",\n                \"value\": \"x-collection\",\n                \"count\": 0\n            }\n        ],\n        \"categories\": [\n            {\n                \"id\": 468,\n                \"label\": \"B\",\n                \"value\": \"b\",\n                \"count\": 0\n            },\n            {\n                \"id\": 413,\n                \"label\": \"BABY CHAIN\",\n                \"value\": \"baby-chain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 580,\n                \"label\": \"BANGLE\",\n                \"value\": \"bangle\",\n                \"count\": 4\n            },\n            {\n                \"id\": 596,\n                \"label\": \"Bangles Set\",\n                \"value\": \"bangles-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 608,\n                \"label\": \"Bracelets\",\n                \"value\": \"bracelets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 557,\n                \"label\": \"Chains\",\n                \"value\": \"chains\",\n                \"count\": 1\n            },\n            {\n                \"id\": 469,\n                \"label\": \"D\",\n                \"value\": \"d\",\n                \"count\": 0\n            },\n            {\n                \"id\": 638,\n                \"label\": \"Diamond\",\n                \"value\": \"diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 545,\n                \"label\": \"Earring\",\n                \"value\": \"earring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 583,\n                \"label\": \"Glass Frames\",\n                \"value\": \"glass-frames\",\n                \"count\": 0\n            },\n            {\n                \"id\": 664,\n                \"label\": \"Gold\",\n                \"value\": \"gold\",\n                \"count\": 0\n            },\n            {\n                \"id\": 561,\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 585,\n                \"label\": \"Gold Pens\",\n                \"value\": \"gold-pens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 582,\n                \"label\": \"Idols\",\n                \"value\": \"idols\",\n                \"count\": 0\n            },\n            {\n                \"id\": 668,\n                \"label\": \"Italian\",\n                \"value\": \"italian\",\n                \"count\": 0\n            },\n            {\n                \"id\": 559,\n                \"label\": \"Jada\",\n                \"value\": \"jada\",\n                \"count\": 0\n            },\n            {\n                \"id\": 657,\n                \"label\": \"karina\",\n                \"value\": \"karina\",\n                \"count\": 0\n            },\n            {\n                \"id\": 284,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 0\n            },\n            {\n                \"id\": 531,\n                \"label\": \"Maang Tikka\",\n                \"value\": \"maang-tikka\",\n                \"count\": 0\n            },\n            {\n                \"id\": 577,\n                \"label\": \"Matti\",\n                \"value\": \"matti\",\n                \"count\": 0\n            },\n            {\n                \"id\": 280,\n                \"label\": \"Mens\",\n                \"value\": \"mens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 296,\n                \"label\": \"MIHIKA\",\n                \"value\": \"mihika\",\n                \"count\": 0\n            },\n            {\n                \"id\": 405,\n                \"label\": \"Nathnis\",\n                \"value\": \"nathnis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 604,\n                \"label\": \"Necklace\",\n                \"value\": \"necklace\",\n                \"count\": 0\n            },\n            {\n                \"id\": 679,\n                \"label\": \"Necklace RIng Set\",\n                \"value\": \"necklace-ring-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 551,\n                \"label\": \"Necklace Set\",\n                \"value\": \"necklace-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 609,\n                \"label\": \"Necklace Sets\",\n                \"value\": \"necklace-sets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 659,\n                \"label\": \"Office Dainty\",\n                \"value\": \"office-dainty\",\n                \"count\": 0\n            },\n            {\n                \"id\": 643,\n                \"label\": \"Pearl Pendant Sets\",\n                \"value\": \"pearl-pendant-sets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 600,\n                \"label\": \"Pendant Bangle Set\",\n                \"value\": \"pendant-bangle-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 553,\n                \"label\": \"Pendant set\",\n                \"value\": \"pendant-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 610,\n                \"label\": \"Pendant Sets\",\n                \"value\": \"pendant-sets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 652,\n                \"label\": \"Ring\",\n                \"value\": \"ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 535,\n                \"label\": \"Rings\",\n                \"value\": \"rings\",\n                \"count\": 1\n            },\n            {\n                \"id\": 624,\n                \"label\": \"Sets &amp; Necklaces\",\n                \"value\": \"sets-necklaces\",\n                \"count\": 0\n            },\n            {\n                \"id\": 543,\n                \"label\": \"Silver Articles\",\n                \"value\": \"silver-articles\",\n                \"count\": 0\n            },\n            {\n                \"id\": 650,\n                \"label\": \"Silver Coin\",\n                \"value\": \"silver-coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 525,\n                \"label\": \"SL\",\n                \"value\": \"sl\",\n                \"count\": 0\n            },\n            {\n                \"id\": 470,\n                \"label\": \"STONE\",\n                \"value\": \"stone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 671,\n                \"label\": \"Temple\",\n                \"value\": \"temple\",\n                \"count\": 0\n            },\n            {\n                \"id\": 673,\n                \"label\": \"Turkey\",\n                \"value\": \"turkey\",\n                \"count\": 0\n            },\n            {\n                \"id\": 295,\n                \"label\": \"UMRAO\",\n                \"value\": \"umrao\",\n                \"count\": 0\n            },\n            {\n                \"id\": 262,\n                \"label\": \"Uncategorized\",\n                \"value\": \"uncategorized\",\n                \"count\": 24\n            },\n            {\n                \"id\": 555,\n                \"label\": \"Vaddanam\",\n                \"value\": \"vaddanam\",\n                \"count\": 0\n            },\n            {\n                \"id\": 611,\n                \"label\": \"Victorian\",\n                \"value\": \"victorian\",\n                \"count\": 0\n            },\n            {\n                \"id\": 574,\n                \"label\": \"Watch\",\n                \"value\": \"watch\",\n                \"count\": 0\n            },\n            {\n                \"id\": 257,\n                \"label\": \"wedding-ring\",\n                \"value\": \"wedding-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 283,\n                \"label\": \"Womens\",\n                \"value\": \"womens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 359,\n                \"label\": \"Anniversary\",\n                \"value\": \"anniversary\",\n                \"count\": 0\n            },\n            {\n                \"id\": 230,\n                \"label\": \"Bangles\",\n                \"value\": \"bangles\",\n                \"count\": 79\n            },\n            {\n                \"id\": 558,\n                \"label\": \"Bhajubandh New Arrivals\",\n                \"value\": \"bhajubandh-new\",\n                \"count\": 0\n            },\n            {\n                \"id\": 350,\n                \"label\": \"Birthday\",\n                \"value\": \"birthday\",\n                \"count\": 0\n            },\n            {\n                \"id\": 299,\n                \"label\": \"Chain\",\n                \"value\": \"chain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 207,\n                \"label\": \"Demo\",\n                \"value\": \"demo\",\n                \"count\": 0\n            },\n            {\n                \"id\": 288,\n                \"label\": \"dsadsdasdsa\",\n                \"value\": \"dsadsdasdsa\",\n                \"count\": 0\n            },\n            {\n                \"id\": 390,\n                \"label\": \"Haram\",\n                \"value\": \"haram\",\n                \"count\": 0\n            },\n            {\n                \"id\": 434,\n                \"label\": \"Mangalsutra\",\n                \"value\": \"mangalsutra\",\n                \"count\": 3\n            },\n            {\n                \"id\": 356,\n                \"label\": \"Marriage\",\n                \"value\": \"marriage\",\n                \"count\": 0\n            },\n            {\n                \"id\": 2,\n                \"label\": \"Earrings\",\n                \"value\": \"earrings\",\n                \"count\": 1148\n            },\n            {\n                \"id\": 8,\n                \"label\": \"Bracelet\",\n                \"value\": \"bracelet\",\n                \"count\": 0\n            },\n            {\n                \"id\": 9,\n                \"label\": \"Ladies Ring\",\n                \"value\": \"ladies-ring\",\n                \"count\": 996\n            },\n            {\n                \"id\": 10,\n                \"label\": \"Gents Ring\",\n                \"value\": \"gents-ring\",\n                \"count\": 408\n            },\n            {\n                \"id\": 100,\n                \"label\": \"Nose Pins\",\n                \"value\": \"nose-pins\",\n                \"count\": 90\n            },\n            {\n                \"id\": 5,\n                \"label\": \"Necklaces\",\n                \"value\": \"necklaces\",\n                \"count\": 25\n            },\n            {\n                \"id\": 98,\n                \"label\": \"Pendants\",\n                \"value\": \"pendants\",\n                \"count\": 1063\n            }\n        ],\n        \"sub-categories\": [\n            {\n                \"id\": 277,\n                \"label\": \"\",\n                \"value\": \"277\",\n                \"count\": 0\n            },\n            {\n                \"id\": 665,\n                \"label\": \"Acessories\",\n                \"value\": \"acessories\",\n                \"count\": 0\n            },\n            {\n                \"id\": 282,\n                \"label\": \"anniversary\",\n                \"value\": \"anniversary\",\n                \"count\": 0\n            },\n            {\n                \"id\": 412,\n                \"label\": \"BABY CHAIN\",\n                \"value\": \"baby-chain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 439,\n                \"label\": \"Bali\",\n                \"value\": \"bali\",\n                \"count\": 0\n            },\n            {\n                \"id\": 285,\n                \"label\": \"Birthday\",\n                \"value\": \"birthday\",\n                \"count\": 0\n            },\n            {\n                \"id\": 404,\n                \"label\": \"Bombay Collections\",\n                \"value\": \"bombay-collections\",\n                \"count\": 0\n            },\n            {\n                \"id\": 669,\n                \"label\": \"Bracelet\",\n                \"value\": \"bracelet\",\n                \"count\": 0\n            },\n            {\n                \"id\": 409,\n                \"label\": \"CHAIN\",\n                \"value\": \"chain\",\n                \"count\": 1\n            },\n            {\n                \"id\": 247,\n                \"label\": \"Closed Setting\",\n                \"value\": \"closed-setting\",\n                \"count\": 0\n            },\n            {\n                \"id\": 245,\n                \"label\": \"CNC Machine Collection\",\n                \"value\": \"cnc-machine-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 276,\n                \"label\": \"DIAMOND NOSE PIN\",\n                \"value\": \"diamond-nose-pin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 639,\n                \"label\": \"Earring\",\n                \"value\": \"earring\",\n                \"count\": 2\n            },\n            {\n                \"id\": 617,\n                \"label\": \"Earring collection\",\n                \"value\": \"earring-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 440,\n                \"label\": \"Fulkari\",\n                \"value\": \"fulkari\",\n                \"count\": 0\n            },\n            {\n                \"id\": 360,\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 255,\n                \"label\": \"Group Ahmedabad\",\n                \"value\": \"group-ahmedabad\",\n                \"count\": 0\n            },\n            {\n                \"id\": 236,\n                \"label\": \"Group Kolkata\",\n                \"value\": \"group-kolkata\",\n                \"count\": 0\n            },\n            {\n                \"id\": 234,\n                \"label\": \"Group Mumbai\",\n                \"value\": \"group-mumbai\",\n                \"count\": 0\n            },\n            {\n                \"id\": 292,\n                \"label\": \"Handmade Bangles\",\n                \"value\": \"handmade-bangles\",\n                \"count\": 0\n            },\n            {\n                \"id\": 546,\n                \"label\": \"Imported\",\n                \"value\": \"imported\",\n                \"count\": 0\n            },\n            {\n                \"id\": 357,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 0\n            },\n            {\n                \"id\": 291,\n                \"label\": \"Machine Bangle\",\n                \"value\": \"machine-bangle\",\n                \"count\": 0\n            },\n            {\n                \"id\": 459,\n                \"label\": \"Mangalsutra pendant\",\n                \"value\": \"mangalsutra-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 287,\n                \"label\": \"Marriage\",\n                \"value\": \"marriage\",\n                \"count\": 0\n            },\n            {\n                \"id\": 348,\n                \"label\": \"Men\",\n                \"value\": \"men\",\n                \"count\": 0\n            },\n            {\n                \"id\": 475,\n                \"label\": \"New Arrival Rings\",\n                \"value\": \"new-arrival-rings\",\n                \"count\": 1\n            },\n            {\n                \"id\": 419,\n                \"label\": \"new Category\",\n                \"value\": \"new-category\",\n                \"count\": 0\n            },\n            {\n                \"id\": 625,\n                \"label\": \"Pearl Sets &amp; Necklaces\",\n                \"value\": \"pearl-sets-necklaces\",\n                \"count\": 0\n            },\n            {\n                \"id\": 644,\n                \"label\": \"Pendant Set\",\n                \"value\": \"pendant-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 460,\n                \"label\": \"Religious Pendant\",\n                \"value\": \"religious-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 653,\n                \"label\": \"Ring\",\n                \"value\": \"ring\",\n                \"count\": 1\n            },\n            {\n                \"id\": 536,\n                \"label\": \"Rings-Imported\",\n                \"value\": \"rings-imported\",\n                \"count\": 0\n            },\n            {\n                \"id\": 294,\n                \"label\": \"Studded Pen\",\n                \"value\": \"studded-pen\",\n                \"count\": 0\n            },\n            {\n                \"id\": 465,\n                \"label\": \"SwarnaSri\",\n                \"value\": \"swarnasri\",\n                \"count\": 0\n            },\n            {\n                \"id\": 389,\n                \"label\": \"TAG1\",\n                \"value\": \"tag1\",\n                \"count\": 0\n            },\n            {\n                \"id\": 384,\n                \"label\": \"thread\",\n                \"value\": \"thread\",\n                \"count\": 0\n            },\n            {\n                \"id\": 576,\n                \"label\": \"Tiger Nail\",\n                \"value\": \"tiger-nail\",\n                \"count\": 0\n            },\n            {\n                \"id\": 471,\n                \"label\": \"tribal Necklace\",\n                \"value\": \"tribal-necklace\",\n                \"count\": 0\n            },\n            {\n                \"id\": 281,\n                \"label\": \"Wedding\",\n                \"value\": \"wedding\",\n                \"count\": 0\n            },\n            {\n                \"id\": 351,\n                \"label\": \"Women\",\n                \"value\": \"women\",\n                \"count\": 0\n            }\n        ],\n        \"tags\": [\n            {\n                \"id\": 140,\n                \"label\": \"1 GRAM GOLD COIN\",\n                \"value\": \"1-gram-gold-coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 141,\n                \"label\": \"2 GRAM GOLD COIN\",\n                \"value\": \"2-gram-gold-coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 85,\n                \"label\": \"3 Diamonds\",\n                \"value\": \"3-diamonds\",\n                \"count\": 53\n            },\n            {\n                \"id\": 46,\n                \"label\": \"4 Diamond\",\n                \"value\": \"4-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 420,\n                \"label\": \"4 Diamonds\",\n                \"value\": \"4-diamonds-2\",\n                \"count\": 48\n            },\n            {\n                \"id\": 110,\n                \"label\": \"4-diamonds\",\n                \"value\": \"4-diamonds\",\n                \"count\": 19\n            },\n            {\n                \"id\": 43,\n                \"label\": \"7 Diamond\",\n                \"value\": \"7-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 433,\n                \"label\": \"7 Diamonds\",\n                \"value\": \"7-diamonds-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 96,\n                \"label\": \"7-diamonds\",\n                \"value\": \"7-diamonds\",\n                \"count\": 28\n            },\n            {\n                \"id\": 304,\n                \"label\": \"7-diamonds, Couple Band\",\n                \"value\": \"7-diamonds-couple-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 303,\n                \"label\": \"7-diamonds, Couple Band, Designer\",\n                \"value\": \"7-diamonds-couple-band-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 326,\n                \"label\": \"7-diamonds, Couple Band, Heart\",\n                \"value\": \"7-diamonds-couple-band-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 83,\n                \"label\": \"9 Diamonds\",\n                \"value\": \"9-diamonds\",\n                \"count\": 57\n            },\n            {\n                \"id\": 320,\n                \"label\": \"9 Diamonds, Designer\",\n                \"value\": \"9-diamonds-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 539,\n                \"label\": \"ABC SUPPLIER\",\n                \"value\": \"abc-supplier\",\n                \"count\": 0\n            },\n            {\n                \"id\": 428,\n                \"label\": \"Alphabets\",\n                \"value\": \"alphabets\",\n                \"count\": 104\n            },\n            {\n                \"id\": 616,\n                \"label\": \"amanda collecyion\",\n                \"value\": \"amanda-collecyion\",\n                \"count\": 0\n            },\n            {\n                \"id\": 444,\n                \"label\": \"antique\",\n                \"value\": \"antique\",\n                \"count\": 0\n            },\n            {\n                \"id\": 95,\n                \"label\": \"bali\",\n                \"value\": \"bali\",\n                \"count\": 154\n            },\n            {\n                \"id\": 325,\n                \"label\": \"bali, Tops\",\n                \"value\": \"bali-tops\",\n                \"count\": 0\n            },\n            {\n                \"id\": 25,\n                \"label\": \"Band\",\n                \"value\": \"band\",\n                \"count\": 106\n            },\n            {\n                \"id\": 334,\n                \"label\": \"Band, Bridal, Broad Ring\",\n                \"value\": \"band-bridal-broad-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 302,\n                \"label\": \"Band, Couple Band\",\n                \"value\": \"band-couple-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 329,\n                \"label\": \"Band, Couple Band, Designer\",\n                \"value\": \"band-couple-band-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 333,\n                \"label\": \"Band, Couple Band, Heart\",\n                \"value\": \"band-couple-band-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 319,\n                \"label\": \"Band, Designer\",\n                \"value\": \"band-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 81,\n                \"label\": \"Bands\",\n                \"value\": \"bands\",\n                \"count\": 141\n            },\n            {\n                \"id\": 464,\n                \"label\": \"beautiful ring\",\n                \"value\": \"beautiful-ring\",\n                \"count\": 1\n            },\n            {\n                \"id\": 450,\n                \"label\": \"Best\",\n                \"value\": \"best\",\n                \"count\": 7\n            },\n            {\n                \"id\": 162,\n                \"label\": \"Bridal\",\n                \"value\": \"bridal\",\n                \"count\": 2\n            },\n            {\n                \"id\": 318,\n                \"label\": \"Bridal, Broad\",\n                \"value\": \"bridal-broad\",\n                \"count\": 0\n            },\n            {\n                \"id\": 321,\n                \"label\": \"Bridal, Chandeliers\",\n                \"value\": \"bridal-chandeliers\",\n                \"count\": 0\n            },\n            {\n                \"id\": 335,\n                \"label\": \"Bridal, Heart\",\n                \"value\": \"bridal-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 332,\n                \"label\": \"Bridal, Jhumki\",\n                \"value\": \"bridal-jhumki\",\n                \"count\": 0\n            },\n            {\n                \"id\": 70,\n                \"label\": \"Broad\",\n                \"value\": \"broad\",\n                \"count\": 23\n            },\n            {\n                \"id\": 47,\n                \"label\": \"Broad Ring\",\n                \"value\": \"broad-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 323,\n                \"label\": \"Broad, Cluster, Tennis\",\n                \"value\": \"broad-cluster-tennis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 451,\n                \"label\": \"Casual\",\n                \"value\": \"casual\",\n                \"count\": 7\n            },\n            {\n                \"id\": 163,\n                \"label\": \"Chandeliers\",\n                \"value\": \"chandeliers\",\n                \"count\": 0\n            },\n            {\n                \"id\": 322,\n                \"label\": \"Chandeliers, Nakshatra\",\n                \"value\": \"chandeliers-nakshatra\",\n                \"count\": 0\n            },\n            {\n                \"id\": 157,\n                \"label\": \"Chocker\",\n                \"value\": \"chocker\",\n                \"count\": 0\n            },\n            {\n                \"id\": 316,\n                \"label\": \"Chocker, Designer\",\n                \"value\": \"chocker-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 628,\n                \"label\": \"Choker\",\n                \"value\": \"choker\",\n                \"count\": 0\n            },\n            {\n                \"id\": 627,\n                \"label\": \"Choker with Pendant\",\n                \"value\": \"choker-with-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 161,\n                \"label\": \"Close Set\",\n                \"value\": \"close-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 430,\n                \"label\": \"Close Setting\",\n                \"value\": \"close-setting-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 93,\n                \"label\": \"close-setting\",\n                \"value\": \"close-setting\",\n                \"count\": 25\n            },\n            {\n                \"id\": 209,\n                \"label\": \"Cluster\",\n                \"value\": \"cluster\",\n                \"count\": 2\n            },\n            {\n                \"id\": 312,\n                \"label\": \"Cluster, Designer\",\n                \"value\": \"cluster-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 446,\n                \"label\": \"Coin\",\n                \"value\": \"coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 74,\n                \"label\": \"Color Stone\",\n                \"value\": \"color-stone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 117,\n                \"label\": \"colorcstone\",\n                \"value\": \"colorcstone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 423,\n                \"label\": \"Colour Stone\",\n                \"value\": \"colour-stone-2\",\n                \"count\": 65\n            },\n            {\n                \"id\": 143,\n                \"label\": \"colour-stone\",\n                \"value\": \"colour-stone\",\n                \"count\": 126\n            },\n            {\n                \"id\": 626,\n                \"label\": \"Combination\",\n                \"value\": \"combination\",\n                \"count\": 0\n            },\n            {\n                \"id\": 232,\n                \"label\": \"Composites\",\n                \"value\": \"composites\",\n                \"count\": 0\n            },\n            {\n                \"id\": 156,\n                \"label\": \"Couple Band\",\n                \"value\": \"couple-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 300,\n                \"label\": \"Couple Band, Heart\",\n                \"value\": \"couple-band-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 593,\n                \"label\": \"Couple Bands\",\n                \"value\": \"couple-bands\",\n                \"count\": 0\n            },\n            {\n                \"id\": 259,\n                \"label\": \"Couple Rings\",\n                \"value\": \"couple-rings\",\n                \"count\": 0\n            },\n            {\n                \"id\": 417,\n                \"label\": \"cus\",\n                \"value\": \"cus\",\n                \"count\": 0\n            },\n            {\n                \"id\": 415,\n                \"label\": \"Custom Tag\",\n                \"value\": \"custom-tag\",\n                \"count\": 0\n            },\n            {\n                \"id\": 452,\n                \"label\": \"Daily\",\n                \"value\": \"daily\",\n                \"count\": 4\n            },\n            {\n                \"id\": 297,\n                \"label\": \"Dancing Diamond\",\n                \"value\": \"dancing-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 637,\n                \"label\": \"Design Your Necklace\",\n                \"value\": \"design-your-necklace\",\n                \"count\": 0\n            },\n            {\n                \"id\": 75,\n                \"label\": \"Designer\",\n                \"value\": \"designer\",\n                \"count\": 634\n            },\n            {\n                \"id\": 462,\n                \"label\": \"designer ring\",\n                \"value\": \"designer-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 313,\n                \"label\": \"Designer, Eternity\",\n                \"value\": \"designer-eternity\",\n                \"count\": 0\n            },\n            {\n                \"id\": 315,\n                \"label\": \"Designer, Floret, Nakshatra\",\n                \"value\": \"designer-floret-nakshatra\",\n                \"count\": 0\n            },\n            {\n                \"id\": 314,\n                \"label\": \"Designer, Hanging\",\n                \"value\": \"designer-hanging\",\n                \"count\": 0\n            },\n            {\n                \"id\": 414,\n                \"label\": \"diwali\",\n                \"value\": \"diwali\",\n                \"count\": 0\n            },\n            {\n                \"id\": 472,\n                \"label\": \"Diwali Collection\",\n                \"value\": \"diwali-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 426,\n                \"label\": \"Enamel\",\n                \"value\": \"enamel\",\n                \"count\": 27\n            },\n            {\n                \"id\": 606,\n                \"label\": \"Engagement\",\n                \"value\": \"engagement\",\n                \"count\": 0\n            },\n            {\n                \"id\": 601,\n                \"label\": \"Engagment Collection\",\n                \"value\": \"engagment-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 235,\n                \"label\": \"Eternity\",\n                \"value\": \"eternity\",\n                \"count\": 0\n            },\n            {\n                \"id\": 298,\n                \"label\": \"Evil Eye\",\n                \"value\": \"evil-eye\",\n                \"count\": 0\n            },\n            {\n                \"id\": 422,\n                \"label\": \"Fancy Diamonds\",\n                \"value\": \"fancy-diamonds-2\",\n                \"count\": 3\n            },\n            {\n                \"id\": 92,\n                \"label\": \"fancy-diamond\",\n                \"value\": \"fancy-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 89,\n                \"label\": \"fancy-diamonds\",\n                \"value\": \"fancy-diamonds\",\n                \"count\": 3\n            },\n            {\n                \"id\": 676,\n                \"label\": \"Fashion Jewellery\",\n                \"value\": \"fashion-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 416,\n                \"label\": \"festive collection\",\n                \"value\": \"festive-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 223,\n                \"label\": \"Floral\",\n                \"value\": \"floral\",\n                \"count\": 0\n            },\n            {\n                \"id\": 73,\n                \"label\": \"Floret\",\n                \"value\": \"floret\",\n                \"count\": 554\n            },\n            {\n                \"id\": 40,\n                \"label\": \"Flower\",\n                \"value\": \"flower\",\n                \"count\": 0\n            },\n            {\n                \"id\": 260,\n                \"label\": \"Fusion Rings Gold and Platinum\",\n                \"value\": \"fusion-rings-gold-and-platinum\",\n                \"count\": 0\n            },\n            {\n                \"id\": 636,\n                \"label\": \"Gemstone\",\n                \"value\": \"gemstone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 18,\n                \"label\": \"Gemstone Earring\",\n                \"value\": \"gemstone-earring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 168,\n                \"label\": \"gents\",\n                \"value\": \"gents\",\n                \"count\": 5\n            },\n            {\n                \"id\": 48,\n                \"label\": \"Gents Ring\",\n                \"value\": \"gents-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 528,\n                \"label\": \"GIFTCARD\",\n                \"value\": \"giftcard\",\n                \"count\": 0\n            },\n            {\n                \"id\": 80,\n                \"label\": \"God\",\n                \"value\": \"god\",\n                \"count\": 0\n            },\n            {\n                \"id\": 139,\n                \"label\": \"GOLD COINS\",\n                \"value\": \"gold-coins\",\n                \"count\": 0\n            },\n            {\n                \"id\": 634,\n                \"label\": \"Graduated\",\n                \"value\": \"graduated\",\n                \"count\": 0\n            },\n            {\n                \"id\": 457,\n                \"label\": \"Half Pavan\",\n                \"value\": \"half-pavan\",\n                \"count\": 0\n            },\n            {\n                \"id\": 458,\n                \"label\": \"Half Sovereign\",\n                \"value\": \"half-sovereign\",\n                \"count\": 0\n            },\n            {\n                \"id\": 221,\n                \"label\": \"Handmade\",\n                \"value\": \"handmade\",\n                \"count\": 0\n            },\n            {\n                \"id\": 76,\n                \"label\": \"Hanging\",\n                \"value\": \"hanging\",\n                \"count\": 76\n            },\n            {\n                \"id\": 278,\n                \"label\": \"Haram\",\n                \"value\": \"haram\",\n                \"count\": 0\n            },\n            {\n                \"id\": 77,\n                \"label\": \"Heart\",\n                \"value\": \"heart\",\n                \"count\": 194\n            },\n            {\n                \"id\": 591,\n                \"label\": \"himashu\",\n                \"value\": \"himashu\",\n                \"count\": 0\n            },\n            {\n                \"id\": 438,\n                \"label\": \"jali\",\n                \"value\": \"jali\",\n                \"count\": 0\n            },\n            {\n                \"id\": 159,\n                \"label\": \"Jhumki\",\n                \"value\": \"jhumki\",\n                \"count\": 2\n            },\n            {\n                \"id\": 79,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 25\n            },\n            {\n                \"id\": 45,\n                \"label\": \"Kite\",\n                \"value\": \"kite\",\n                \"count\": 0\n            },\n            {\n                \"id\": 454,\n                \"label\": \"Lakshmi\",\n                \"value\": \"lakshmi\",\n                \"count\": 0\n            },\n            {\n                \"id\": 677,\n                \"label\": \"Latest Jewellery Designs\",\n                \"value\": \"latest-jewellery-designs\",\n                \"count\": 0\n            },\n            {\n                \"id\": 72,\n                \"label\": \"Line\",\n                \"value\": \"line\",\n                \"count\": 0\n            },\n            {\n                \"id\": 166,\n                \"label\": \"Long\",\n                \"value\": \"long\",\n                \"count\": 0\n            },\n            {\n                \"id\": 425,\n                \"label\": \"Long Earring\",\n                \"value\": \"long-earring-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 94,\n                \"label\": \"long-earring\",\n                \"value\": \"long-earring\",\n                \"count\": 26\n            },\n            {\n                \"id\": 225,\n                \"label\": \"Loose\",\n                \"value\": \"loose\",\n                \"count\": 0\n            },\n            {\n                \"id\": 437,\n                \"label\": \"Loose Bracelet\",\n                \"value\": \"loose-bracelet-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 167,\n                \"label\": \"loose-bracelet\",\n                \"value\": \"loose-bracelet\",\n                \"count\": 5\n            },\n            {\n                \"id\": 331,\n                \"label\": \"Loose, Tennis\",\n                \"value\": \"loose-tennis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 441,\n                \"label\": \"Makar Sankrant\",\n                \"value\": \"makar-sankrant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 407,\n                \"label\": \"Manav\",\n                \"value\": \"manav\",\n                \"count\": 0\n            },\n            {\n                \"id\": 473,\n                \"label\": \"Meenakari Collection\",\n                \"value\": \"meenakari-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 442,\n                \"label\": \"mens\",\n                \"value\": \"mens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 82,\n                \"label\": \"Multi Line\",\n                \"value\": \"multi-line\",\n                \"count\": 106\n            },\n            {\n                \"id\": 49,\n                \"label\": \"Multiline\",\n                \"value\": \"multiline\",\n                \"count\": 0\n            },\n            {\n                \"id\": 28,\n                \"label\": \"Multiline Ring\",\n                \"value\": \"multiline-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 171,\n                \"label\": \"Nakshatra\",\n                \"value\": \"nakshatra\",\n                \"count\": 0\n            },\n            {\n                \"id\": 119,\n                \"label\": \"navgruha\",\n                \"value\": \"navgruha\",\n                \"count\": 1\n            },\n            {\n                \"id\": 645,\n                \"label\": \"New Arrival\",\n                \"value\": \"new-arrival\",\n                \"count\": 0\n            },\n            {\n                \"id\": 408,\n                \"label\": \"offers\",\n                \"value\": \"offers\",\n                \"count\": 0\n            },\n            {\n                \"id\": 660,\n                \"label\": \"Officewear\",\n                \"value\": \"officewear\",\n                \"count\": 0\n            },\n            {\n                \"id\": 99,\n                \"label\": \"others\",\n                \"value\": \"others\",\n                \"count\": 14\n            },\n            {\n                \"id\": 19,\n                \"label\": \"Oval\",\n                \"value\": \"oval\",\n                \"count\": 0\n            },\n            {\n                \"id\": 463,\n                \"label\": \"Party ring\",\n                \"value\": \"party-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 447,\n                \"label\": \"Pavan\",\n                \"value\": \"pavan\",\n                \"count\": 0\n            },\n            {\n                \"id\": 443,\n                \"label\": \"peacock\",\n                \"value\": \"peacock\",\n                \"count\": 0\n            },\n            {\n                \"id\": 445,\n                \"label\": \"Pearl\",\n                \"value\": \"pearl\",\n                \"count\": 1\n            },\n            {\n                \"id\": 629,\n                \"label\": \"Plain\",\n                \"value\": \"plain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 261,\n                \"label\": \"Platinum and Gold Wedding Band\",\n                \"value\": \"platinum-and-gold-wedding-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 448,\n                \"label\": \"Queen\",\n                \"value\": \"queen\",\n                \"count\": 0\n            },\n            {\n                \"id\": 537,\n                \"label\": \"Rakhi Product\",\n                \"value\": \"rakhi-product\",\n                \"count\": 0\n            },\n            {\n                \"id\": 631,\n                \"label\": \"Rani Haar\",\n                \"value\": \"rani-haar\",\n                \"count\": 0\n            },\n            {\n                \"id\": 654,\n                \"label\": \"Ring\",\n                \"value\": \"ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 41,\n                \"label\": \"Round\",\n                \"value\": \"round\",\n                \"count\": 0\n            },\n            {\n                \"id\": 208,\n                \"label\": \"Screw\",\n                \"value\": \"screw\",\n                \"count\": 0\n            },\n            {\n                \"id\": 630,\n                \"label\": \"Set with Pendant\",\n                \"value\": \"set-with-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 633,\n                \"label\": \"Short\",\n                \"value\": \"short\",\n                \"count\": 0\n            },\n            {\n                \"id\": 635,\n                \"label\": \"Side Broach\",\n                \"value\": \"side-broach\",\n                \"count\": 0\n            },\n            {\n                \"id\": 632,\n                \"label\": \"Simple\",\n                \"value\": \"simple\",\n                \"count\": 0\n            },\n            {\n                \"id\": 424,\n                \"label\": \"Single Diamond\",\n                \"value\": \"single-diamond-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 431,\n                \"label\": \"Single Line\",\n                \"value\": \"single-line-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 427,\n                \"label\": \"Single Stone\",\n                \"value\": \"single-stone\",\n                \"count\": 4\n            },\n            {\n                \"id\": 137,\n                \"label\": \"single-diamond\",\n                \"value\": \"single-diamond\",\n                \"count\": 7\n            },\n            {\n                \"id\": 97,\n                \"label\": \"single-line\",\n                \"value\": \"single-line\",\n                \"count\": 20\n            },\n            {\n                \"id\": 24,\n                \"label\": \"Solitaire\",\n                \"value\": \"solitaire\",\n                \"count\": 22\n            },\n            {\n                \"id\": 421,\n                \"label\": \"Solitaire Diamond\",\n                \"value\": \"solitaire-diamond-2\",\n                \"count\": 21\n            },\n            {\n                \"id\": 50,\n                \"label\": \"Solitaire Ring\",\n                \"value\": \"solitaire-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 136,\n                \"label\": \"solitaire-diamond\",\n                \"value\": \"solitaire-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 449,\n                \"label\": \"Sovereign\",\n                \"value\": \"sovereign\",\n                \"count\": 0\n            },\n            {\n                \"id\": 429,\n                \"label\": \"Spiritual\",\n                \"value\": \"spiritual\",\n                \"count\": 50\n            },\n            {\n                \"id\": 84,\n                \"label\": \"Square\",\n                \"value\": \"square\",\n                \"count\": 8\n            },\n            {\n                \"id\": 456,\n                \"label\": \"Stud\",\n                \"value\": \"stud\",\n                \"count\": 0\n            },\n            {\n                \"id\": 142,\n                \"label\": \"stylish\",\n                \"value\": \"stylish\",\n                \"count\": 0\n            },\n            {\n                \"id\": 418,\n                \"label\": \"tags\",\n                \"value\": \"tags\",\n                \"count\": 0\n            },\n            {\n                \"id\": 211,\n                \"label\": \"Tennis\",\n                \"value\": \"tennis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 432,\n                \"label\": \"Thin\",\n                \"value\": \"thin\",\n                \"count\": 5\n            },\n            {\n                \"id\": 78,\n                \"label\": \"Tops\",\n                \"value\": \"tops\",\n                \"count\": 224\n            },\n            {\n                \"id\": 453,\n                \"label\": \"Traditional\",\n                \"value\": \"traditional\",\n                \"count\": 6\n            },\n            {\n                \"id\": 86,\n                \"label\": \"Triangle\",\n                \"value\": \"triangle\",\n                \"count\": 8\n            },\n            {\n                \"id\": 71,\n                \"label\": \"Twist &amp; Turns\",\n                \"value\": \"twist-turns\",\n                \"count\": 780\n            },\n            {\n                \"id\": 435,\n                \"label\": \"U Shape\",\n                \"value\": \"u-shape-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 122,\n                \"label\": \"u-shape\",\n                \"value\": \"u-shape\",\n                \"count\": 0\n            },\n            {\n                \"id\": 87,\n                \"label\": \"Under 1 Ct\",\n                \"value\": \"under-1-ct\",\n                \"count\": 2\n            },\n            {\n                \"id\": 436,\n                \"label\": \"V Shape\",\n                \"value\": \"v-shape-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 121,\n                \"label\": \"v-shape\",\n                \"value\": \"v-shape\",\n                \"count\": 0\n            },\n            {\n                \"id\": 88,\n                \"label\": \"Valentine\",\n                \"value\": \"valentine\",\n                \"count\": 0\n            },\n            {\n                \"id\": 385,\n                \"label\": \"Valentine Collection\",\n                \"value\": \"valentine-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 605,\n                \"label\": \"Wedding\",\n                \"value\": \"wedding\",\n                \"count\": 0\n            },\n            {\n                \"id\": 455,\n                \"label\": \"Workwear\",\n                \"value\": \"workwear\",\n                \"count\": 0\n            }\n        ],\n        \"diamond_wt\": [\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            },\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            }\n        ],\n        \"gold_wt\": [\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            },\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            }\n        ],\n        \"gender\": [\n            {\n                \"id\": 478,\n                \"label\": \"Female\",\n                \"value\": \"female\",\n                \"count\": 5\n            },\n            {\n                \"id\": 479,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 0\n            },\n            {\n                \"id\": 477,\n                \"label\": \"Male\",\n                \"value\": \"male\",\n                \"count\": 0\n            },\n            {\n                \"id\": 480,\n                \"label\": \"Unisex\",\n                \"value\": \"unisex\",\n                \"count\": 3\n            }\n        ],\n        \"ocassions\": [\n            {\n                \"id\": 675,\n                \"label\": \"All Ocassions\",\n                \"value\": \"all-ocassions\",\n                \"count\": 0\n            },\n            {\n                \"id\": 642,\n                \"label\": \"Anniversary\",\n                \"value\": \"anniversary\",\n                \"count\": 2\n            },\n            {\n                \"id\": 641,\n                \"label\": \"Birthday\",\n                \"value\": \"birthday\",\n                \"count\": 2\n            }\n        ]\n    }\n}"}],"_postman_id":"2b49ce22-0b48-41fd-8786-7798f22a7803"},{"name":"Update Taxonomies","id":"77d91247-0688-4cdf-b6f4-80103a5db9c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"collections\": [\r\n      {\r\n        \"id\": 618,\r\n        \"label\": \"alskdfj\",\r\n        \"value\": \"alskdfj\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 205,\r\n        \"label\": \"Antique Jewellery\",\r\n        \"value\": \"antique-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 556,\r\n        \"label\": \"Beeds Jewellery\",\r\n        \"value\": \"beeds-jewellery\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 649,\r\n        \"label\": \"Coins\",\r\n        \"value\": \"coins\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 552,\r\n        \"label\": \"CZ / Swaroski Jewellery\",\r\n        \"value\": \"cz-swaroski-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 403,\r\n        \"label\": \"Dazzling Collections\",\r\n        \"value\": \"dazzling-collections\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 12,\r\n        \"label\": \"Diamond Jewellery\",\r\n        \"value\": \"diamond-jewellery\",\r\n        \"count\": 4447\r\n      },\r\n      {\r\n        \"id\": 15,\r\n        \"label\": \"Gemstone Jewellery\",\r\n        \"value\": \"gemstone-jewellery\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 11,\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold-jewellery\",\r\n        \"count\": 11\r\n      },\r\n      {\r\n        \"id\": 584,\r\n        \"label\": \"Gold Pen\",\r\n        \"value\": \"gold-pen\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 554,\r\n        \"label\": \"Heritage jewellery\",\r\n        \"value\": \"heritage-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 592,\r\n        \"label\": \"Imported Collection\",\r\n        \"value\": \"imported-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 467,\r\n        \"label\": \"Jewellery\",\r\n        \"value\": \"jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 381,\r\n        \"label\": \"Lab Grown Diamonds\",\r\n        \"value\": \"lab-grown-diamonds\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 663,\r\n        \"label\": \"Lightweight Jewellery\",\r\n        \"value\": \"lightweight-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 655,\r\n        \"label\": \"manav\",\r\n        \"value\": \"manav\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 530,\r\n        \"label\": \"Nakas / Antique Jewellery\",\r\n        \"value\": \"nakas-antique-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 549,\r\n        \"label\": \"Pachi Ruby Emerald Jewellery\",\r\n        \"value\": \"pachi-ruby-emerald-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 623,\r\n        \"label\": \"Pearl Jewellery\",\r\n        \"value\": \"pearl-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 213,\r\n        \"label\": \"platinum-jewellery\",\r\n        \"value\": \"platinum-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 550,\r\n        \"label\": \"Polki Jewellery\",\r\n        \"value\": \"polki-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 406,\r\n        \"label\": \"Ruby Collections\",\r\n        \"value\": \"ruby-collections\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 524,\r\n        \"label\": \"Silver\",\r\n        \"value\": \"silver\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 540,\r\n        \"label\": \"Silver Articles\",\r\n        \"value\": \"silver-articles\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 286,\r\n        \"label\": \"silver-jewellery\",\r\n        \"value\": \"silver-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 595,\r\n        \"label\": \"SiYA Collection\",\r\n        \"value\": \"siya-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 355,\r\n        \"label\": \"solitaire\",\r\n        \"value\": \"solitaire\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 391,\r\n        \"label\": \"T-1\",\r\n        \"value\": \"t-1\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 560,\r\n        \"label\": \"Ultra Light Weight Jewellery\",\r\n        \"value\": \"ultra-light-weight-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 678,\r\n        \"label\": \"Utsav Collection\",\r\n        \"value\": \"utsav-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 599,\r\n        \"label\": \"X collection\",\r\n        \"value\": \"x-collection\",\r\n        \"count\": 0\r\n      }\r\n    ],\r\n    \"categories\": [\r\n      {\r\n        \"id\": 468,\r\n        \"label\": \"B\",\r\n        \"value\": \"b\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 413,\r\n        \"label\": \"BABY CHAIN\",\r\n        \"value\": \"baby-chain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 580,\r\n        \"label\": \"BANGLE\",\r\n        \"value\": \"bangle\",\r\n        \"count\": 4\r\n      },\r\n      {\r\n        \"id\": 596,\r\n        \"label\": \"Bangles Set\",\r\n        \"value\": \"bangles-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 608,\r\n        \"label\": \"Bracelets\",\r\n        \"value\": \"bracelets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 557,\r\n        \"label\": \"Chains\",\r\n        \"value\": \"chains\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 469,\r\n        \"label\": \"D\",\r\n        \"value\": \"d\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 638,\r\n        \"label\": \"Diamond\",\r\n        \"value\": \"diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 545,\r\n        \"label\": \"Earring\",\r\n        \"value\": \"earring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 583,\r\n        \"label\": \"Glass Frames\",\r\n        \"value\": \"glass-frames\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 664,\r\n        \"label\": \"Gold\",\r\n        \"value\": \"gold\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 561,\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 585,\r\n        \"label\": \"Gold Pens\",\r\n        \"value\": \"gold-pens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 582,\r\n        \"label\": \"Idols\",\r\n        \"value\": \"idols\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 668,\r\n        \"label\": \"Italian\",\r\n        \"value\": \"italian\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 559,\r\n        \"label\": \"Jada\",\r\n        \"value\": \"jada\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 657,\r\n        \"label\": \"karina\",\r\n        \"value\": \"karina\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 284,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 531,\r\n        \"label\": \"Maang Tikka\",\r\n        \"value\": \"maang-tikka\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 577,\r\n        \"label\": \"Matti\",\r\n        \"value\": \"matti\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 280,\r\n        \"label\": \"Mens\",\r\n        \"value\": \"mens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 296,\r\n        \"label\": \"MIHIKA\",\r\n        \"value\": \"mihika\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 405,\r\n        \"label\": \"Nathnis\",\r\n        \"value\": \"nathnis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 604,\r\n        \"label\": \"Necklace\",\r\n        \"value\": \"necklace\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 679,\r\n        \"label\": \"Necklace RIng Set\",\r\n        \"value\": \"necklace-ring-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 551,\r\n        \"label\": \"Necklace Set\",\r\n        \"value\": \"necklace-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 609,\r\n        \"label\": \"Necklace Sets\",\r\n        \"value\": \"necklace-sets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 659,\r\n        \"label\": \"Office Dainty\",\r\n        \"value\": \"office-dainty\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 643,\r\n        \"label\": \"Pearl Pendant Sets\",\r\n        \"value\": \"pearl-pendant-sets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 600,\r\n        \"label\": \"Pendant Bangle Set\",\r\n        \"value\": \"pendant-bangle-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 553,\r\n        \"label\": \"Pendant set\",\r\n        \"value\": \"pendant-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 610,\r\n        \"label\": \"Pendant Sets\",\r\n        \"value\": \"pendant-sets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 652,\r\n        \"label\": \"Ring\",\r\n        \"value\": \"ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 535,\r\n        \"label\": \"Rings\",\r\n        \"value\": \"rings\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 624,\r\n        \"label\": \"Sets &amp; Necklaces\",\r\n        \"value\": \"sets-necklaces\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 543,\r\n        \"label\": \"Silver Articles\",\r\n        \"value\": \"silver-articles\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 650,\r\n        \"label\": \"Silver Coin\",\r\n        \"value\": \"silver-coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 525,\r\n        \"label\": \"SL\",\r\n        \"value\": \"sl\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 470,\r\n        \"label\": \"STONE\",\r\n        \"value\": \"stone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 671,\r\n        \"label\": \"Temple\",\r\n        \"value\": \"temple\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 673,\r\n        \"label\": \"Turkey\",\r\n        \"value\": \"turkey\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 295,\r\n        \"label\": \"UMRAO\",\r\n        \"value\": \"umrao\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 262,\r\n        \"label\": \"Uncategorized\",\r\n        \"value\": \"uncategorized\",\r\n        \"count\": 24\r\n      },\r\n      {\r\n        \"id\": 555,\r\n        \"label\": \"Vaddanam\",\r\n        \"value\": \"vaddanam\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 611,\r\n        \"label\": \"Victorian\",\r\n        \"value\": \"victorian\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 574,\r\n        \"label\": \"Watch\",\r\n        \"value\": \"watch\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 257,\r\n        \"label\": \"wedding-ring\",\r\n        \"value\": \"wedding-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 283,\r\n        \"label\": \"Womens\",\r\n        \"value\": \"womens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 359,\r\n        \"label\": \"Anniversary\",\r\n        \"value\": \"anniversary\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 230,\r\n        \"label\": \"Bangles\",\r\n        \"value\": \"bangles\",\r\n        \"count\": 79\r\n      },\r\n      {\r\n        \"id\": 558,\r\n        \"label\": \"Bhajubandh New Arrivals\",\r\n        \"value\": \"bhajubandh-new\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 350,\r\n        \"label\": \"Birthday\",\r\n        \"value\": \"birthday\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 299,\r\n        \"label\": \"Chain\",\r\n        \"value\": \"chain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 207,\r\n        \"label\": \"Demo\",\r\n        \"value\": \"demo\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 288,\r\n        \"label\": \"dsadsdasdsa\",\r\n        \"value\": \"dsadsdasdsa\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 390,\r\n        \"label\": \"Haram\",\r\n        \"value\": \"haram\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 434,\r\n        \"label\": \"Mangalsutra\",\r\n        \"value\": \"mangalsutra\",\r\n        \"count\": 3\r\n      },\r\n      {\r\n        \"id\": 356,\r\n        \"label\": \"Marriage\",\r\n        \"value\": \"marriage\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 2,\r\n        \"label\": \"Earrings\",\r\n        \"value\": \"earrings\",\r\n        \"count\": 1148\r\n      },\r\n      {\r\n        \"id\": 8,\r\n        \"label\": \"Bracelet\",\r\n        \"value\": \"bracelet\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 9,\r\n        \"label\": \"Ladies Ring\",\r\n        \"value\": \"ladies-ring\",\r\n        \"count\": 996\r\n      },\r\n      {\r\n        \"id\": 10,\r\n        \"label\": \"Gents Ring\",\r\n        \"value\": \"gents-ring\",\r\n        \"count\": 408\r\n      },\r\n      {\r\n        \"id\": 100,\r\n        \"label\": \"Nose Pins\",\r\n        \"value\": \"nose-pins\",\r\n        \"count\": 90\r\n      },\r\n      {\r\n        \"id\": 5,\r\n        \"label\": \"Necklaces\",\r\n        \"value\": \"necklaces\",\r\n        \"count\": 25\r\n      },\r\n      {\r\n        \"id\": 98,\r\n        \"label\": \"Pendants\",\r\n        \"value\": \"pendants\",\r\n        \"count\": 1063\r\n      }\r\n    ],\r\n    \"sub-categories\": [\r\n      {\r\n        \"id\": 277,\r\n        \"label\": \"\",\r\n        \"value\": \"277\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 665,\r\n        \"label\": \"Acessories\",\r\n        \"value\": \"acessories\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 282,\r\n        \"label\": \"anniversary\",\r\n        \"value\": \"anniversary\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 412,\r\n        \"label\": \"BABY CHAIN\",\r\n        \"value\": \"baby-chain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 439,\r\n        \"label\": \"Bali\",\r\n        \"value\": \"bali\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 285,\r\n        \"label\": \"Birthday\",\r\n        \"value\": \"birthday\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 404,\r\n        \"label\": \"Bombay Collections\",\r\n        \"value\": \"bombay-collections\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 669,\r\n        \"label\": \"Bracelet\",\r\n        \"value\": \"bracelet\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 409,\r\n        \"label\": \"CHAIN\",\r\n        \"value\": \"chain\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 247,\r\n        \"label\": \"Closed Setting\",\r\n        \"value\": \"closed-setting\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 245,\r\n        \"label\": \"CNC Machine Collection\",\r\n        \"value\": \"cnc-machine-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 276,\r\n        \"label\": \"DIAMOND NOSE PIN\",\r\n        \"value\": \"diamond-nose-pin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 639,\r\n        \"label\": \"Earring\",\r\n        \"value\": \"earring\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 617,\r\n        \"label\": \"Earring collection\",\r\n        \"value\": \"earring-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 440,\r\n        \"label\": \"Fulkari\",\r\n        \"value\": \"fulkari\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 360,\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 255,\r\n        \"label\": \"Group Ahmedabad\",\r\n        \"value\": \"group-ahmedabad\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 236,\r\n        \"label\": \"Group Kolkata\",\r\n        \"value\": \"group-kolkata\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 234,\r\n        \"label\": \"Group Mumbai\",\r\n        \"value\": \"group-mumbai\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 292,\r\n        \"label\": \"Handmade Bangles\",\r\n        \"value\": \"handmade-bangles\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 546,\r\n        \"label\": \"Imported\",\r\n        \"value\": \"imported\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 357,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 291,\r\n        \"label\": \"Machine Bangle\",\r\n        \"value\": \"machine-bangle\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 459,\r\n        \"label\": \"Mangalsutra pendant\",\r\n        \"value\": \"mangalsutra-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 287,\r\n        \"label\": \"Marriage\",\r\n        \"value\": \"marriage\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 348,\r\n        \"label\": \"Men\",\r\n        \"value\": \"men\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 475,\r\n        \"label\": \"New Arrival Rings\",\r\n        \"value\": \"new-arrival-rings\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 419,\r\n        \"label\": \"new Category\",\r\n        \"value\": \"new-category\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 625,\r\n        \"label\": \"Pearl Sets &amp; Necklaces\",\r\n        \"value\": \"pearl-sets-necklaces\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 644,\r\n        \"label\": \"Pendant Set\",\r\n        \"value\": \"pendant-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 460,\r\n        \"label\": \"Religious Pendant\",\r\n        \"value\": \"religious-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 653,\r\n        \"label\": \"Ring\",\r\n        \"value\": \"ring\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 536,\r\n        \"label\": \"Rings-Imported\",\r\n        \"value\": \"rings-imported\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 294,\r\n        \"label\": \"Studded Pen\",\r\n        \"value\": \"studded-pen\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 465,\r\n        \"label\": \"SwarnaSri\",\r\n        \"value\": \"swarnasri\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 389,\r\n        \"label\": \"TAG1\",\r\n        \"value\": \"tag1\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 384,\r\n        \"label\": \"thread\",\r\n        \"value\": \"thread\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 576,\r\n        \"label\": \"Tiger Nail\",\r\n        \"value\": \"tiger-nail\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 471,\r\n        \"label\": \"tribal Necklace\",\r\n        \"value\": \"tribal-necklace\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 281,\r\n        \"label\": \"Wedding\",\r\n        \"value\": \"wedding\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 351,\r\n        \"label\": \"Women\",\r\n        \"value\": \"women\",\r\n        \"count\": 0\r\n      }\r\n    ],\r\n    \"tags\": [\r\n      {\r\n        \"id\": 140,\r\n        \"label\": \"1 GRAM GOLD COIN\",\r\n        \"value\": \"1-gram-gold-coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 141,\r\n        \"label\": \"2 GRAM GOLD COIN\",\r\n        \"value\": \"2-gram-gold-coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 85,\r\n        \"label\": \"3 Diamonds\",\r\n        \"value\": \"3-diamonds\",\r\n        \"count\": 53\r\n      },\r\n      {\r\n        \"id\": 46,\r\n        \"label\": \"4 Diamond\",\r\n        \"value\": \"4-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 420,\r\n        \"label\": \"4 Diamonds\",\r\n        \"value\": \"4-diamonds-2\",\r\n        \"count\": 48\r\n      },\r\n      {\r\n        \"id\": 110,\r\n        \"label\": \"4-diamonds\",\r\n        \"value\": \"4-diamonds\",\r\n        \"count\": 19\r\n      },\r\n      {\r\n        \"id\": 43,\r\n        \"label\": \"7 Diamond\",\r\n        \"value\": \"7-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 433,\r\n        \"label\": \"7 Diamonds\",\r\n        \"value\": \"7-diamonds-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 96,\r\n        \"label\": \"7-diamonds\",\r\n        \"value\": \"7-diamonds\",\r\n        \"count\": 28\r\n      },\r\n      {\r\n        \"id\": 304,\r\n        \"label\": \"7-diamonds, Couple Band\",\r\n        \"value\": \"7-diamonds-couple-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 303,\r\n        \"label\": \"7-diamonds, Couple Band, Designer\",\r\n        \"value\": \"7-diamonds-couple-band-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 326,\r\n        \"label\": \"7-diamonds, Couple Band, Heart\",\r\n        \"value\": \"7-diamonds-couple-band-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 83,\r\n        \"label\": \"9 Diamonds\",\r\n        \"value\": \"9-diamonds\",\r\n        \"count\": 57\r\n      },\r\n      {\r\n        \"id\": 320,\r\n        \"label\": \"9 Diamonds, Designer\",\r\n        \"value\": \"9-diamonds-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 539,\r\n        \"label\": \"ABC SUPPLIER\",\r\n        \"value\": \"abc-supplier\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 428,\r\n        \"label\": \"Alphabets\",\r\n        \"value\": \"alphabets\",\r\n        \"count\": 104\r\n      },\r\n      {\r\n        \"id\": 616,\r\n        \"label\": \"amanda collecyion\",\r\n        \"value\": \"amanda-collecyion\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 444,\r\n        \"label\": \"antique\",\r\n        \"value\": \"antique\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 95,\r\n        \"label\": \"bali\",\r\n        \"value\": \"bali\",\r\n        \"count\": 154\r\n      },\r\n      {\r\n        \"id\": 325,\r\n        \"label\": \"bali, Tops\",\r\n        \"value\": \"bali-tops\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 25,\r\n        \"label\": \"Band\",\r\n        \"value\": \"band\",\r\n        \"count\": 106\r\n      },\r\n      {\r\n        \"id\": 334,\r\n        \"label\": \"Band, Bridal, Broad Ring\",\r\n        \"value\": \"band-bridal-broad-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 302,\r\n        \"label\": \"Band, Couple Band\",\r\n        \"value\": \"band-couple-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 329,\r\n        \"label\": \"Band, Couple Band, Designer\",\r\n        \"value\": \"band-couple-band-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 333,\r\n        \"label\": \"Band, Couple Band, Heart\",\r\n        \"value\": \"band-couple-band-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 319,\r\n        \"label\": \"Band, Designer\",\r\n        \"value\": \"band-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 81,\r\n        \"label\": \"Bands\",\r\n        \"value\": \"bands\",\r\n        \"count\": 141\r\n      },\r\n      {\r\n        \"id\": 464,\r\n        \"label\": \"beautiful ring\",\r\n        \"value\": \"beautiful-ring\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 450,\r\n        \"label\": \"Best\",\r\n        \"value\": \"best\",\r\n        \"count\": 7\r\n      },\r\n      {\r\n        \"id\": 162,\r\n        \"label\": \"Bridal\",\r\n        \"value\": \"bridal\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 318,\r\n        \"label\": \"Bridal, Broad\",\r\n        \"value\": \"bridal-broad\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 321,\r\n        \"label\": \"Bridal, Chandeliers\",\r\n        \"value\": \"bridal-chandeliers\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 335,\r\n        \"label\": \"Bridal, Heart\",\r\n        \"value\": \"bridal-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 332,\r\n        \"label\": \"Bridal, Jhumki\",\r\n        \"value\": \"bridal-jhumki\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 70,\r\n        \"label\": \"Broad\",\r\n        \"value\": \"broad\",\r\n        \"count\": 23\r\n      },\r\n      {\r\n        \"id\": 47,\r\n        \"label\": \"Broad Ring\",\r\n        \"value\": \"broad-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 323,\r\n        \"label\": \"Broad, Cluster, Tennis\",\r\n        \"value\": \"broad-cluster-tennis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 451,\r\n        \"label\": \"Casual\",\r\n        \"value\": \"casual\",\r\n        \"count\": 7\r\n      },\r\n      {\r\n        \"id\": 163,\r\n        \"label\": \"Chandeliers\",\r\n        \"value\": \"chandeliers\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 322,\r\n        \"label\": \"Chandeliers, Nakshatra\",\r\n        \"value\": \"chandeliers-nakshatra\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 157,\r\n        \"label\": \"Chocker\",\r\n        \"value\": \"chocker\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 316,\r\n        \"label\": \"Chocker, Designer\",\r\n        \"value\": \"chocker-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 628,\r\n        \"label\": \"Choker\",\r\n        \"value\": \"choker\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 627,\r\n        \"label\": \"Choker with Pendant\",\r\n        \"value\": \"choker-with-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 161,\r\n        \"label\": \"Close Set\",\r\n        \"value\": \"close-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 430,\r\n        \"label\": \"Close Setting\",\r\n        \"value\": \"close-setting-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 93,\r\n        \"label\": \"close-setting\",\r\n        \"value\": \"close-setting\",\r\n        \"count\": 25\r\n      },\r\n      {\r\n        \"id\": 209,\r\n        \"label\": \"Cluster\",\r\n        \"value\": \"cluster\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 312,\r\n        \"label\": \"Cluster, Designer\",\r\n        \"value\": \"cluster-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 446,\r\n        \"label\": \"Coin\",\r\n        \"value\": \"coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 74,\r\n        \"label\": \"Color Stone\",\r\n        \"value\": \"color-stone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 117,\r\n        \"label\": \"colorcstone\",\r\n        \"value\": \"colorcstone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 423,\r\n        \"label\": \"Colour Stone\",\r\n        \"value\": \"colour-stone-2\",\r\n        \"count\": 65\r\n      },\r\n      {\r\n        \"id\": 143,\r\n        \"label\": \"colour-stone\",\r\n        \"value\": \"colour-stone\",\r\n        \"count\": 126\r\n      },\r\n      {\r\n        \"id\": 626,\r\n        \"label\": \"Combination\",\r\n        \"value\": \"combination\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 232,\r\n        \"label\": \"Composites\",\r\n        \"value\": \"composites\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 156,\r\n        \"label\": \"Couple Band\",\r\n        \"value\": \"couple-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 300,\r\n        \"label\": \"Couple Band, Heart\",\r\n        \"value\": \"couple-band-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 593,\r\n        \"label\": \"Couple Bands\",\r\n        \"value\": \"couple-bands\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 259,\r\n        \"label\": \"Couple Rings\",\r\n        \"value\": \"couple-rings\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 417,\r\n        \"label\": \"cus\",\r\n        \"value\": \"cus\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 415,\r\n        \"label\": \"Custom Tag\",\r\n        \"value\": \"custom-tag\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 452,\r\n        \"label\": \"Daily\",\r\n        \"value\": \"daily\",\r\n        \"count\": 4\r\n      },\r\n      {\r\n        \"id\": 297,\r\n        \"label\": \"Dancing Diamond\",\r\n        \"value\": \"dancing-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 637,\r\n        \"label\": \"Design Your Necklace\",\r\n        \"value\": \"design-your-necklace\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 75,\r\n        \"label\": \"Designer\",\r\n        \"value\": \"designer\",\r\n        \"count\": 634\r\n      },\r\n      {\r\n        \"id\": 462,\r\n        \"label\": \"designer ring\",\r\n        \"value\": \"designer-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 313,\r\n        \"label\": \"Designer, Eternity\",\r\n        \"value\": \"designer-eternity\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 315,\r\n        \"label\": \"Designer, Floret, Nakshatra\",\r\n        \"value\": \"designer-floret-nakshatra\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 314,\r\n        \"label\": \"Designer, Hanging\",\r\n        \"value\": \"designer-hanging\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 414,\r\n        \"label\": \"diwali\",\r\n        \"value\": \"diwali\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 472,\r\n        \"label\": \"Diwali Collection\",\r\n        \"value\": \"diwali-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 426,\r\n        \"label\": \"Enamel\",\r\n        \"value\": \"enamel\",\r\n        \"count\": 27\r\n      },\r\n      {\r\n        \"id\": 606,\r\n        \"label\": \"Engagement\",\r\n        \"value\": \"engagement\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 601,\r\n        \"label\": \"Engagment Collection\",\r\n        \"value\": \"engagment-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 235,\r\n        \"label\": \"Eternity\",\r\n        \"value\": \"eternity\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 298,\r\n        \"label\": \"Evil Eye\",\r\n        \"value\": \"evil-eye\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 422,\r\n        \"label\": \"Fancy Diamonds\",\r\n        \"value\": \"fancy-diamonds-2\",\r\n        \"count\": 3\r\n      },\r\n      {\r\n        \"id\": 92,\r\n        \"label\": \"fancy-diamond\",\r\n        \"value\": \"fancy-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 89,\r\n        \"label\": \"fancy-diamonds\",\r\n        \"value\": \"fancy-diamonds\",\r\n        \"count\": 3\r\n      },\r\n      {\r\n        \"id\": 676,\r\n        \"label\": \"Fashion Jewellery\",\r\n        \"value\": \"fashion-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 416,\r\n        \"label\": \"festive collection\",\r\n        \"value\": \"festive-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 223,\r\n        \"label\": \"Floral\",\r\n        \"value\": \"floral\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 73,\r\n        \"label\": \"Floret\",\r\n        \"value\": \"floret\",\r\n        \"count\": 554\r\n      },\r\n      {\r\n        \"id\": 40,\r\n        \"label\": \"Flower\",\r\n        \"value\": \"flower\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 260,\r\n        \"label\": \"Fusion Rings Gold and Platinum\",\r\n        \"value\": \"fusion-rings-gold-and-platinum\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 636,\r\n        \"label\": \"Gemstone\",\r\n        \"value\": \"gemstone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 18,\r\n        \"label\": \"Gemstone Earring\",\r\n        \"value\": \"gemstone-earring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 168,\r\n        \"label\": \"gents\",\r\n        \"value\": \"gents\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 48,\r\n        \"label\": \"Gents Ring\",\r\n        \"value\": \"gents-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 528,\r\n        \"label\": \"GIFTCARD\",\r\n        \"value\": \"giftcard\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 80,\r\n        \"label\": \"God\",\r\n        \"value\": \"god\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 139,\r\n        \"label\": \"GOLD COINS\",\r\n        \"value\": \"gold-coins\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 634,\r\n        \"label\": \"Graduated\",\r\n        \"value\": \"graduated\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 457,\r\n        \"label\": \"Half Pavan\",\r\n        \"value\": \"half-pavan\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 458,\r\n        \"label\": \"Half Sovereign\",\r\n        \"value\": \"half-sovereign\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 221,\r\n        \"label\": \"Handmade\",\r\n        \"value\": \"handmade\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 76,\r\n        \"label\": \"Hanging\",\r\n        \"value\": \"hanging\",\r\n        \"count\": 76\r\n      },\r\n      {\r\n        \"id\": 278,\r\n        \"label\": \"Haram\",\r\n        \"value\": \"haram\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 77,\r\n        \"label\": \"Heart\",\r\n        \"value\": \"heart\",\r\n        \"count\": 194\r\n      },\r\n      {\r\n        \"id\": 591,\r\n        \"label\": \"himashu\",\r\n        \"value\": \"himashu\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 438,\r\n        \"label\": \"jali\",\r\n        \"value\": \"jali\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 159,\r\n        \"label\": \"Jhumki\",\r\n        \"value\": \"jhumki\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 79,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 25\r\n      },\r\n      {\r\n        \"id\": 45,\r\n        \"label\": \"Kite\",\r\n        \"value\": \"kite\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 454,\r\n        \"label\": \"Lakshmi\",\r\n        \"value\": \"lakshmi\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 677,\r\n        \"label\": \"Latest Jewellery Designs\",\r\n        \"value\": \"latest-jewellery-designs\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 72,\r\n        \"label\": \"Line\",\r\n        \"value\": \"line\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 166,\r\n        \"label\": \"Long\",\r\n        \"value\": \"long\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 425,\r\n        \"label\": \"Long Earring\",\r\n        \"value\": \"long-earring-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 94,\r\n        \"label\": \"long-earring\",\r\n        \"value\": \"long-earring\",\r\n        \"count\": 26\r\n      },\r\n      {\r\n        \"id\": 225,\r\n        \"label\": \"Loose\",\r\n        \"value\": \"loose\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 437,\r\n        \"label\": \"Loose Bracelet\",\r\n        \"value\": \"loose-bracelet-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 167,\r\n        \"label\": \"loose-bracelet\",\r\n        \"value\": \"loose-bracelet\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 331,\r\n        \"label\": \"Loose, Tennis\",\r\n        \"value\": \"loose-tennis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 441,\r\n        \"label\": \"Makar Sankrant\",\r\n        \"value\": \"makar-sankrant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 407,\r\n        \"label\": \"Manav\",\r\n        \"value\": \"manav\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 473,\r\n        \"label\": \"Meenakari Collection\",\r\n        \"value\": \"meenakari-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 442,\r\n        \"label\": \"mens\",\r\n        \"value\": \"mens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 82,\r\n        \"label\": \"Multi Line\",\r\n        \"value\": \"multi-line\",\r\n        \"count\": 106\r\n      },\r\n      {\r\n        \"id\": 49,\r\n        \"label\": \"Multiline\",\r\n        \"value\": \"multiline\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 28,\r\n        \"label\": \"Multiline Ring\",\r\n        \"value\": \"multiline-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 171,\r\n        \"label\": \"Nakshatra\",\r\n        \"value\": \"nakshatra\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 119,\r\n        \"label\": \"navgruha\",\r\n        \"value\": \"navgruha\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 645,\r\n        \"label\": \"New Arrival\",\r\n        \"value\": \"new-arrival\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 408,\r\n        \"label\": \"offers\",\r\n        \"value\": \"offers\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 660,\r\n        \"label\": \"Officewear\",\r\n        \"value\": \"officewear\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 99,\r\n        \"label\": \"others\",\r\n        \"value\": \"others\",\r\n        \"count\": 14\r\n      },\r\n      {\r\n        \"id\": 19,\r\n        \"label\": \"Oval\",\r\n        \"value\": \"oval\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 463,\r\n        \"label\": \"Party ring\",\r\n        \"value\": \"party-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 447,\r\n        \"label\": \"Pavan\",\r\n        \"value\": \"pavan\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 443,\r\n        \"label\": \"peacock\",\r\n        \"value\": \"peacock\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 445,\r\n        \"label\": \"Pearl\",\r\n        \"value\": \"pearl\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 629,\r\n        \"label\": \"Plain\",\r\n        \"value\": \"plain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 261,\r\n        \"label\": \"Platinum and Gold Wedding Band\",\r\n        \"value\": \"platinum-and-gold-wedding-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 448,\r\n        \"label\": \"Queen\",\r\n        \"value\": \"queen\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 537,\r\n        \"label\": \"Rakhi Product\",\r\n        \"value\": \"rakhi-product\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 631,\r\n        \"label\": \"Rani Haar\",\r\n        \"value\": \"rani-haar\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 654,\r\n        \"label\": \"Ring\",\r\n        \"value\": \"ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 41,\r\n        \"label\": \"Round\",\r\n        \"value\": \"round\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 208,\r\n        \"label\": \"Screw\",\r\n        \"value\": \"screw\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 630,\r\n        \"label\": \"Set with Pendant\",\r\n        \"value\": \"set-with-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 633,\r\n        \"label\": \"Short\",\r\n        \"value\": \"short\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 635,\r\n        \"label\": \"Side Broach\",\r\n        \"value\": \"side-broach\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 632,\r\n        \"label\": \"Simple\",\r\n        \"value\": \"simple\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 424,\r\n        \"label\": \"Single Diamond\",\r\n        \"value\": \"single-diamond-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 431,\r\n        \"label\": \"Single Line\",\r\n        \"value\": \"single-line-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 427,\r\n        \"label\": \"Single Stone\",\r\n        \"value\": \"single-stone\",\r\n        \"count\": 4\r\n      },\r\n      {\r\n        \"id\": 137,\r\n        \"label\": \"single-diamond\",\r\n        \"value\": \"single-diamond\",\r\n        \"count\": 7\r\n      },\r\n      {\r\n        \"id\": 97,\r\n        \"label\": \"single-line\",\r\n        \"value\": \"single-line\",\r\n        \"count\": 20\r\n      },\r\n      {\r\n        \"id\": 24,\r\n        \"label\": \"Solitaire\",\r\n        \"value\": \"solitaire\",\r\n        \"count\": 22\r\n      },\r\n      {\r\n        \"id\": 421,\r\n        \"label\": \"Solitaire Diamond\",\r\n        \"value\": \"solitaire-diamond-2\",\r\n        \"count\": 21\r\n      },\r\n      {\r\n        \"id\": 50,\r\n        \"label\": \"Solitaire Ring\",\r\n        \"value\": \"solitaire-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 136,\r\n        \"label\": \"solitaire-diamond\",\r\n        \"value\": \"solitaire-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 449,\r\n        \"label\": \"Sovereign\",\r\n        \"value\": \"sovereign\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 429,\r\n        \"label\": \"Spiritual\",\r\n        \"value\": \"spiritual\",\r\n        \"count\": 50\r\n      },\r\n      {\r\n        \"id\": 84,\r\n        \"label\": \"Square\",\r\n        \"value\": \"square\",\r\n        \"count\": 8\r\n      },\r\n      {\r\n        \"id\": 456,\r\n        \"label\": \"Stud\",\r\n        \"value\": \"stud\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 142,\r\n        \"label\": \"stylish\",\r\n        \"value\": \"stylish\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 418,\r\n        \"label\": \"tags\",\r\n        \"value\": \"tags\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 211,\r\n        \"label\": \"Tennis\",\r\n        \"value\": \"tennis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 432,\r\n        \"label\": \"Thin\",\r\n        \"value\": \"thin\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 78,\r\n        \"label\": \"Tops\",\r\n        \"value\": \"tops\",\r\n        \"count\": 224\r\n      },\r\n      {\r\n        \"id\": 453,\r\n        \"label\": \"Traditional\",\r\n        \"value\": \"traditional\",\r\n        \"count\": 6\r\n      },\r\n      {\r\n        \"id\": 86,\r\n        \"label\": \"Triangle\",\r\n        \"value\": \"triangle\",\r\n        \"count\": 8\r\n      },\r\n      {\r\n        \"id\": 71,\r\n        \"label\": \"Twist &amp; Turns\",\r\n        \"value\": \"twist-turns\",\r\n        \"count\": 780\r\n      },\r\n      {\r\n        \"id\": 435,\r\n        \"label\": \"U Shape\",\r\n        \"value\": \"u-shape-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 122,\r\n        \"label\": \"u-shape\",\r\n        \"value\": \"u-shape\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 87,\r\n        \"label\": \"Under 1 Ct\",\r\n        \"value\": \"under-1-ct\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 436,\r\n        \"label\": \"V Shape\",\r\n        \"value\": \"v-shape-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 121,\r\n        \"label\": \"v-shape\",\r\n        \"value\": \"v-shape\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 88,\r\n        \"label\": \"Valentine\",\r\n        \"value\": \"valentine\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 385,\r\n        \"label\": \"Valentine Collection\",\r\n        \"value\": \"valentine-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 605,\r\n        \"label\": \"Wedding\",\r\n        \"value\": \"wedding\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 455,\r\n        \"label\": \"Workwear\",\r\n        \"value\": \"workwear\",\r\n        \"count\": 0\r\n      }\r\n    ],\r\n    \"diamond_wt\": [\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      },\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      }\r\n    ],\r\n    \"gold_wt\": [\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      },\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      }\r\n    ],\r\n    \"gender\": [\r\n      {\r\n        \"id\": 478,\r\n        \"label\": \"Female\",\r\n        \"value\": \"female\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 479,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 477,\r\n        \"label\": \"Male\",\r\n        \"value\": \"male\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 480,\r\n        \"label\": \"Unisex\",\r\n        \"value\": \"unisex\",\r\n        \"count\": 3\r\n      }\r\n    ],\r\n    \"ocassions\": [\r\n      {\r\n        \"id\": 675,\r\n        \"label\": \"All Ocassions\",\r\n        \"value\": \"all-ocassions\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 642,\r\n        \"label\": \"Anniversary\",\r\n        \"value\": \"anniversary\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 641,\r\n        \"label\": \"Birthday\",\r\n        \"value\": \"birthday\",\r\n        \"count\": 2\r\n      }\r\n    ]\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/taxonomies","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>collections</td>\n<td>The types of jewellery collections available in your system. Each collection includes fields like <code>id</code> (unique identifier), <code>label</code> (the name of the collection), <code>value</code> (the slug for the collection), and <code>count</code> (number of items in that collection). Examples of collections include \"Antique Jewellery\", \"Diamond Jewellery\", \"Gold Jewellery\", and \"Gemstone Jewellery\".</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>The categories of jewellery items within collections. Each category has similar fields as collections, such as <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>. Categories help organize the jewellery items further into types like \"Bangles\", \"Necklaces\", \"Bracelets\", etc.</td>\n</tr>\n<tr>\n<td>sub-categories</td>\n<td>Sub-divisions within categories, offering more specific groupings of jewellery items. Each sub-category includes <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>. Examples include \"Maang Tikka\", \"Gold Jewellery\", and \"Diamond Nose Pin\".</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Tags associated with jewellery items that help with item identification, filtering, and searching. Examples include \"7 Diamonds\", \"Designer\", and \"Valentine\".</td>\n</tr>\n<tr>\n<td>diamond_wt</td>\n<td>Weight categories for diamonds. Each weight category includes fields like <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>.</td>\n</tr>\n<tr>\n<td>gold_wt</td>\n<td>Weight categories for gold items. Similar to <code>diamond_wt</code>, includes fields like <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>.</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>The gender category for jewellery items. Fields include <code>id</code>, <code>label</code>, <code>value</code>, and <code>count</code>. Examples include \"Male\", \"Female\", \"Kids\", and \"Unisex\".</td>\n</tr>\n<tr>\n<td>ocassions</td>\n<td>Special occasions for which jewellery items are categorized. Examples include \"Anniversary\", \"Birthday\", and \"All Occasions\".</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","taxonomies"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"c296a8c8-b67b-49b4-8428-2996e0d04c21","name":"update Taxonomies","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"collections\": [\r\n      {\r\n        \"id\": 618,\r\n        \"label\": \"alskdfj\",\r\n        \"value\": \"alskdfj\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 205,\r\n        \"label\": \"Antique Jewellery\",\r\n        \"value\": \"antique-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 556,\r\n        \"label\": \"Beeds Jewellery\",\r\n        \"value\": \"beeds-jewellery\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 649,\r\n        \"label\": \"Coins\",\r\n        \"value\": \"coins\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 552,\r\n        \"label\": \"CZ / Swaroski Jewellery\",\r\n        \"value\": \"cz-swaroski-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 403,\r\n        \"label\": \"Dazzling Collections\",\r\n        \"value\": \"dazzling-collections\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 12,\r\n        \"label\": \"Diamond Jewellery\",\r\n        \"value\": \"diamond-jewellery\",\r\n        \"count\": 4447\r\n      },\r\n      {\r\n        \"id\": 15,\r\n        \"label\": \"Gemstone Jewellery\",\r\n        \"value\": \"gemstone-jewellery\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 11,\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold-jewellery\",\r\n        \"count\": 11\r\n      },\r\n      {\r\n        \"id\": 584,\r\n        \"label\": \"Gold Pen\",\r\n        \"value\": \"gold-pen\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 554,\r\n        \"label\": \"Heritage jewellery\",\r\n        \"value\": \"heritage-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 592,\r\n        \"label\": \"Imported Collection\",\r\n        \"value\": \"imported-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 467,\r\n        \"label\": \"Jewellery\",\r\n        \"value\": \"jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 381,\r\n        \"label\": \"Lab Grown Diamonds\",\r\n        \"value\": \"lab-grown-diamonds\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 663,\r\n        \"label\": \"Lightweight Jewellery\",\r\n        \"value\": \"lightweight-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 655,\r\n        \"label\": \"manav\",\r\n        \"value\": \"manav\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 530,\r\n        \"label\": \"Nakas / Antique Jewellery\",\r\n        \"value\": \"nakas-antique-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 549,\r\n        \"label\": \"Pachi Ruby Emerald Jewellery\",\r\n        \"value\": \"pachi-ruby-emerald-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 623,\r\n        \"label\": \"Pearl Jewellery\",\r\n        \"value\": \"pearl-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 213,\r\n        \"label\": \"platinum-jewellery\",\r\n        \"value\": \"platinum-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 550,\r\n        \"label\": \"Polki Jewellery\",\r\n        \"value\": \"polki-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 406,\r\n        \"label\": \"Ruby Collections\",\r\n        \"value\": \"ruby-collections\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 524,\r\n        \"label\": \"Silver\",\r\n        \"value\": \"silver\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 540,\r\n        \"label\": \"Silver Articles\",\r\n        \"value\": \"silver-articles\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 286,\r\n        \"label\": \"silver-jewellery\",\r\n        \"value\": \"silver-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 595,\r\n        \"label\": \"SiYA Collection\",\r\n        \"value\": \"siya-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 355,\r\n        \"label\": \"solitaire\",\r\n        \"value\": \"solitaire\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 391,\r\n        \"label\": \"T-1\",\r\n        \"value\": \"t-1\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 560,\r\n        \"label\": \"Ultra Light Weight Jewellery\",\r\n        \"value\": \"ultra-light-weight-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 678,\r\n        \"label\": \"Utsav Collection\",\r\n        \"value\": \"utsav-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 599,\r\n        \"label\": \"X collection\",\r\n        \"value\": \"x-collection\",\r\n        \"count\": 0\r\n      }\r\n    ],\r\n    \"categories\": [\r\n      {\r\n        \"id\": 468,\r\n        \"label\": \"B\",\r\n        \"value\": \"b\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 413,\r\n        \"label\": \"BABY CHAIN\",\r\n        \"value\": \"baby-chain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 580,\r\n        \"label\": \"BANGLE\",\r\n        \"value\": \"bangle\",\r\n        \"count\": 4\r\n      },\r\n      {\r\n        \"id\": 596,\r\n        \"label\": \"Bangles Set\",\r\n        \"value\": \"bangles-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 608,\r\n        \"label\": \"Bracelets\",\r\n        \"value\": \"bracelets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 557,\r\n        \"label\": \"Chains\",\r\n        \"value\": \"chains\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 469,\r\n        \"label\": \"D\",\r\n        \"value\": \"d\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 638,\r\n        \"label\": \"Diamond\",\r\n        \"value\": \"diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 545,\r\n        \"label\": \"Earring\",\r\n        \"value\": \"earring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 583,\r\n        \"label\": \"Glass Frames\",\r\n        \"value\": \"glass-frames\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 664,\r\n        \"label\": \"Gold\",\r\n        \"value\": \"gold\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 561,\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 585,\r\n        \"label\": \"Gold Pens\",\r\n        \"value\": \"gold-pens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 582,\r\n        \"label\": \"Idols\",\r\n        \"value\": \"idols\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 668,\r\n        \"label\": \"Italian\",\r\n        \"value\": \"italian\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 559,\r\n        \"label\": \"Jada\",\r\n        \"value\": \"jada\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 657,\r\n        \"label\": \"karina\",\r\n        \"value\": \"karina\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 284,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 531,\r\n        \"label\": \"Maang Tikka\",\r\n        \"value\": \"maang-tikka\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 577,\r\n        \"label\": \"Matti\",\r\n        \"value\": \"matti\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 280,\r\n        \"label\": \"Mens\",\r\n        \"value\": \"mens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 296,\r\n        \"label\": \"MIHIKA\",\r\n        \"value\": \"mihika\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 405,\r\n        \"label\": \"Nathnis\",\r\n        \"value\": \"nathnis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 604,\r\n        \"label\": \"Necklace\",\r\n        \"value\": \"necklace\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 679,\r\n        \"label\": \"Necklace RIng Set\",\r\n        \"value\": \"necklace-ring-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 551,\r\n        \"label\": \"Necklace Set\",\r\n        \"value\": \"necklace-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 609,\r\n        \"label\": \"Necklace Sets\",\r\n        \"value\": \"necklace-sets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 659,\r\n        \"label\": \"Office Dainty\",\r\n        \"value\": \"office-dainty\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 643,\r\n        \"label\": \"Pearl Pendant Sets\",\r\n        \"value\": \"pearl-pendant-sets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 600,\r\n        \"label\": \"Pendant Bangle Set\",\r\n        \"value\": \"pendant-bangle-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 553,\r\n        \"label\": \"Pendant set\",\r\n        \"value\": \"pendant-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 610,\r\n        \"label\": \"Pendant Sets\",\r\n        \"value\": \"pendant-sets\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 652,\r\n        \"label\": \"Ring\",\r\n        \"value\": \"ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 535,\r\n        \"label\": \"Rings\",\r\n        \"value\": \"rings\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 624,\r\n        \"label\": \"Sets &amp; Necklaces\",\r\n        \"value\": \"sets-necklaces\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 543,\r\n        \"label\": \"Silver Articles\",\r\n        \"value\": \"silver-articles\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 650,\r\n        \"label\": \"Silver Coin\",\r\n        \"value\": \"silver-coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 525,\r\n        \"label\": \"SL\",\r\n        \"value\": \"sl\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 470,\r\n        \"label\": \"STONE\",\r\n        \"value\": \"stone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 671,\r\n        \"label\": \"Temple\",\r\n        \"value\": \"temple\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 673,\r\n        \"label\": \"Turkey\",\r\n        \"value\": \"turkey\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 295,\r\n        \"label\": \"UMRAO\",\r\n        \"value\": \"umrao\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 262,\r\n        \"label\": \"Uncategorized\",\r\n        \"value\": \"uncategorized\",\r\n        \"count\": 24\r\n      },\r\n      {\r\n        \"id\": 555,\r\n        \"label\": \"Vaddanam\",\r\n        \"value\": \"vaddanam\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 611,\r\n        \"label\": \"Victorian\",\r\n        \"value\": \"victorian\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 574,\r\n        \"label\": \"Watch\",\r\n        \"value\": \"watch\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 257,\r\n        \"label\": \"wedding-ring\",\r\n        \"value\": \"wedding-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 283,\r\n        \"label\": \"Womens\",\r\n        \"value\": \"womens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 359,\r\n        \"label\": \"Anniversary\",\r\n        \"value\": \"anniversary\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 230,\r\n        \"label\": \"Bangles\",\r\n        \"value\": \"bangles\",\r\n        \"count\": 79\r\n      },\r\n      {\r\n        \"id\": 558,\r\n        \"label\": \"Bhajubandh New Arrivals\",\r\n        \"value\": \"bhajubandh-new\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 350,\r\n        \"label\": \"Birthday\",\r\n        \"value\": \"birthday\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 299,\r\n        \"label\": \"Chain\",\r\n        \"value\": \"chain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 207,\r\n        \"label\": \"Demo\",\r\n        \"value\": \"demo\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 288,\r\n        \"label\": \"dsadsdasdsa\",\r\n        \"value\": \"dsadsdasdsa\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 390,\r\n        \"label\": \"Haram\",\r\n        \"value\": \"haram\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 434,\r\n        \"label\": \"Mangalsutra\",\r\n        \"value\": \"mangalsutra\",\r\n        \"count\": 3\r\n      },\r\n      {\r\n        \"id\": 356,\r\n        \"label\": \"Marriage\",\r\n        \"value\": \"marriage\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 2,\r\n        \"label\": \"Earrings\",\r\n        \"value\": \"earrings\",\r\n        \"count\": 1148\r\n      },\r\n      {\r\n        \"id\": 8,\r\n        \"label\": \"Bracelet\",\r\n        \"value\": \"bracelet\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 9,\r\n        \"label\": \"Ladies Ring\",\r\n        \"value\": \"ladies-ring\",\r\n        \"count\": 996\r\n      },\r\n      {\r\n        \"id\": 10,\r\n        \"label\": \"Gents Ring\",\r\n        \"value\": \"gents-ring\",\r\n        \"count\": 408\r\n      },\r\n      {\r\n        \"id\": 100,\r\n        \"label\": \"Nose Pins\",\r\n        \"value\": \"nose-pins\",\r\n        \"count\": 90\r\n      },\r\n      {\r\n        \"id\": 5,\r\n        \"label\": \"Necklaces\",\r\n        \"value\": \"necklaces\",\r\n        \"count\": 25\r\n      },\r\n      {\r\n        \"id\": 98,\r\n        \"label\": \"Pendants\",\r\n        \"value\": \"pendants\",\r\n        \"count\": 1063\r\n      }\r\n    ],\r\n    \"sub-categories\": [\r\n      {\r\n        \"id\": 277,\r\n        \"label\": \"\",\r\n        \"value\": \"277\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 665,\r\n        \"label\": \"Acessories\",\r\n        \"value\": \"acessories\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 282,\r\n        \"label\": \"anniversary\",\r\n        \"value\": \"anniversary\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 412,\r\n        \"label\": \"BABY CHAIN\",\r\n        \"value\": \"baby-chain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 439,\r\n        \"label\": \"Bali\",\r\n        \"value\": \"bali\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 285,\r\n        \"label\": \"Birthday\",\r\n        \"value\": \"birthday\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 404,\r\n        \"label\": \"Bombay Collections\",\r\n        \"value\": \"bombay-collections\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 669,\r\n        \"label\": \"Bracelet\",\r\n        \"value\": \"bracelet\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 409,\r\n        \"label\": \"CHAIN\",\r\n        \"value\": \"chain\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 247,\r\n        \"label\": \"Closed Setting\",\r\n        \"value\": \"closed-setting\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 245,\r\n        \"label\": \"CNC Machine Collection\",\r\n        \"value\": \"cnc-machine-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 276,\r\n        \"label\": \"DIAMOND NOSE PIN\",\r\n        \"value\": \"diamond-nose-pin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 639,\r\n        \"label\": \"Earring\",\r\n        \"value\": \"earring\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 617,\r\n        \"label\": \"Earring collection\",\r\n        \"value\": \"earring-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 440,\r\n        \"label\": \"Fulkari\",\r\n        \"value\": \"fulkari\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 360,\r\n        \"label\": \"Gold Jewellery\",\r\n        \"value\": \"gold-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 255,\r\n        \"label\": \"Group Ahmedabad\",\r\n        \"value\": \"group-ahmedabad\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 236,\r\n        \"label\": \"Group Kolkata\",\r\n        \"value\": \"group-kolkata\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 234,\r\n        \"label\": \"Group Mumbai\",\r\n        \"value\": \"group-mumbai\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 292,\r\n        \"label\": \"Handmade Bangles\",\r\n        \"value\": \"handmade-bangles\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 546,\r\n        \"label\": \"Imported\",\r\n        \"value\": \"imported\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 357,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 291,\r\n        \"label\": \"Machine Bangle\",\r\n        \"value\": \"machine-bangle\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 459,\r\n        \"label\": \"Mangalsutra pendant\",\r\n        \"value\": \"mangalsutra-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 287,\r\n        \"label\": \"Marriage\",\r\n        \"value\": \"marriage\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 348,\r\n        \"label\": \"Men\",\r\n        \"value\": \"men\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 475,\r\n        \"label\": \"New Arrival Rings\",\r\n        \"value\": \"new-arrival-rings\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 419,\r\n        \"label\": \"new Category\",\r\n        \"value\": \"new-category\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 625,\r\n        \"label\": \"Pearl Sets &amp; Necklaces\",\r\n        \"value\": \"pearl-sets-necklaces\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 644,\r\n        \"label\": \"Pendant Set\",\r\n        \"value\": \"pendant-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 460,\r\n        \"label\": \"Religious Pendant\",\r\n        \"value\": \"religious-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 653,\r\n        \"label\": \"Ring\",\r\n        \"value\": \"ring\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 536,\r\n        \"label\": \"Rings-Imported\",\r\n        \"value\": \"rings-imported\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 294,\r\n        \"label\": \"Studded Pen\",\r\n        \"value\": \"studded-pen\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 465,\r\n        \"label\": \"SwarnaSri\",\r\n        \"value\": \"swarnasri\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 389,\r\n        \"label\": \"TAG1\",\r\n        \"value\": \"tag1\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 384,\r\n        \"label\": \"thread\",\r\n        \"value\": \"thread\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 576,\r\n        \"label\": \"Tiger Nail\",\r\n        \"value\": \"tiger-nail\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 471,\r\n        \"label\": \"tribal Necklace\",\r\n        \"value\": \"tribal-necklace\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 281,\r\n        \"label\": \"Wedding\",\r\n        \"value\": \"wedding\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 351,\r\n        \"label\": \"Women\",\r\n        \"value\": \"women\",\r\n        \"count\": 0\r\n      }\r\n    ],\r\n    \"tags\": [\r\n      {\r\n        \"id\": 140,\r\n        \"label\": \"1 GRAM GOLD COIN\",\r\n        \"value\": \"1-gram-gold-coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 141,\r\n        \"label\": \"2 GRAM GOLD COIN\",\r\n        \"value\": \"2-gram-gold-coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 85,\r\n        \"label\": \"3 Diamonds\",\r\n        \"value\": \"3-diamonds\",\r\n        \"count\": 53\r\n      },\r\n      {\r\n        \"id\": 46,\r\n        \"label\": \"4 Diamond\",\r\n        \"value\": \"4-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 420,\r\n        \"label\": \"4 Diamonds\",\r\n        \"value\": \"4-diamonds-2\",\r\n        \"count\": 48\r\n      },\r\n      {\r\n        \"id\": 110,\r\n        \"label\": \"4-diamonds\",\r\n        \"value\": \"4-diamonds\",\r\n        \"count\": 19\r\n      },\r\n      {\r\n        \"id\": 43,\r\n        \"label\": \"7 Diamond\",\r\n        \"value\": \"7-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 433,\r\n        \"label\": \"7 Diamonds\",\r\n        \"value\": \"7-diamonds-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 96,\r\n        \"label\": \"7-diamonds\",\r\n        \"value\": \"7-diamonds\",\r\n        \"count\": 28\r\n      },\r\n      {\r\n        \"id\": 304,\r\n        \"label\": \"7-diamonds, Couple Band\",\r\n        \"value\": \"7-diamonds-couple-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 303,\r\n        \"label\": \"7-diamonds, Couple Band, Designer\",\r\n        \"value\": \"7-diamonds-couple-band-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 326,\r\n        \"label\": \"7-diamonds, Couple Band, Heart\",\r\n        \"value\": \"7-diamonds-couple-band-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 83,\r\n        \"label\": \"9 Diamonds\",\r\n        \"value\": \"9-diamonds\",\r\n        \"count\": 57\r\n      },\r\n      {\r\n        \"id\": 320,\r\n        \"label\": \"9 Diamonds, Designer\",\r\n        \"value\": \"9-diamonds-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 539,\r\n        \"label\": \"ABC SUPPLIER\",\r\n        \"value\": \"abc-supplier\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 428,\r\n        \"label\": \"Alphabets\",\r\n        \"value\": \"alphabets\",\r\n        \"count\": 104\r\n      },\r\n      {\r\n        \"id\": 616,\r\n        \"label\": \"amanda collecyion\",\r\n        \"value\": \"amanda-collecyion\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 444,\r\n        \"label\": \"antique\",\r\n        \"value\": \"antique\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 95,\r\n        \"label\": \"bali\",\r\n        \"value\": \"bali\",\r\n        \"count\": 154\r\n      },\r\n      {\r\n        \"id\": 325,\r\n        \"label\": \"bali, Tops\",\r\n        \"value\": \"bali-tops\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 25,\r\n        \"label\": \"Band\",\r\n        \"value\": \"band\",\r\n        \"count\": 106\r\n      },\r\n      {\r\n        \"id\": 334,\r\n        \"label\": \"Band, Bridal, Broad Ring\",\r\n        \"value\": \"band-bridal-broad-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 302,\r\n        \"label\": \"Band, Couple Band\",\r\n        \"value\": \"band-couple-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 329,\r\n        \"label\": \"Band, Couple Band, Designer\",\r\n        \"value\": \"band-couple-band-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 333,\r\n        \"label\": \"Band, Couple Band, Heart\",\r\n        \"value\": \"band-couple-band-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 319,\r\n        \"label\": \"Band, Designer\",\r\n        \"value\": \"band-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 81,\r\n        \"label\": \"Bands\",\r\n        \"value\": \"bands\",\r\n        \"count\": 141\r\n      },\r\n      {\r\n        \"id\": 464,\r\n        \"label\": \"beautiful ring\",\r\n        \"value\": \"beautiful-ring\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 450,\r\n        \"label\": \"Best\",\r\n        \"value\": \"best\",\r\n        \"count\": 7\r\n      },\r\n      {\r\n        \"id\": 162,\r\n        \"label\": \"Bridal\",\r\n        \"value\": \"bridal\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 318,\r\n        \"label\": \"Bridal, Broad\",\r\n        \"value\": \"bridal-broad\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 321,\r\n        \"label\": \"Bridal, Chandeliers\",\r\n        \"value\": \"bridal-chandeliers\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 335,\r\n        \"label\": \"Bridal, Heart\",\r\n        \"value\": \"bridal-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 332,\r\n        \"label\": \"Bridal, Jhumki\",\r\n        \"value\": \"bridal-jhumki\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 70,\r\n        \"label\": \"Broad\",\r\n        \"value\": \"broad\",\r\n        \"count\": 23\r\n      },\r\n      {\r\n        \"id\": 47,\r\n        \"label\": \"Broad Ring\",\r\n        \"value\": \"broad-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 323,\r\n        \"label\": \"Broad, Cluster, Tennis\",\r\n        \"value\": \"broad-cluster-tennis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 451,\r\n        \"label\": \"Casual\",\r\n        \"value\": \"casual\",\r\n        \"count\": 7\r\n      },\r\n      {\r\n        \"id\": 163,\r\n        \"label\": \"Chandeliers\",\r\n        \"value\": \"chandeliers\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 322,\r\n        \"label\": \"Chandeliers, Nakshatra\",\r\n        \"value\": \"chandeliers-nakshatra\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 157,\r\n        \"label\": \"Chocker\",\r\n        \"value\": \"chocker\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 316,\r\n        \"label\": \"Chocker, Designer\",\r\n        \"value\": \"chocker-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 628,\r\n        \"label\": \"Choker\",\r\n        \"value\": \"choker\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 627,\r\n        \"label\": \"Choker with Pendant\",\r\n        \"value\": \"choker-with-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 161,\r\n        \"label\": \"Close Set\",\r\n        \"value\": \"close-set\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 430,\r\n        \"label\": \"Close Setting\",\r\n        \"value\": \"close-setting-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 93,\r\n        \"label\": \"close-setting\",\r\n        \"value\": \"close-setting\",\r\n        \"count\": 25\r\n      },\r\n      {\r\n        \"id\": 209,\r\n        \"label\": \"Cluster\",\r\n        \"value\": \"cluster\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 312,\r\n        \"label\": \"Cluster, Designer\",\r\n        \"value\": \"cluster-designer\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 446,\r\n        \"label\": \"Coin\",\r\n        \"value\": \"coin\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 74,\r\n        \"label\": \"Color Stone\",\r\n        \"value\": \"color-stone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 117,\r\n        \"label\": \"colorcstone\",\r\n        \"value\": \"colorcstone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 423,\r\n        \"label\": \"Colour Stone\",\r\n        \"value\": \"colour-stone-2\",\r\n        \"count\": 65\r\n      },\r\n      {\r\n        \"id\": 143,\r\n        \"label\": \"colour-stone\",\r\n        \"value\": \"colour-stone\",\r\n        \"count\": 126\r\n      },\r\n      {\r\n        \"id\": 626,\r\n        \"label\": \"Combination\",\r\n        \"value\": \"combination\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 232,\r\n        \"label\": \"Composites\",\r\n        \"value\": \"composites\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 156,\r\n        \"label\": \"Couple Band\",\r\n        \"value\": \"couple-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 300,\r\n        \"label\": \"Couple Band, Heart\",\r\n        \"value\": \"couple-band-heart\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 593,\r\n        \"label\": \"Couple Bands\",\r\n        \"value\": \"couple-bands\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 259,\r\n        \"label\": \"Couple Rings\",\r\n        \"value\": \"couple-rings\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 417,\r\n        \"label\": \"cus\",\r\n        \"value\": \"cus\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 415,\r\n        \"label\": \"Custom Tag\",\r\n        \"value\": \"custom-tag\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 452,\r\n        \"label\": \"Daily\",\r\n        \"value\": \"daily\",\r\n        \"count\": 4\r\n      },\r\n      {\r\n        \"id\": 297,\r\n        \"label\": \"Dancing Diamond\",\r\n        \"value\": \"dancing-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 637,\r\n        \"label\": \"Design Your Necklace\",\r\n        \"value\": \"design-your-necklace\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 75,\r\n        \"label\": \"Designer\",\r\n        \"value\": \"designer\",\r\n        \"count\": 634\r\n      },\r\n      {\r\n        \"id\": 462,\r\n        \"label\": \"designer ring\",\r\n        \"value\": \"designer-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 313,\r\n        \"label\": \"Designer, Eternity\",\r\n        \"value\": \"designer-eternity\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 315,\r\n        \"label\": \"Designer, Floret, Nakshatra\",\r\n        \"value\": \"designer-floret-nakshatra\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 314,\r\n        \"label\": \"Designer, Hanging\",\r\n        \"value\": \"designer-hanging\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 414,\r\n        \"label\": \"diwali\",\r\n        \"value\": \"diwali\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 472,\r\n        \"label\": \"Diwali Collection\",\r\n        \"value\": \"diwali-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 426,\r\n        \"label\": \"Enamel\",\r\n        \"value\": \"enamel\",\r\n        \"count\": 27\r\n      },\r\n      {\r\n        \"id\": 606,\r\n        \"label\": \"Engagement\",\r\n        \"value\": \"engagement\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 601,\r\n        \"label\": \"Engagment Collection\",\r\n        \"value\": \"engagment-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 235,\r\n        \"label\": \"Eternity\",\r\n        \"value\": \"eternity\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 298,\r\n        \"label\": \"Evil Eye\",\r\n        \"value\": \"evil-eye\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 422,\r\n        \"label\": \"Fancy Diamonds\",\r\n        \"value\": \"fancy-diamonds-2\",\r\n        \"count\": 3\r\n      },\r\n      {\r\n        \"id\": 92,\r\n        \"label\": \"fancy-diamond\",\r\n        \"value\": \"fancy-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 89,\r\n        \"label\": \"fancy-diamonds\",\r\n        \"value\": \"fancy-diamonds\",\r\n        \"count\": 3\r\n      },\r\n      {\r\n        \"id\": 676,\r\n        \"label\": \"Fashion Jewellery\",\r\n        \"value\": \"fashion-jewellery\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 416,\r\n        \"label\": \"festive collection\",\r\n        \"value\": \"festive-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 223,\r\n        \"label\": \"Floral\",\r\n        \"value\": \"floral\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 73,\r\n        \"label\": \"Floret\",\r\n        \"value\": \"floret\",\r\n        \"count\": 554\r\n      },\r\n      {\r\n        \"id\": 40,\r\n        \"label\": \"Flower\",\r\n        \"value\": \"flower\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 260,\r\n        \"label\": \"Fusion Rings Gold and Platinum\",\r\n        \"value\": \"fusion-rings-gold-and-platinum\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 636,\r\n        \"label\": \"Gemstone\",\r\n        \"value\": \"gemstone\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 18,\r\n        \"label\": \"Gemstone Earring\",\r\n        \"value\": \"gemstone-earring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 168,\r\n        \"label\": \"gents\",\r\n        \"value\": \"gents\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 48,\r\n        \"label\": \"Gents Ring\",\r\n        \"value\": \"gents-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 528,\r\n        \"label\": \"GIFTCARD\",\r\n        \"value\": \"giftcard\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 80,\r\n        \"label\": \"God\",\r\n        \"value\": \"god\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 139,\r\n        \"label\": \"GOLD COINS\",\r\n        \"value\": \"gold-coins\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 634,\r\n        \"label\": \"Graduated\",\r\n        \"value\": \"graduated\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 457,\r\n        \"label\": \"Half Pavan\",\r\n        \"value\": \"half-pavan\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 458,\r\n        \"label\": \"Half Sovereign\",\r\n        \"value\": \"half-sovereign\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 221,\r\n        \"label\": \"Handmade\",\r\n        \"value\": \"handmade\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 76,\r\n        \"label\": \"Hanging\",\r\n        \"value\": \"hanging\",\r\n        \"count\": 76\r\n      },\r\n      {\r\n        \"id\": 278,\r\n        \"label\": \"Haram\",\r\n        \"value\": \"haram\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 77,\r\n        \"label\": \"Heart\",\r\n        \"value\": \"heart\",\r\n        \"count\": 194\r\n      },\r\n      {\r\n        \"id\": 591,\r\n        \"label\": \"himashu\",\r\n        \"value\": \"himashu\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 438,\r\n        \"label\": \"jali\",\r\n        \"value\": \"jali\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 159,\r\n        \"label\": \"Jhumki\",\r\n        \"value\": \"jhumki\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 79,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 25\r\n      },\r\n      {\r\n        \"id\": 45,\r\n        \"label\": \"Kite\",\r\n        \"value\": \"kite\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 454,\r\n        \"label\": \"Lakshmi\",\r\n        \"value\": \"lakshmi\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 677,\r\n        \"label\": \"Latest Jewellery Designs\",\r\n        \"value\": \"latest-jewellery-designs\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 72,\r\n        \"label\": \"Line\",\r\n        \"value\": \"line\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 166,\r\n        \"label\": \"Long\",\r\n        \"value\": \"long\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 425,\r\n        \"label\": \"Long Earring\",\r\n        \"value\": \"long-earring-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 94,\r\n        \"label\": \"long-earring\",\r\n        \"value\": \"long-earring\",\r\n        \"count\": 26\r\n      },\r\n      {\r\n        \"id\": 225,\r\n        \"label\": \"Loose\",\r\n        \"value\": \"loose\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 437,\r\n        \"label\": \"Loose Bracelet\",\r\n        \"value\": \"loose-bracelet-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 167,\r\n        \"label\": \"loose-bracelet\",\r\n        \"value\": \"loose-bracelet\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 331,\r\n        \"label\": \"Loose, Tennis\",\r\n        \"value\": \"loose-tennis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 441,\r\n        \"label\": \"Makar Sankrant\",\r\n        \"value\": \"makar-sankrant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 407,\r\n        \"label\": \"Manav\",\r\n        \"value\": \"manav\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 473,\r\n        \"label\": \"Meenakari Collection\",\r\n        \"value\": \"meenakari-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 442,\r\n        \"label\": \"mens\",\r\n        \"value\": \"mens\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 82,\r\n        \"label\": \"Multi Line\",\r\n        \"value\": \"multi-line\",\r\n        \"count\": 106\r\n      },\r\n      {\r\n        \"id\": 49,\r\n        \"label\": \"Multiline\",\r\n        \"value\": \"multiline\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 28,\r\n        \"label\": \"Multiline Ring\",\r\n        \"value\": \"multiline-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 171,\r\n        \"label\": \"Nakshatra\",\r\n        \"value\": \"nakshatra\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 119,\r\n        \"label\": \"navgruha\",\r\n        \"value\": \"navgruha\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 645,\r\n        \"label\": \"New Arrival\",\r\n        \"value\": \"new-arrival\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 408,\r\n        \"label\": \"offers\",\r\n        \"value\": \"offers\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 660,\r\n        \"label\": \"Officewear\",\r\n        \"value\": \"officewear\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 99,\r\n        \"label\": \"others\",\r\n        \"value\": \"others\",\r\n        \"count\": 14\r\n      },\r\n      {\r\n        \"id\": 19,\r\n        \"label\": \"Oval\",\r\n        \"value\": \"oval\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 463,\r\n        \"label\": \"Party ring\",\r\n        \"value\": \"party-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 447,\r\n        \"label\": \"Pavan\",\r\n        \"value\": \"pavan\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 443,\r\n        \"label\": \"peacock\",\r\n        \"value\": \"peacock\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 445,\r\n        \"label\": \"Pearl\",\r\n        \"value\": \"pearl\",\r\n        \"count\": 1\r\n      },\r\n      {\r\n        \"id\": 629,\r\n        \"label\": \"Plain\",\r\n        \"value\": \"plain\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 261,\r\n        \"label\": \"Platinum and Gold Wedding Band\",\r\n        \"value\": \"platinum-and-gold-wedding-band\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 448,\r\n        \"label\": \"Queen\",\r\n        \"value\": \"queen\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 537,\r\n        \"label\": \"Rakhi Product\",\r\n        \"value\": \"rakhi-product\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 631,\r\n        \"label\": \"Rani Haar\",\r\n        \"value\": \"rani-haar\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 654,\r\n        \"label\": \"Ring\",\r\n        \"value\": \"ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 41,\r\n        \"label\": \"Round\",\r\n        \"value\": \"round\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 208,\r\n        \"label\": \"Screw\",\r\n        \"value\": \"screw\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 630,\r\n        \"label\": \"Set with Pendant\",\r\n        \"value\": \"set-with-pendant\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 633,\r\n        \"label\": \"Short\",\r\n        \"value\": \"short\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 635,\r\n        \"label\": \"Side Broach\",\r\n        \"value\": \"side-broach\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 632,\r\n        \"label\": \"Simple\",\r\n        \"value\": \"simple\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 424,\r\n        \"label\": \"Single Diamond\",\r\n        \"value\": \"single-diamond-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 431,\r\n        \"label\": \"Single Line\",\r\n        \"value\": \"single-line-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 427,\r\n        \"label\": \"Single Stone\",\r\n        \"value\": \"single-stone\",\r\n        \"count\": 4\r\n      },\r\n      {\r\n        \"id\": 137,\r\n        \"label\": \"single-diamond\",\r\n        \"value\": \"single-diamond\",\r\n        \"count\": 7\r\n      },\r\n      {\r\n        \"id\": 97,\r\n        \"label\": \"single-line\",\r\n        \"value\": \"single-line\",\r\n        \"count\": 20\r\n      },\r\n      {\r\n        \"id\": 24,\r\n        \"label\": \"Solitaire\",\r\n        \"value\": \"solitaire\",\r\n        \"count\": 22\r\n      },\r\n      {\r\n        \"id\": 421,\r\n        \"label\": \"Solitaire Diamond\",\r\n        \"value\": \"solitaire-diamond-2\",\r\n        \"count\": 21\r\n      },\r\n      {\r\n        \"id\": 50,\r\n        \"label\": \"Solitaire Ring\",\r\n        \"value\": \"solitaire-ring\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 136,\r\n        \"label\": \"solitaire-diamond\",\r\n        \"value\": \"solitaire-diamond\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 449,\r\n        \"label\": \"Sovereign\",\r\n        \"value\": \"sovereign\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 429,\r\n        \"label\": \"Spiritual\",\r\n        \"value\": \"spiritual\",\r\n        \"count\": 50\r\n      },\r\n      {\r\n        \"id\": 84,\r\n        \"label\": \"Square\",\r\n        \"value\": \"square\",\r\n        \"count\": 8\r\n      },\r\n      {\r\n        \"id\": 456,\r\n        \"label\": \"Stud\",\r\n        \"value\": \"stud\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 142,\r\n        \"label\": \"stylish\",\r\n        \"value\": \"stylish\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 418,\r\n        \"label\": \"tags\",\r\n        \"value\": \"tags\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 211,\r\n        \"label\": \"Tennis\",\r\n        \"value\": \"tennis\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 432,\r\n        \"label\": \"Thin\",\r\n        \"value\": \"thin\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 78,\r\n        \"label\": \"Tops\",\r\n        \"value\": \"tops\",\r\n        \"count\": 224\r\n      },\r\n      {\r\n        \"id\": 453,\r\n        \"label\": \"Traditional\",\r\n        \"value\": \"traditional\",\r\n        \"count\": 6\r\n      },\r\n      {\r\n        \"id\": 86,\r\n        \"label\": \"Triangle\",\r\n        \"value\": \"triangle\",\r\n        \"count\": 8\r\n      },\r\n      {\r\n        \"id\": 71,\r\n        \"label\": \"Twist &amp; Turns\",\r\n        \"value\": \"twist-turns\",\r\n        \"count\": 780\r\n      },\r\n      {\r\n        \"id\": 435,\r\n        \"label\": \"U Shape\",\r\n        \"value\": \"u-shape-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 122,\r\n        \"label\": \"u-shape\",\r\n        \"value\": \"u-shape\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 87,\r\n        \"label\": \"Under 1 Ct\",\r\n        \"value\": \"under-1-ct\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 436,\r\n        \"label\": \"V Shape\",\r\n        \"value\": \"v-shape-2\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 121,\r\n        \"label\": \"v-shape\",\r\n        \"value\": \"v-shape\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 88,\r\n        \"label\": \"Valentine\",\r\n        \"value\": \"valentine\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 385,\r\n        \"label\": \"Valentine Collection\",\r\n        \"value\": \"valentine-collection\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 605,\r\n        \"label\": \"Wedding\",\r\n        \"value\": \"wedding\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 455,\r\n        \"label\": \"Workwear\",\r\n        \"value\": \"workwear\",\r\n        \"count\": 0\r\n      }\r\n    ],\r\n    \"diamond_wt\": [\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      },\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      }\r\n    ],\r\n    \"gold_wt\": [\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      },\r\n      {\r\n        \"id\": null,\r\n        \"label\": null,\r\n        \"value\": null,\r\n        \"count\": null\r\n      }\r\n    ],\r\n    \"gender\": [\r\n      {\r\n        \"id\": 478,\r\n        \"label\": \"Female\",\r\n        \"value\": \"female\",\r\n        \"count\": 5\r\n      },\r\n      {\r\n        \"id\": 479,\r\n        \"label\": \"Kids\",\r\n        \"value\": \"kids\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 477,\r\n        \"label\": \"Male\",\r\n        \"value\": \"male\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 480,\r\n        \"label\": \"Unisex\",\r\n        \"value\": \"unisex\",\r\n        \"count\": 3\r\n      }\r\n    ],\r\n    \"ocassions\": [\r\n      {\r\n        \"id\": 675,\r\n        \"label\": \"All Ocassions\",\r\n        \"value\": \"all-ocassions\",\r\n        \"count\": 0\r\n      },\r\n      {\r\n        \"id\": 642,\r\n        \"label\": \"Anniversary\",\r\n        \"value\": \"anniversary\",\r\n        \"count\": 2\r\n      },\r\n      {\r\n        \"id\": 641,\r\n        \"label\": \"Birthday\",\r\n        \"value\": \"birthday\",\r\n        \"count\": 2\r\n      }\r\n    ]\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/taxonomies"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"collections\": [\n            {\n                \"id\": 618,\n                \"label\": \"alskdfj\",\n                \"value\": \"alskdfj\",\n                \"count\": 0\n            },\n            {\n                \"id\": 205,\n                \"label\": \"Antique Jewellery\",\n                \"value\": \"antique-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 556,\n                \"label\": \"Beeds Jewellery\",\n                \"value\": \"beeds-jewellery\",\n                \"count\": 1\n            },\n            {\n                \"id\": 649,\n                \"label\": \"Coins\",\n                \"value\": \"coins\",\n                \"count\": 0\n            },\n            {\n                \"id\": 552,\n                \"label\": \"CZ / Swaroski Jewellery\",\n                \"value\": \"cz-swaroski-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 403,\n                \"label\": \"Dazzling Collections\",\n                \"value\": \"dazzling-collections\",\n                \"count\": 0\n            },\n            {\n                \"id\": 12,\n                \"label\": \"Diamond Jewellery\",\n                \"value\": \"diamond-jewellery\",\n                \"count\": 4447\n            },\n            {\n                \"id\": 15,\n                \"label\": \"Gemstone Jewellery\",\n                \"value\": \"gemstone-jewellery\",\n                \"count\": 1\n            },\n            {\n                \"id\": 11,\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold-jewellery\",\n                \"count\": 11\n            },\n            {\n                \"id\": 584,\n                \"label\": \"Gold Pen\",\n                \"value\": \"gold-pen\",\n                \"count\": 0\n            },\n            {\n                \"id\": 554,\n                \"label\": \"Heritage jewellery\",\n                \"value\": \"heritage-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 592,\n                \"label\": \"Imported Collection\",\n                \"value\": \"imported-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 467,\n                \"label\": \"Jewellery\",\n                \"value\": \"jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 381,\n                \"label\": \"Lab Grown Diamonds\",\n                \"value\": \"lab-grown-diamonds\",\n                \"count\": 0\n            },\n            {\n                \"id\": 663,\n                \"label\": \"Lightweight Jewellery\",\n                \"value\": \"lightweight-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 655,\n                \"label\": \"manav\",\n                \"value\": \"manav\",\n                \"count\": 0\n            },\n            {\n                \"id\": 530,\n                \"label\": \"Nakas / Antique Jewellery\",\n                \"value\": \"nakas-antique-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 549,\n                \"label\": \"Pachi Ruby Emerald Jewellery\",\n                \"value\": \"pachi-ruby-emerald-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 623,\n                \"label\": \"Pearl Jewellery\",\n                \"value\": \"pearl-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 213,\n                \"label\": \"platinum-jewellery\",\n                \"value\": \"platinum-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 550,\n                \"label\": \"Polki Jewellery\",\n                \"value\": \"polki-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 406,\n                \"label\": \"Ruby Collections\",\n                \"value\": \"ruby-collections\",\n                \"count\": 0\n            },\n            {\n                \"id\": 524,\n                \"label\": \"Silver\",\n                \"value\": \"silver\",\n                \"count\": 0\n            },\n            {\n                \"id\": 540,\n                \"label\": \"Silver Articles\",\n                \"value\": \"silver-articles\",\n                \"count\": 0\n            },\n            {\n                \"id\": 286,\n                \"label\": \"silver-jewellery\",\n                \"value\": \"silver-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 595,\n                \"label\": \"SiYA Collection\",\n                \"value\": \"siya-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 355,\n                \"label\": \"solitaire\",\n                \"value\": \"solitaire\",\n                \"count\": 0\n            },\n            {\n                \"id\": 391,\n                \"label\": \"T-1\",\n                \"value\": \"t-1\",\n                \"count\": 0\n            },\n            {\n                \"id\": 560,\n                \"label\": \"Ultra Light Weight Jewellery\",\n                \"value\": \"ultra-light-weight-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 678,\n                \"label\": \"Utsav Collection\",\n                \"value\": \"utsav-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 599,\n                \"label\": \"X collection\",\n                \"value\": \"x-collection\",\n                \"count\": 0\n            }\n        ],\n        \"categories\": [\n            {\n                \"id\": 468,\n                \"label\": \"B\",\n                \"value\": \"b\",\n                \"count\": 0\n            },\n            {\n                \"id\": 413,\n                \"label\": \"BABY CHAIN\",\n                \"value\": \"baby-chain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 580,\n                \"label\": \"BANGLE\",\n                \"value\": \"bangle\",\n                \"count\": 4\n            },\n            {\n                \"id\": 596,\n                \"label\": \"Bangles Set\",\n                \"value\": \"bangles-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 608,\n                \"label\": \"Bracelets\",\n                \"value\": \"bracelets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 557,\n                \"label\": \"Chains\",\n                \"value\": \"chains\",\n                \"count\": 1\n            },\n            {\n                \"id\": 469,\n                \"label\": \"D\",\n                \"value\": \"d\",\n                \"count\": 0\n            },\n            {\n                \"id\": 638,\n                \"label\": \"Diamond\",\n                \"value\": \"diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 545,\n                \"label\": \"Earring\",\n                \"value\": \"earring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 583,\n                \"label\": \"Glass Frames\",\n                \"value\": \"glass-frames\",\n                \"count\": 0\n            },\n            {\n                \"id\": 664,\n                \"label\": \"Gold\",\n                \"value\": \"gold\",\n                \"count\": 0\n            },\n            {\n                \"id\": 561,\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 585,\n                \"label\": \"Gold Pens\",\n                \"value\": \"gold-pens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 582,\n                \"label\": \"Idols\",\n                \"value\": \"idols\",\n                \"count\": 0\n            },\n            {\n                \"id\": 668,\n                \"label\": \"Italian\",\n                \"value\": \"italian\",\n                \"count\": 0\n            },\n            {\n                \"id\": 559,\n                \"label\": \"Jada\",\n                \"value\": \"jada\",\n                \"count\": 0\n            },\n            {\n                \"id\": 657,\n                \"label\": \"karina\",\n                \"value\": \"karina\",\n                \"count\": 0\n            },\n            {\n                \"id\": 284,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 0\n            },\n            {\n                \"id\": 531,\n                \"label\": \"Maang Tikka\",\n                \"value\": \"maang-tikka\",\n                \"count\": 0\n            },\n            {\n                \"id\": 577,\n                \"label\": \"Matti\",\n                \"value\": \"matti\",\n                \"count\": 0\n            },\n            {\n                \"id\": 280,\n                \"label\": \"Mens\",\n                \"value\": \"mens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 296,\n                \"label\": \"MIHIKA\",\n                \"value\": \"mihika\",\n                \"count\": 0\n            },\n            {\n                \"id\": 405,\n                \"label\": \"Nathnis\",\n                \"value\": \"nathnis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 604,\n                \"label\": \"Necklace\",\n                \"value\": \"necklace\",\n                \"count\": 0\n            },\n            {\n                \"id\": 679,\n                \"label\": \"Necklace RIng Set\",\n                \"value\": \"necklace-ring-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 551,\n                \"label\": \"Necklace Set\",\n                \"value\": \"necklace-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 609,\n                \"label\": \"Necklace Sets\",\n                \"value\": \"necklace-sets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 659,\n                \"label\": \"Office Dainty\",\n                \"value\": \"office-dainty\",\n                \"count\": 0\n            },\n            {\n                \"id\": 643,\n                \"label\": \"Pearl Pendant Sets\",\n                \"value\": \"pearl-pendant-sets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 600,\n                \"label\": \"Pendant Bangle Set\",\n                \"value\": \"pendant-bangle-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 553,\n                \"label\": \"Pendant set\",\n                \"value\": \"pendant-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 610,\n                \"label\": \"Pendant Sets\",\n                \"value\": \"pendant-sets\",\n                \"count\": 0\n            },\n            {\n                \"id\": 652,\n                \"label\": \"Ring\",\n                \"value\": \"ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 535,\n                \"label\": \"Rings\",\n                \"value\": \"rings\",\n                \"count\": 1\n            },\n            {\n                \"id\": 624,\n                \"label\": \"Sets &amp; Necklaces\",\n                \"value\": \"sets-necklaces\",\n                \"count\": 0\n            },\n            {\n                \"id\": 543,\n                \"label\": \"Silver Articles\",\n                \"value\": \"silver-articles\",\n                \"count\": 0\n            },\n            {\n                \"id\": 650,\n                \"label\": \"Silver Coin\",\n                \"value\": \"silver-coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 525,\n                \"label\": \"SL\",\n                \"value\": \"sl\",\n                \"count\": 0\n            },\n            {\n                \"id\": 470,\n                \"label\": \"STONE\",\n                \"value\": \"stone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 671,\n                \"label\": \"Temple\",\n                \"value\": \"temple\",\n                \"count\": 0\n            },\n            {\n                \"id\": 673,\n                \"label\": \"Turkey\",\n                \"value\": \"turkey\",\n                \"count\": 0\n            },\n            {\n                \"id\": 295,\n                \"label\": \"UMRAO\",\n                \"value\": \"umrao\",\n                \"count\": 0\n            },\n            {\n                \"id\": 262,\n                \"label\": \"Uncategorized\",\n                \"value\": \"uncategorized\",\n                \"count\": 24\n            },\n            {\n                \"id\": 555,\n                \"label\": \"Vaddanam\",\n                \"value\": \"vaddanam\",\n                \"count\": 0\n            },\n            {\n                \"id\": 611,\n                \"label\": \"Victorian\",\n                \"value\": \"victorian\",\n                \"count\": 0\n            },\n            {\n                \"id\": 574,\n                \"label\": \"Watch\",\n                \"value\": \"watch\",\n                \"count\": 0\n            },\n            {\n                \"id\": 257,\n                \"label\": \"wedding-ring\",\n                \"value\": \"wedding-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 283,\n                \"label\": \"Womens\",\n                \"value\": \"womens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 359,\n                \"label\": \"Anniversary\",\n                \"value\": \"anniversary\",\n                \"count\": 0\n            },\n            {\n                \"id\": 230,\n                \"label\": \"Bangles\",\n                \"value\": \"bangles\",\n                \"count\": 79\n            },\n            {\n                \"id\": 558,\n                \"label\": \"Bhajubandh New Arrivals\",\n                \"value\": \"bhajubandh-new\",\n                \"count\": 0\n            },\n            {\n                \"id\": 350,\n                \"label\": \"Birthday\",\n                \"value\": \"birthday\",\n                \"count\": 0\n            },\n            {\n                \"id\": 299,\n                \"label\": \"Chain\",\n                \"value\": \"chain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 207,\n                \"label\": \"Demo\",\n                \"value\": \"demo\",\n                \"count\": 0\n            },\n            {\n                \"id\": 288,\n                \"label\": \"dsadsdasdsa\",\n                \"value\": \"dsadsdasdsa\",\n                \"count\": 0\n            },\n            {\n                \"id\": 390,\n                \"label\": \"Haram\",\n                \"value\": \"haram\",\n                \"count\": 0\n            },\n            {\n                \"id\": 434,\n                \"label\": \"Mangalsutra\",\n                \"value\": \"mangalsutra\",\n                \"count\": 3\n            },\n            {\n                \"id\": 356,\n                \"label\": \"Marriage\",\n                \"value\": \"marriage\",\n                \"count\": 0\n            },\n            {\n                \"id\": 2,\n                \"label\": \"Earrings\",\n                \"value\": \"earrings\",\n                \"count\": 1148\n            },\n            {\n                \"id\": 8,\n                \"label\": \"Bracelet\",\n                \"value\": \"bracelet\",\n                \"count\": 0\n            },\n            {\n                \"id\": 9,\n                \"label\": \"Ladies Ring\",\n                \"value\": \"ladies-ring\",\n                \"count\": 996\n            },\n            {\n                \"id\": 10,\n                \"label\": \"Gents Ring\",\n                \"value\": \"gents-ring\",\n                \"count\": 408\n            },\n            {\n                \"id\": 100,\n                \"label\": \"Nose Pins\",\n                \"value\": \"nose-pins\",\n                \"count\": 90\n            },\n            {\n                \"id\": 5,\n                \"label\": \"Necklaces\",\n                \"value\": \"necklaces\",\n                \"count\": 25\n            },\n            {\n                \"id\": 98,\n                \"label\": \"Pendants\",\n                \"value\": \"pendants\",\n                \"count\": 1063\n            }\n        ],\n        \"sub-categories\": [\n            {\n                \"id\": 277,\n                \"label\": \"\",\n                \"value\": \"277\",\n                \"count\": 0\n            },\n            {\n                \"id\": 665,\n                \"label\": \"Acessories\",\n                \"value\": \"acessories\",\n                \"count\": 0\n            },\n            {\n                \"id\": 282,\n                \"label\": \"anniversary\",\n                \"value\": \"anniversary\",\n                \"count\": 0\n            },\n            {\n                \"id\": 412,\n                \"label\": \"BABY CHAIN\",\n                \"value\": \"baby-chain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 439,\n                \"label\": \"Bali\",\n                \"value\": \"bali\",\n                \"count\": 0\n            },\n            {\n                \"id\": 285,\n                \"label\": \"Birthday\",\n                \"value\": \"birthday\",\n                \"count\": 0\n            },\n            {\n                \"id\": 404,\n                \"label\": \"Bombay Collections\",\n                \"value\": \"bombay-collections\",\n                \"count\": 0\n            },\n            {\n                \"id\": 669,\n                \"label\": \"Bracelet\",\n                \"value\": \"bracelet\",\n                \"count\": 0\n            },\n            {\n                \"id\": 409,\n                \"label\": \"CHAIN\",\n                \"value\": \"chain\",\n                \"count\": 1\n            },\n            {\n                \"id\": 247,\n                \"label\": \"Closed Setting\",\n                \"value\": \"closed-setting\",\n                \"count\": 0\n            },\n            {\n                \"id\": 245,\n                \"label\": \"CNC Machine Collection\",\n                \"value\": \"cnc-machine-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 276,\n                \"label\": \"DIAMOND NOSE PIN\",\n                \"value\": \"diamond-nose-pin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 639,\n                \"label\": \"Earring\",\n                \"value\": \"earring\",\n                \"count\": 2\n            },\n            {\n                \"id\": 617,\n                \"label\": \"Earring collection\",\n                \"value\": \"earring-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 440,\n                \"label\": \"Fulkari\",\n                \"value\": \"fulkari\",\n                \"count\": 0\n            },\n            {\n                \"id\": 360,\n                \"label\": \"Gold Jewellery\",\n                \"value\": \"gold-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 255,\n                \"label\": \"Group Ahmedabad\",\n                \"value\": \"group-ahmedabad\",\n                \"count\": 0\n            },\n            {\n                \"id\": 236,\n                \"label\": \"Group Kolkata\",\n                \"value\": \"group-kolkata\",\n                \"count\": 0\n            },\n            {\n                \"id\": 234,\n                \"label\": \"Group Mumbai\",\n                \"value\": \"group-mumbai\",\n                \"count\": 0\n            },\n            {\n                \"id\": 292,\n                \"label\": \"Handmade Bangles\",\n                \"value\": \"handmade-bangles\",\n                \"count\": 0\n            },\n            {\n                \"id\": 546,\n                \"label\": \"Imported\",\n                \"value\": \"imported\",\n                \"count\": 0\n            },\n            {\n                \"id\": 357,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 0\n            },\n            {\n                \"id\": 291,\n                \"label\": \"Machine Bangle\",\n                \"value\": \"machine-bangle\",\n                \"count\": 0\n            },\n            {\n                \"id\": 459,\n                \"label\": \"Mangalsutra pendant\",\n                \"value\": \"mangalsutra-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 287,\n                \"label\": \"Marriage\",\n                \"value\": \"marriage\",\n                \"count\": 0\n            },\n            {\n                \"id\": 348,\n                \"label\": \"Men\",\n                \"value\": \"men\",\n                \"count\": 0\n            },\n            {\n                \"id\": 475,\n                \"label\": \"New Arrival Rings\",\n                \"value\": \"new-arrival-rings\",\n                \"count\": 1\n            },\n            {\n                \"id\": 419,\n                \"label\": \"new Category\",\n                \"value\": \"new-category\",\n                \"count\": 0\n            },\n            {\n                \"id\": 625,\n                \"label\": \"Pearl Sets &amp; Necklaces\",\n                \"value\": \"pearl-sets-necklaces\",\n                \"count\": 0\n            },\n            {\n                \"id\": 644,\n                \"label\": \"Pendant Set\",\n                \"value\": \"pendant-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 460,\n                \"label\": \"Religious Pendant\",\n                \"value\": \"religious-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 653,\n                \"label\": \"Ring\",\n                \"value\": \"ring\",\n                \"count\": 1\n            },\n            {\n                \"id\": 536,\n                \"label\": \"Rings-Imported\",\n                \"value\": \"rings-imported\",\n                \"count\": 0\n            },\n            {\n                \"id\": 294,\n                \"label\": \"Studded Pen\",\n                \"value\": \"studded-pen\",\n                \"count\": 0\n            },\n            {\n                \"id\": 465,\n                \"label\": \"SwarnaSri\",\n                \"value\": \"swarnasri\",\n                \"count\": 0\n            },\n            {\n                \"id\": 389,\n                \"label\": \"TAG1\",\n                \"value\": \"tag1\",\n                \"count\": 0\n            },\n            {\n                \"id\": 384,\n                \"label\": \"thread\",\n                \"value\": \"thread\",\n                \"count\": 0\n            },\n            {\n                \"id\": 576,\n                \"label\": \"Tiger Nail\",\n                \"value\": \"tiger-nail\",\n                \"count\": 0\n            },\n            {\n                \"id\": 471,\n                \"label\": \"tribal Necklace\",\n                \"value\": \"tribal-necklace\",\n                \"count\": 0\n            },\n            {\n                \"id\": 281,\n                \"label\": \"Wedding\",\n                \"value\": \"wedding\",\n                \"count\": 0\n            },\n            {\n                \"id\": 351,\n                \"label\": \"Women\",\n                \"value\": \"women\",\n                \"count\": 0\n            }\n        ],\n        \"tags\": [\n            {\n                \"id\": 140,\n                \"label\": \"1 GRAM GOLD COIN\",\n                \"value\": \"1-gram-gold-coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 141,\n                \"label\": \"2 GRAM GOLD COIN\",\n                \"value\": \"2-gram-gold-coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 85,\n                \"label\": \"3 Diamonds\",\n                \"value\": \"3-diamonds\",\n                \"count\": 53\n            },\n            {\n                \"id\": 46,\n                \"label\": \"4 Diamond\",\n                \"value\": \"4-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 420,\n                \"label\": \"4 Diamonds\",\n                \"value\": \"4-diamonds-2\",\n                \"count\": 48\n            },\n            {\n                \"id\": 110,\n                \"label\": \"4-diamonds\",\n                \"value\": \"4-diamonds\",\n                \"count\": 19\n            },\n            {\n                \"id\": 43,\n                \"label\": \"7 Diamond\",\n                \"value\": \"7-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 433,\n                \"label\": \"7 Diamonds\",\n                \"value\": \"7-diamonds-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 96,\n                \"label\": \"7-diamonds\",\n                \"value\": \"7-diamonds\",\n                \"count\": 28\n            },\n            {\n                \"id\": 304,\n                \"label\": \"7-diamonds, Couple Band\",\n                \"value\": \"7-diamonds-couple-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 303,\n                \"label\": \"7-diamonds, Couple Band, Designer\",\n                \"value\": \"7-diamonds-couple-band-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 326,\n                \"label\": \"7-diamonds, Couple Band, Heart\",\n                \"value\": \"7-diamonds-couple-band-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 83,\n                \"label\": \"9 Diamonds\",\n                \"value\": \"9-diamonds\",\n                \"count\": 57\n            },\n            {\n                \"id\": 320,\n                \"label\": \"9 Diamonds, Designer\",\n                \"value\": \"9-diamonds-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 539,\n                \"label\": \"ABC SUPPLIER\",\n                \"value\": \"abc-supplier\",\n                \"count\": 0\n            },\n            {\n                \"id\": 428,\n                \"label\": \"Alphabets\",\n                \"value\": \"alphabets\",\n                \"count\": 104\n            },\n            {\n                \"id\": 616,\n                \"label\": \"amanda collecyion\",\n                \"value\": \"amanda-collecyion\",\n                \"count\": 0\n            },\n            {\n                \"id\": 444,\n                \"label\": \"antique\",\n                \"value\": \"antique\",\n                \"count\": 0\n            },\n            {\n                \"id\": 95,\n                \"label\": \"bali\",\n                \"value\": \"bali\",\n                \"count\": 154\n            },\n            {\n                \"id\": 325,\n                \"label\": \"bali, Tops\",\n                \"value\": \"bali-tops\",\n                \"count\": 0\n            },\n            {\n                \"id\": 25,\n                \"label\": \"Band\",\n                \"value\": \"band\",\n                \"count\": 106\n            },\n            {\n                \"id\": 334,\n                \"label\": \"Band, Bridal, Broad Ring\",\n                \"value\": \"band-bridal-broad-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 302,\n                \"label\": \"Band, Couple Band\",\n                \"value\": \"band-couple-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 329,\n                \"label\": \"Band, Couple Band, Designer\",\n                \"value\": \"band-couple-band-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 333,\n                \"label\": \"Band, Couple Band, Heart\",\n                \"value\": \"band-couple-band-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 319,\n                \"label\": \"Band, Designer\",\n                \"value\": \"band-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 81,\n                \"label\": \"Bands\",\n                \"value\": \"bands\",\n                \"count\": 141\n            },\n            {\n                \"id\": 464,\n                \"label\": \"beautiful ring\",\n                \"value\": \"beautiful-ring\",\n                \"count\": 1\n            },\n            {\n                \"id\": 450,\n                \"label\": \"Best\",\n                \"value\": \"best\",\n                \"count\": 7\n            },\n            {\n                \"id\": 162,\n                \"label\": \"Bridal\",\n                \"value\": \"bridal\",\n                \"count\": 2\n            },\n            {\n                \"id\": 318,\n                \"label\": \"Bridal, Broad\",\n                \"value\": \"bridal-broad\",\n                \"count\": 0\n            },\n            {\n                \"id\": 321,\n                \"label\": \"Bridal, Chandeliers\",\n                \"value\": \"bridal-chandeliers\",\n                \"count\": 0\n            },\n            {\n                \"id\": 335,\n                \"label\": \"Bridal, Heart\",\n                \"value\": \"bridal-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 332,\n                \"label\": \"Bridal, Jhumki\",\n                \"value\": \"bridal-jhumki\",\n                \"count\": 0\n            },\n            {\n                \"id\": 70,\n                \"label\": \"Broad\",\n                \"value\": \"broad\",\n                \"count\": 23\n            },\n            {\n                \"id\": 47,\n                \"label\": \"Broad Ring\",\n                \"value\": \"broad-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 323,\n                \"label\": \"Broad, Cluster, Tennis\",\n                \"value\": \"broad-cluster-tennis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 451,\n                \"label\": \"Casual\",\n                \"value\": \"casual\",\n                \"count\": 7\n            },\n            {\n                \"id\": 163,\n                \"label\": \"Chandeliers\",\n                \"value\": \"chandeliers\",\n                \"count\": 0\n            },\n            {\n                \"id\": 322,\n                \"label\": \"Chandeliers, Nakshatra\",\n                \"value\": \"chandeliers-nakshatra\",\n                \"count\": 0\n            },\n            {\n                \"id\": 157,\n                \"label\": \"Chocker\",\n                \"value\": \"chocker\",\n                \"count\": 0\n            },\n            {\n                \"id\": 316,\n                \"label\": \"Chocker, Designer\",\n                \"value\": \"chocker-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 628,\n                \"label\": \"Choker\",\n                \"value\": \"choker\",\n                \"count\": 0\n            },\n            {\n                \"id\": 627,\n                \"label\": \"Choker with Pendant\",\n                \"value\": \"choker-with-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 161,\n                \"label\": \"Close Set\",\n                \"value\": \"close-set\",\n                \"count\": 0\n            },\n            {\n                \"id\": 430,\n                \"label\": \"Close Setting\",\n                \"value\": \"close-setting-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 93,\n                \"label\": \"close-setting\",\n                \"value\": \"close-setting\",\n                \"count\": 25\n            },\n            {\n                \"id\": 209,\n                \"label\": \"Cluster\",\n                \"value\": \"cluster\",\n                \"count\": 2\n            },\n            {\n                \"id\": 312,\n                \"label\": \"Cluster, Designer\",\n                \"value\": \"cluster-designer\",\n                \"count\": 0\n            },\n            {\n                \"id\": 446,\n                \"label\": \"Coin\",\n                \"value\": \"coin\",\n                \"count\": 0\n            },\n            {\n                \"id\": 74,\n                \"label\": \"Color Stone\",\n                \"value\": \"color-stone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 117,\n                \"label\": \"colorcstone\",\n                \"value\": \"colorcstone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 423,\n                \"label\": \"Colour Stone\",\n                \"value\": \"colour-stone-2\",\n                \"count\": 65\n            },\n            {\n                \"id\": 143,\n                \"label\": \"colour-stone\",\n                \"value\": \"colour-stone\",\n                \"count\": 126\n            },\n            {\n                \"id\": 626,\n                \"label\": \"Combination\",\n                \"value\": \"combination\",\n                \"count\": 0\n            },\n            {\n                \"id\": 232,\n                \"label\": \"Composites\",\n                \"value\": \"composites\",\n                \"count\": 0\n            },\n            {\n                \"id\": 156,\n                \"label\": \"Couple Band\",\n                \"value\": \"couple-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 300,\n                \"label\": \"Couple Band, Heart\",\n                \"value\": \"couple-band-heart\",\n                \"count\": 0\n            },\n            {\n                \"id\": 593,\n                \"label\": \"Couple Bands\",\n                \"value\": \"couple-bands\",\n                \"count\": 0\n            },\n            {\n                \"id\": 259,\n                \"label\": \"Couple Rings\",\n                \"value\": \"couple-rings\",\n                \"count\": 0\n            },\n            {\n                \"id\": 417,\n                \"label\": \"cus\",\n                \"value\": \"cus\",\n                \"count\": 0\n            },\n            {\n                \"id\": 415,\n                \"label\": \"Custom Tag\",\n                \"value\": \"custom-tag\",\n                \"count\": 0\n            },\n            {\n                \"id\": 452,\n                \"label\": \"Daily\",\n                \"value\": \"daily\",\n                \"count\": 4\n            },\n            {\n                \"id\": 297,\n                \"label\": \"Dancing Diamond\",\n                \"value\": \"dancing-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 637,\n                \"label\": \"Design Your Necklace\",\n                \"value\": \"design-your-necklace\",\n                \"count\": 0\n            },\n            {\n                \"id\": 75,\n                \"label\": \"Designer\",\n                \"value\": \"designer\",\n                \"count\": 634\n            },\n            {\n                \"id\": 462,\n                \"label\": \"designer ring\",\n                \"value\": \"designer-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 313,\n                \"label\": \"Designer, Eternity\",\n                \"value\": \"designer-eternity\",\n                \"count\": 0\n            },\n            {\n                \"id\": 315,\n                \"label\": \"Designer, Floret, Nakshatra\",\n                \"value\": \"designer-floret-nakshatra\",\n                \"count\": 0\n            },\n            {\n                \"id\": 314,\n                \"label\": \"Designer, Hanging\",\n                \"value\": \"designer-hanging\",\n                \"count\": 0\n            },\n            {\n                \"id\": 414,\n                \"label\": \"diwali\",\n                \"value\": \"diwali\",\n                \"count\": 0\n            },\n            {\n                \"id\": 472,\n                \"label\": \"Diwali Collection\",\n                \"value\": \"diwali-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 426,\n                \"label\": \"Enamel\",\n                \"value\": \"enamel\",\n                \"count\": 27\n            },\n            {\n                \"id\": 606,\n                \"label\": \"Engagement\",\n                \"value\": \"engagement\",\n                \"count\": 0\n            },\n            {\n                \"id\": 601,\n                \"label\": \"Engagment Collection\",\n                \"value\": \"engagment-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 235,\n                \"label\": \"Eternity\",\n                \"value\": \"eternity\",\n                \"count\": 0\n            },\n            {\n                \"id\": 298,\n                \"label\": \"Evil Eye\",\n                \"value\": \"evil-eye\",\n                \"count\": 0\n            },\n            {\n                \"id\": 422,\n                \"label\": \"Fancy Diamonds\",\n                \"value\": \"fancy-diamonds-2\",\n                \"count\": 3\n            },\n            {\n                \"id\": 92,\n                \"label\": \"fancy-diamond\",\n                \"value\": \"fancy-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 89,\n                \"label\": \"fancy-diamonds\",\n                \"value\": \"fancy-diamonds\",\n                \"count\": 3\n            },\n            {\n                \"id\": 676,\n                \"label\": \"Fashion Jewellery\",\n                \"value\": \"fashion-jewellery\",\n                \"count\": 0\n            },\n            {\n                \"id\": 416,\n                \"label\": \"festive collection\",\n                \"value\": \"festive-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 223,\n                \"label\": \"Floral\",\n                \"value\": \"floral\",\n                \"count\": 0\n            },\n            {\n                \"id\": 73,\n                \"label\": \"Floret\",\n                \"value\": \"floret\",\n                \"count\": 554\n            },\n            {\n                \"id\": 40,\n                \"label\": \"Flower\",\n                \"value\": \"flower\",\n                \"count\": 0\n            },\n            {\n                \"id\": 260,\n                \"label\": \"Fusion Rings Gold and Platinum\",\n                \"value\": \"fusion-rings-gold-and-platinum\",\n                \"count\": 0\n            },\n            {\n                \"id\": 636,\n                \"label\": \"Gemstone\",\n                \"value\": \"gemstone\",\n                \"count\": 0\n            },\n            {\n                \"id\": 18,\n                \"label\": \"Gemstone Earring\",\n                \"value\": \"gemstone-earring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 168,\n                \"label\": \"gents\",\n                \"value\": \"gents\",\n                \"count\": 5\n            },\n            {\n                \"id\": 48,\n                \"label\": \"Gents Ring\",\n                \"value\": \"gents-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 528,\n                \"label\": \"GIFTCARD\",\n                \"value\": \"giftcard\",\n                \"count\": 0\n            },\n            {\n                \"id\": 80,\n                \"label\": \"God\",\n                \"value\": \"god\",\n                \"count\": 0\n            },\n            {\n                \"id\": 139,\n                \"label\": \"GOLD COINS\",\n                \"value\": \"gold-coins\",\n                \"count\": 0\n            },\n            {\n                \"id\": 634,\n                \"label\": \"Graduated\",\n                \"value\": \"graduated\",\n                \"count\": 0\n            },\n            {\n                \"id\": 457,\n                \"label\": \"Half Pavan\",\n                \"value\": \"half-pavan\",\n                \"count\": 0\n            },\n            {\n                \"id\": 458,\n                \"label\": \"Half Sovereign\",\n                \"value\": \"half-sovereign\",\n                \"count\": 0\n            },\n            {\n                \"id\": 221,\n                \"label\": \"Handmade\",\n                \"value\": \"handmade\",\n                \"count\": 0\n            },\n            {\n                \"id\": 76,\n                \"label\": \"Hanging\",\n                \"value\": \"hanging\",\n                \"count\": 76\n            },\n            {\n                \"id\": 278,\n                \"label\": \"Haram\",\n                \"value\": \"haram\",\n                \"count\": 0\n            },\n            {\n                \"id\": 77,\n                \"label\": \"Heart\",\n                \"value\": \"heart\",\n                \"count\": 194\n            },\n            {\n                \"id\": 591,\n                \"label\": \"himashu\",\n                \"value\": \"himashu\",\n                \"count\": 0\n            },\n            {\n                \"id\": 438,\n                \"label\": \"jali\",\n                \"value\": \"jali\",\n                \"count\": 0\n            },\n            {\n                \"id\": 159,\n                \"label\": \"Jhumki\",\n                \"value\": \"jhumki\",\n                \"count\": 2\n            },\n            {\n                \"id\": 79,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 25\n            },\n            {\n                \"id\": 45,\n                \"label\": \"Kite\",\n                \"value\": \"kite\",\n                \"count\": 0\n            },\n            {\n                \"id\": 454,\n                \"label\": \"Lakshmi\",\n                \"value\": \"lakshmi\",\n                \"count\": 0\n            },\n            {\n                \"id\": 677,\n                \"label\": \"Latest Jewellery Designs\",\n                \"value\": \"latest-jewellery-designs\",\n                \"count\": 0\n            },\n            {\n                \"id\": 72,\n                \"label\": \"Line\",\n                \"value\": \"line\",\n                \"count\": 0\n            },\n            {\n                \"id\": 166,\n                \"label\": \"Long\",\n                \"value\": \"long\",\n                \"count\": 0\n            },\n            {\n                \"id\": 425,\n                \"label\": \"Long Earring\",\n                \"value\": \"long-earring-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 94,\n                \"label\": \"long-earring\",\n                \"value\": \"long-earring\",\n                \"count\": 26\n            },\n            {\n                \"id\": 225,\n                \"label\": \"Loose\",\n                \"value\": \"loose\",\n                \"count\": 0\n            },\n            {\n                \"id\": 437,\n                \"label\": \"Loose Bracelet\",\n                \"value\": \"loose-bracelet-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 167,\n                \"label\": \"loose-bracelet\",\n                \"value\": \"loose-bracelet\",\n                \"count\": 5\n            },\n            {\n                \"id\": 331,\n                \"label\": \"Loose, Tennis\",\n                \"value\": \"loose-tennis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 441,\n                \"label\": \"Makar Sankrant\",\n                \"value\": \"makar-sankrant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 407,\n                \"label\": \"Manav\",\n                \"value\": \"manav\",\n                \"count\": 0\n            },\n            {\n                \"id\": 473,\n                \"label\": \"Meenakari Collection\",\n                \"value\": \"meenakari-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 442,\n                \"label\": \"mens\",\n                \"value\": \"mens\",\n                \"count\": 0\n            },\n            {\n                \"id\": 82,\n                \"label\": \"Multi Line\",\n                \"value\": \"multi-line\",\n                \"count\": 106\n            },\n            {\n                \"id\": 49,\n                \"label\": \"Multiline\",\n                \"value\": \"multiline\",\n                \"count\": 0\n            },\n            {\n                \"id\": 28,\n                \"label\": \"Multiline Ring\",\n                \"value\": \"multiline-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 171,\n                \"label\": \"Nakshatra\",\n                \"value\": \"nakshatra\",\n                \"count\": 0\n            },\n            {\n                \"id\": 119,\n                \"label\": \"navgruha\",\n                \"value\": \"navgruha\",\n                \"count\": 1\n            },\n            {\n                \"id\": 645,\n                \"label\": \"New Arrival\",\n                \"value\": \"new-arrival\",\n                \"count\": 0\n            },\n            {\n                \"id\": 408,\n                \"label\": \"offers\",\n                \"value\": \"offers\",\n                \"count\": 0\n            },\n            {\n                \"id\": 660,\n                \"label\": \"Officewear\",\n                \"value\": \"officewear\",\n                \"count\": 0\n            },\n            {\n                \"id\": 99,\n                \"label\": \"others\",\n                \"value\": \"others\",\n                \"count\": 14\n            },\n            {\n                \"id\": 19,\n                \"label\": \"Oval\",\n                \"value\": \"oval\",\n                \"count\": 0\n            },\n            {\n                \"id\": 463,\n                \"label\": \"Party ring\",\n                \"value\": \"party-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 447,\n                \"label\": \"Pavan\",\n                \"value\": \"pavan\",\n                \"count\": 0\n            },\n            {\n                \"id\": 443,\n                \"label\": \"peacock\",\n                \"value\": \"peacock\",\n                \"count\": 0\n            },\n            {\n                \"id\": 445,\n                \"label\": \"Pearl\",\n                \"value\": \"pearl\",\n                \"count\": 1\n            },\n            {\n                \"id\": 629,\n                \"label\": \"Plain\",\n                \"value\": \"plain\",\n                \"count\": 0\n            },\n            {\n                \"id\": 261,\n                \"label\": \"Platinum and Gold Wedding Band\",\n                \"value\": \"platinum-and-gold-wedding-band\",\n                \"count\": 0\n            },\n            {\n                \"id\": 448,\n                \"label\": \"Queen\",\n                \"value\": \"queen\",\n                \"count\": 0\n            },\n            {\n                \"id\": 537,\n                \"label\": \"Rakhi Product\",\n                \"value\": \"rakhi-product\",\n                \"count\": 0\n            },\n            {\n                \"id\": 631,\n                \"label\": \"Rani Haar\",\n                \"value\": \"rani-haar\",\n                \"count\": 0\n            },\n            {\n                \"id\": 654,\n                \"label\": \"Ring\",\n                \"value\": \"ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 41,\n                \"label\": \"Round\",\n                \"value\": \"round\",\n                \"count\": 0\n            },\n            {\n                \"id\": 208,\n                \"label\": \"Screw\",\n                \"value\": \"screw\",\n                \"count\": 0\n            },\n            {\n                \"id\": 630,\n                \"label\": \"Set with Pendant\",\n                \"value\": \"set-with-pendant\",\n                \"count\": 0\n            },\n            {\n                \"id\": 633,\n                \"label\": \"Short\",\n                \"value\": \"short\",\n                \"count\": 0\n            },\n            {\n                \"id\": 635,\n                \"label\": \"Side Broach\",\n                \"value\": \"side-broach\",\n                \"count\": 0\n            },\n            {\n                \"id\": 632,\n                \"label\": \"Simple\",\n                \"value\": \"simple\",\n                \"count\": 0\n            },\n            {\n                \"id\": 424,\n                \"label\": \"Single Diamond\",\n                \"value\": \"single-diamond-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 431,\n                \"label\": \"Single Line\",\n                \"value\": \"single-line-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 427,\n                \"label\": \"Single Stone\",\n                \"value\": \"single-stone\",\n                \"count\": 4\n            },\n            {\n                \"id\": 137,\n                \"label\": \"single-diamond\",\n                \"value\": \"single-diamond\",\n                \"count\": 7\n            },\n            {\n                \"id\": 97,\n                \"label\": \"single-line\",\n                \"value\": \"single-line\",\n                \"count\": 20\n            },\n            {\n                \"id\": 24,\n                \"label\": \"Solitaire\",\n                \"value\": \"solitaire\",\n                \"count\": 22\n            },\n            {\n                \"id\": 421,\n                \"label\": \"Solitaire Diamond\",\n                \"value\": \"solitaire-diamond-2\",\n                \"count\": 21\n            },\n            {\n                \"id\": 50,\n                \"label\": \"Solitaire Ring\",\n                \"value\": \"solitaire-ring\",\n                \"count\": 0\n            },\n            {\n                \"id\": 136,\n                \"label\": \"solitaire-diamond\",\n                \"value\": \"solitaire-diamond\",\n                \"count\": 0\n            },\n            {\n                \"id\": 449,\n                \"label\": \"Sovereign\",\n                \"value\": \"sovereign\",\n                \"count\": 0\n            },\n            {\n                \"id\": 429,\n                \"label\": \"Spiritual\",\n                \"value\": \"spiritual\",\n                \"count\": 50\n            },\n            {\n                \"id\": 84,\n                \"label\": \"Square\",\n                \"value\": \"square\",\n                \"count\": 8\n            },\n            {\n                \"id\": 456,\n                \"label\": \"Stud\",\n                \"value\": \"stud\",\n                \"count\": 0\n            },\n            {\n                \"id\": 142,\n                \"label\": \"stylish\",\n                \"value\": \"stylish\",\n                \"count\": 0\n            },\n            {\n                \"id\": 418,\n                \"label\": \"tags\",\n                \"value\": \"tags\",\n                \"count\": 0\n            },\n            {\n                \"id\": 211,\n                \"label\": \"Tennis\",\n                \"value\": \"tennis\",\n                \"count\": 0\n            },\n            {\n                \"id\": 432,\n                \"label\": \"Thin\",\n                \"value\": \"thin\",\n                \"count\": 5\n            },\n            {\n                \"id\": 78,\n                \"label\": \"Tops\",\n                \"value\": \"tops\",\n                \"count\": 224\n            },\n            {\n                \"id\": 453,\n                \"label\": \"Traditional\",\n                \"value\": \"traditional\",\n                \"count\": 6\n            },\n            {\n                \"id\": 86,\n                \"label\": \"Triangle\",\n                \"value\": \"triangle\",\n                \"count\": 8\n            },\n            {\n                \"id\": 71,\n                \"label\": \"Twist &amp; Turns\",\n                \"value\": \"twist-turns\",\n                \"count\": 780\n            },\n            {\n                \"id\": 435,\n                \"label\": \"U Shape\",\n                \"value\": \"u-shape-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 122,\n                \"label\": \"u-shape\",\n                \"value\": \"u-shape\",\n                \"count\": 0\n            },\n            {\n                \"id\": 87,\n                \"label\": \"Under 1 Ct\",\n                \"value\": \"under-1-ct\",\n                \"count\": 2\n            },\n            {\n                \"id\": 436,\n                \"label\": \"V Shape\",\n                \"value\": \"v-shape-2\",\n                \"count\": 0\n            },\n            {\n                \"id\": 121,\n                \"label\": \"v-shape\",\n                \"value\": \"v-shape\",\n                \"count\": 0\n            },\n            {\n                \"id\": 88,\n                \"label\": \"Valentine\",\n                \"value\": \"valentine\",\n                \"count\": 0\n            },\n            {\n                \"id\": 385,\n                \"label\": \"Valentine Collection\",\n                \"value\": \"valentine-collection\",\n                \"count\": 0\n            },\n            {\n                \"id\": 605,\n                \"label\": \"Wedding\",\n                \"value\": \"wedding\",\n                \"count\": 0\n            },\n            {\n                \"id\": 455,\n                \"label\": \"Workwear\",\n                \"value\": \"workwear\",\n                \"count\": 0\n            }\n        ],\n        \"diamond_wt\": [\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            },\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            }\n        ],\n        \"gold_wt\": [\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            },\n            {\n                \"id\": null,\n                \"label\": null,\n                \"value\": null,\n                \"count\": null\n            }\n        ],\n        \"gender\": [\n            {\n                \"id\": 478,\n                \"label\": \"Female\",\n                \"value\": \"female\",\n                \"count\": 5\n            },\n            {\n                \"id\": 479,\n                \"label\": \"Kids\",\n                \"value\": \"kids\",\n                \"count\": 0\n            },\n            {\n                \"id\": 477,\n                \"label\": \"Male\",\n                \"value\": \"male\",\n                \"count\": 0\n            },\n            {\n                \"id\": 480,\n                \"label\": \"Unisex\",\n                \"value\": \"unisex\",\n                \"count\": 3\n            }\n        ],\n        \"ocassions\": [\n            {\n                \"id\": 675,\n                \"label\": \"All Ocassions\",\n                \"value\": \"all-ocassions\",\n                \"count\": 0\n            },\n            {\n                \"id\": 642,\n                \"label\": \"Anniversary\",\n                \"value\": \"anniversary\",\n                \"count\": 2\n            },\n            {\n                \"id\": 641,\n                \"label\": \"Birthday\",\n                \"value\": \"birthday\",\n                \"count\": 2\n            }\n        ]\n    }\n}"}],"_postman_id":"77d91247-0688-4cdf-b6f4-80103a5db9c8"},{"name":"Get Diamond Groups","id":"0576a92d-1627-49bf-a42b-9ea5490d4645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/diamond_groups","description":"<p>Diamond groups are created for use in diamond combinations. Each group includes a range of carat weights and a specific shape, with prices that remain fairly consistent within that range. These groups will serve as the master reference in diamond combinations.</p>\n","urlObject":{"protocol":"https","path":["v1","masters","diamond_groups"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"cc98c13e-2926-40b7-930e-193126208747","name":"Get Diamond groups","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/business_settings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": \"1671627657_LhurM\",\n            \"fromObj\": {\n                \"wt\": \"0.001\",\n                \"size\": \"0.6\",\n                \"sieve\": \"+00000-0000\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.002\",\n                \"size\": \"0.7\",\n                \"sieve\": \"+00000-0000\"\n            },\n            \"title\": \"Round\",\n            \"shape\": \"round\",\n            \"from\": \"0.001\",\n            \"to\": \"0.002\"\n        },\n        {\n            \"id\": \"1671627672_0ytnJ\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.05\",\n                \"size\": \"2.00\"\n            },\n            \"title\": \"Princess\",\n            \"shape\": \"princess\",\n            \"from\": \"0.01\",\n            \"to\": \"0.05\"\n        },\n        {\n            \"id\": \"1671627691_SXhR2\",\n            \"fromObj\": {\n                \"wt\": \"0.02\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\"\n            },\n            \"title\": \"Marquise\",\n            \"shape\": \"marquise\",\n            \"from\": \"0.02\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1671627705_C8cbl\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\"\n            },\n            \"title\": \"Pear\",\n            \"shape\": \"pear\",\n            \"from\": \"0.01\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1671627718_50lvN\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\"\n            },\n            \"title\": \"Oval\",\n            \"shape\": \"oval\",\n            \"from\": \"0.01\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1673361401_O4Zmw\",\n            \"fromObj\": {\n                \"wt\": \"0.005\",\n                \"size\": \"0.9\",\n                \"sieve\": \"+00-0\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.008\",\n                \"size\": \"1.20\",\n                \"sieve\": \"+1.5-2\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"0.005 - 0.008\",\n            \"from\": \"0.005\",\n            \"to\": \"0.008\"\n        },\n        {\n            \"id\": \"1673432642_lhWlS\",\n            \"fromObj\": {\n                \"wt\": \"0.008\",\n                \"size\": \"1.20\",\n                \"sieve\": \"+1.5-2\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.009\",\n                \"size\": \"1.25\",\n                \"sieve\": \"+2-2.5\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"test\",\n            \"from\": \"0.008\",\n            \"to\": \"0.009\"\n        },\n        {\n            \"id\": \"1673820396_gbZNE\",\n            \"fromObj\": {\n                \"wt\": \"0.009\",\n                \"size\": \"1.25\",\n                \"sieve\": \"+2-2.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.01\",\n                \"size\": \"1.30\",\n                \"sieve\": \"+2.5-3\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"test\",\n            \"from\": \"0.009\",\n            \"to\": \"0.01\"\n        },\n        {\n            \"id\": \"1673942247_AScpo\",\n            \"fromObj\": {\n                \"wt\": \"0.011\",\n                \"size\": \"1.35\",\n                \"sieve\": \"+3-3.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.05\",\n                \"size\": \"2.30\",\n                \"sieve\": \"+9-9.5\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"0.0046\",\n            \"from\": \"0.011\",\n            \"to\": \"0.05\"\n        },\n        {\n            \"id\": \"1673954777_dXHWT\",\n            \"fromObj\": {\n                \"wt\": \"0.01\",\n                \"size\": \"1.30\",\n                \"sieve\": \"+2.5-3\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.05\",\n                \"size\": \"2.30\",\n                \"sieve\": \"+9-9.5\"\n            },\n            \"title\": \"0.1 to 0.10\",\n            \"shape\": \"round\",\n            \"from\": \"0.01\",\n            \"to\": \"0.05\"\n        },\n        {\n            \"id\": \"1673968467_oIN1E\",\n            \"fromObj\": {\n                \"wt\": \"0.10\",\n                \"size\": \"3.00\",\n                \"sieve\": \"+12-12.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.15\",\n                \"size\": \"3.30\",\n                \"sieve\": \"+14.5-15\"\n            },\n            \"shape\": \"round\",\n            \"from\": \"0.10\",\n            \"to\": \"0.15\"\n        },\n        {\n            \"id\": \"1673968569_eTe7l\",\n            \"fromObj\": {\n                \"wt\": \"0.15\",\n                \"size\": \"3.30\",\n                \"sieve\": \"+14.5-15\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.16\",\n                \"size\": \"3.30\",\n                \"sieve\": \"+14.5-15\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"0.15 to 0.16 ct\",\n            \"from\": \"0.15\",\n            \"to\": \"0.16\"\n        },\n        {\n            \"id\": \"1674479846_1rmrf\",\n            \"fromObj\": {\n                \"wt\": \"0.60\",\n                \"size\": \"5.40\",\n                \"sieve\": \"\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.70\",\n                \"size\": \"5.70\",\n                \"sieve\": \"\"\n            },\n            \"title\": \"newwww\",\n            \"shape\": \"round\",\n            \"from\": \"0.60\",\n            \"to\": \"0.70\"\n        },\n        {\n            \"id\": \"1675488076_XGihC\",\n            \"fromObj\": {\n                \"wt\": \"0.044\",\n                \"size\": \"2.20\",\n                \"sieve\": \"+8.5-9\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.075\",\n                \"size\": \"2.60\",\n                \"sieve\": \"+10.5-11\"\n            },\n            \"title\": \"0.044- 0.075\",\n            \"shape\": \"round\",\n            \"from\": \"0.044\",\n            \"to\": \"0.075\"\n        },\n        {\n            \"id\": \"1675925312_ngHNf\",\n            \"fromObj\": {\n                \"wt\": \"0.21\",\n                \"size\": \"3.80\",\n                \"sieve\": \"\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.26\",\n                \"size\": \"4.00\",\n                \"sieve\": \"\"\n            },\n            \"title\": \"new\",\n            \"shape\": \"round\",\n            \"from\": \"0.21\",\n            \"to\": \"0.26\"\n        },\n        {\n            \"id\": \"1675926633_0HpGL\",\n            \"fromObj\": {\n                \"wt\": \"0.17\",\n                \"size\": \"3.50\",\n                \"sieve\": \"+15-15.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.26\",\n                \"size\": \"4.00\",\n                \"sieve\": \"\"\n            },\n            \"title\": \"0.17-0.26\",\n            \"shape\": \"round\",\n            \"from\": \"0.17\",\n            \"to\": \"0.26\"\n        },\n        {\n            \"id\": \"1676027666_bFecd\",\n            \"fromObj\": {\n                \"wt\": \"0.002\",\n                \"size\": \"0.7\",\n                \"sieve\": \"+00000-0000\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\",\n                \"size\": \"\"\n            },\n            \"title\": \"Round 1\",\n            \"shape\": \"round\",\n            \"from\": \"0.002\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1676382457_AWncx\",\n            \"fromObj\": {\n                \"wt\": 0.5\n            },\n            \"toObj\": {\n                \"wt\": 0.55\n            },\n            \"title\": \"0.77-0.85\",\n            \"shape\": \"fancy\",\n            \"from\": \"0.5\",\n            \"to\": \"0.55\"\n        },\n        {\n            \"id\": \"1679983938_4Qhny\",\n            \"fromObj\": {\n                \"wt\": \"0.070\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.072\"\n            },\n            \"title\": \"0.07- 0.027\",\n            \"shape\": \"heart\",\n            \"from\": \"0.070\",\n            \"to\": \"0.072\"\n        },\n        {\n            \"id\": \"1695803294_Vt06a\",\n            \"fromObj\": {\n                \"wt\": 1\n            },\n            \"toObj\": {\n                \"wt\": \"8.00\"\n            },\n            \"title\": \"trapezoid 1 - 8\",\n            \"shape\": \"trapezoid\",\n            \"from\": \"1.00\",\n            \"to\": \"8.00\"\n        },\n        {\n            \"id\": \"1695968900_m9Be2\",\n            \"fromObj\": {\n                \"wt\": \"0.1\"\n            },\n            \"toObj\": {\n                \"wt\": 0.9\n            },\n            \"title\": \"123\",\n            \"shape\": \"halfmoon\",\n            \"from\": \"0.1\",\n            \"to\": \"0.9\"\n        },\n        {\n            \"id\": \"1698134765_C1OwO\",\n            \"fromObj\": {\n                \"wt\": \"0.001\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.009\"\n            },\n            \"title\": \"Oval -0.001-0.009\",\n            \"shape\": \"oval\",\n            \"from\": \"0.001\",\n            \"to\": \"0.009\"\n        },\n        {\n            \"id\": \"1706678529_mtElc\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.07\"\n            },\n            \"title\": \"Emerald 0.01 -0.07\",\n            \"shape\": \"emerald\",\n            \"from\": \"0.01\",\n            \"to\": \"0.07\"\n        },\n        {\n            \"id\": \"1712557777_ygeR9\",\n            \"fromObj\": {\n                \"wt\": 0.28\n            },\n            \"toObj\": {\n                \"wt\": 0.29\n            },\n            \"title\": \"Heart 0.28 - 0.29\",\n            \"shape\": \"heart\",\n            \"from\": \"0.28\",\n            \"to\": \"0.29\"\n        },\n        {\n            \"id\": \"1714541625_jk4c1\",\n            \"fromObj\": {\n                \"wt\": \"0.08\",\n                \"size\": \"2.40\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.1\"\n            },\n            \"title\": \"prnc\",\n            \"shape\": \"princess\",\n            \"from\": \"0.08\",\n            \"to\": \"0.1\"\n        }\n    ]\n}"}],"_postman_id":"0576a92d-1627-49bf-a42b-9ea5490d4645"},{"name":"Update Diamond Groups","id":"d957d928-3371-477d-8349-c897cf89e529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": \"1671627657_LhurM\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.001\",\r\n            \"size\": \"0.6\",\r\n            \"sieve\": \"+00000-0000\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.002\",\r\n            \"size\": \"0.7\",\r\n            \"sieve\": \"+00000-0000\"\r\n        },\r\n        \"title\": \"Round\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.001\",\r\n        \"to\": \"0.002\"\r\n    },\r\n    {\r\n        \"id\": \"1671627672_0ytnJ\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.05\",\r\n            \"size\": \"2.00\"\r\n        },\r\n        \"title\": \"Princess\",\r\n        \"shape\": \"princess\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"0.05\"\r\n    },\r\n    {\r\n        \"id\": \"1671627691_SXhR2\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.02\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\"\r\n        },\r\n        \"title\": \"Marquise\",\r\n        \"shape\": \"marquise\",\r\n        \"from\": \"0.02\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1671627705_C8cbl\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\"\r\n        },\r\n        \"title\": \"Pear\",\r\n        \"shape\": \"pear\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1671627718_50lvN\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\"\r\n        },\r\n        \"title\": \"Oval\",\r\n        \"shape\": \"oval\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1673361401_O4Zmw\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.005\",\r\n            \"size\": \"0.9\",\r\n            \"sieve\": \"+00-0\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.008\",\r\n            \"size\": \"1.20\",\r\n            \"sieve\": \"+1.5-2\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"0.005 - 0.008\",\r\n        \"from\": \"0.005\",\r\n        \"to\": \"0.008\"\r\n    },\r\n    {\r\n        \"id\": \"1673432642_lhWlS\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.008\",\r\n            \"size\": \"1.20\",\r\n            \"sieve\": \"+1.5-2\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.009\",\r\n            \"size\": \"1.25\",\r\n            \"sieve\": \"+2-2.5\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"test\",\r\n        \"from\": \"0.008\",\r\n        \"to\": \"0.009\"\r\n    },\r\n    {\r\n        \"id\": \"1673820396_gbZNE\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.009\",\r\n            \"size\": \"1.25\",\r\n            \"sieve\": \"+2-2.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.01\",\r\n            \"size\": \"1.30\",\r\n            \"sieve\": \"+2.5-3\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"test\",\r\n        \"from\": \"0.009\",\r\n        \"to\": \"0.01\"\r\n    },\r\n    {\r\n        \"id\": \"1673942247_AScpo\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.011\",\r\n            \"size\": \"1.35\",\r\n            \"sieve\": \"+3-3.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.05\",\r\n            \"size\": \"2.30\",\r\n            \"sieve\": \"+9-9.5\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"0.0046\",\r\n        \"from\": \"0.011\",\r\n        \"to\": \"0.05\"\r\n    },\r\n    {\r\n        \"id\": \"1673954777_dXHWT\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\",\r\n            \"size\": \"1.30\",\r\n            \"sieve\": \"+2.5-3\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.05\",\r\n            \"size\": \"2.30\",\r\n            \"sieve\": \"+9-9.5\"\r\n        },\r\n        \"title\": \"0.1 to 0.10\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"0.05\"\r\n    },\r\n    {\r\n        \"id\": \"1673968467_oIN1E\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.10\",\r\n            \"size\": \"3.00\",\r\n            \"sieve\": \"+12-12.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.15\",\r\n            \"size\": \"3.30\",\r\n            \"sieve\": \"+14.5-15\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.10\",\r\n        \"to\": \"0.15\"\r\n    },\r\n    {\r\n        \"id\": \"1673968569_eTe7l\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.15\",\r\n            \"size\": \"3.30\",\r\n            \"sieve\": \"+14.5-15\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.16\",\r\n            \"size\": \"3.30\",\r\n            \"sieve\": \"+14.5-15\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"0.15 to 0.16 ct\",\r\n        \"from\": \"0.15\",\r\n        \"to\": \"0.16\"\r\n    },\r\n    {\r\n        \"id\": \"1674479846_1rmrf\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.60\",\r\n            \"size\": \"5.40\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.70\",\r\n            \"size\": \"5.70\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"title\": \"newwww\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.60\",\r\n        \"to\": \"0.70\"\r\n    },\r\n    {\r\n        \"id\": \"1675488076_XGihC\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.044\",\r\n            \"size\": \"2.20\",\r\n            \"sieve\": \"+8.5-9\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.075\",\r\n            \"size\": \"2.60\",\r\n            \"sieve\": \"+10.5-11\"\r\n        },\r\n        \"title\": \"0.044- 0.075\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.044\",\r\n        \"to\": \"0.075\"\r\n    },\r\n    {\r\n        \"id\": \"1675925312_ngHNf\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.21\",\r\n            \"size\": \"3.80\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.26\",\r\n            \"size\": \"4.00\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"title\": \"new\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.21\",\r\n        \"to\": \"0.26\"\r\n    },\r\n    {\r\n        \"id\": \"1675926633_0HpGL\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.17\",\r\n            \"size\": \"3.50\",\r\n            \"sieve\": \"+15-15.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.26\",\r\n            \"size\": \"4.00\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"title\": \"0.17-0.26\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.17\",\r\n        \"to\": \"0.26\"\r\n    },\r\n    {\r\n        \"id\": \"1676027666_bFecd\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.002\",\r\n            \"size\": \"0.7\",\r\n            \"sieve\": \"+00000-0000\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\",\r\n            \"size\": \"\"\r\n        },\r\n        \"title\": \"Round 1\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.002\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1676382457_AWncx\",\r\n        \"fromObj\": {\r\n            \"wt\": 0.5\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": 0.55\r\n        },\r\n        \"title\": \"0.77-0.85\",\r\n        \"shape\": \"fancy\",\r\n        \"from\": \"0.5\",\r\n        \"to\": \"0.55\"\r\n    },\r\n    {\r\n        \"id\": \"1679983938_4Qhny\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.070\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.072\"\r\n        },\r\n        \"title\": \"0.07- 0.027\",\r\n        \"shape\": \"heart\",\r\n        \"from\": \"0.070\",\r\n        \"to\": \"0.072\"\r\n    },\r\n    {\r\n        \"id\": \"1695803294_Vt06a\",\r\n        \"fromObj\": {\r\n            \"wt\": 1\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.00\"\r\n        },\r\n        \"title\": \"trapezoid 1 - 8\",\r\n        \"shape\": \"trapezoid\",\r\n        \"from\": \"1.00\",\r\n        \"to\": \"8.00\"\r\n    },\r\n    {\r\n        \"id\": \"1695968900_m9Be2\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.1\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": 0.9\r\n        },\r\n        \"title\": \"123\",\r\n        \"shape\": \"halfmoon\",\r\n        \"from\": \"0.1\",\r\n        \"to\": \"0.9\"\r\n    },\r\n    {\r\n        \"id\": \"1698134765_C1OwO\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.001\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.009\"\r\n        },\r\n        \"title\": \"Oval -0.001-0.009\",\r\n        \"shape\": \"oval\",\r\n        \"from\": \"0.001\",\r\n        \"to\": \"0.009\"\r\n    },\r\n    {\r\n        \"id\": \"1706678529_mtElc\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.07\"\r\n        },\r\n        \"title\": \"Emerald 0.01 -0.07\",\r\n        \"shape\": \"emerald\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"0.07\"\r\n    },\r\n    {\r\n        \"id\": \"1712557777_ygeR9\",\r\n        \"fromObj\": {\r\n            \"wt\": 0.28\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": 0.29\r\n        },\r\n        \"title\": \"Heart 0.28 - 0.29\",\r\n        \"shape\": \"heart\",\r\n        \"from\": \"0.28\",\r\n        \"to\": \"0.29\"\r\n    },\r\n    {\r\n        \"id\": \"1714541625_jk4c1\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.08\",\r\n            \"size\": \"2.40\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.1\"\r\n        },\r\n        \"title\": \"prnc\",\r\n        \"shape\": \"princess\",\r\n        \"from\": \"0.08\",\r\n        \"to\": \"0.1\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/diamond_groups","description":"<p>Diamond groups are created for use in diamond combinations. Each group includes a range of carat weights and a specific shape, with prices that remain fairly consistent within that range. These groups will serve as the master reference in diamond combinations.</p>\n","urlObject":{"protocol":"https","path":["v1","masters","diamond_groups"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"f0674039-bc21-4651-a05a-f1b828add8de","name":"update Diamond groups","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": \"1671627657_LhurM\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.001\",\r\n            \"size\": \"0.6\",\r\n            \"sieve\": \"+00000-0000\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.002\",\r\n            \"size\": \"0.7\",\r\n            \"sieve\": \"+00000-0000\"\r\n        },\r\n        \"title\": \"Round\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.001\",\r\n        \"to\": \"0.002\"\r\n    },\r\n    {\r\n        \"id\": \"1671627672_0ytnJ\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.05\",\r\n            \"size\": \"2.00\"\r\n        },\r\n        \"title\": \"Princess\",\r\n        \"shape\": \"princess\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"0.05\"\r\n    },\r\n    {\r\n        \"id\": \"1671627691_SXhR2\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.02\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\"\r\n        },\r\n        \"title\": \"Marquise\",\r\n        \"shape\": \"marquise\",\r\n        \"from\": \"0.02\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1671627705_C8cbl\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\"\r\n        },\r\n        \"title\": \"Pear\",\r\n        \"shape\": \"pear\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1671627718_50lvN\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\"\r\n        },\r\n        \"title\": \"Oval\",\r\n        \"shape\": \"oval\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1673361401_O4Zmw\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.005\",\r\n            \"size\": \"0.9\",\r\n            \"sieve\": \"+00-0\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.008\",\r\n            \"size\": \"1.20\",\r\n            \"sieve\": \"+1.5-2\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"0.005 - 0.008\",\r\n        \"from\": \"0.005\",\r\n        \"to\": \"0.008\"\r\n    },\r\n    {\r\n        \"id\": \"1673432642_lhWlS\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.008\",\r\n            \"size\": \"1.20\",\r\n            \"sieve\": \"+1.5-2\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.009\",\r\n            \"size\": \"1.25\",\r\n            \"sieve\": \"+2-2.5\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"test\",\r\n        \"from\": \"0.008\",\r\n        \"to\": \"0.009\"\r\n    },\r\n    {\r\n        \"id\": \"1673820396_gbZNE\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.009\",\r\n            \"size\": \"1.25\",\r\n            \"sieve\": \"+2-2.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.01\",\r\n            \"size\": \"1.30\",\r\n            \"sieve\": \"+2.5-3\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"test\",\r\n        \"from\": \"0.009\",\r\n        \"to\": \"0.01\"\r\n    },\r\n    {\r\n        \"id\": \"1673942247_AScpo\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.011\",\r\n            \"size\": \"1.35\",\r\n            \"sieve\": \"+3-3.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.05\",\r\n            \"size\": \"2.30\",\r\n            \"sieve\": \"+9-9.5\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"0.0046\",\r\n        \"from\": \"0.011\",\r\n        \"to\": \"0.05\"\r\n    },\r\n    {\r\n        \"id\": \"1673954777_dXHWT\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\",\r\n            \"size\": \"1.30\",\r\n            \"sieve\": \"+2.5-3\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.05\",\r\n            \"size\": \"2.30\",\r\n            \"sieve\": \"+9-9.5\"\r\n        },\r\n        \"title\": \"0.1 to 0.10\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"0.05\"\r\n    },\r\n    {\r\n        \"id\": \"1673968467_oIN1E\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.10\",\r\n            \"size\": \"3.00\",\r\n            \"sieve\": \"+12-12.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.15\",\r\n            \"size\": \"3.30\",\r\n            \"sieve\": \"+14.5-15\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.10\",\r\n        \"to\": \"0.15\"\r\n    },\r\n    {\r\n        \"id\": \"1673968569_eTe7l\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.15\",\r\n            \"size\": \"3.30\",\r\n            \"sieve\": \"+14.5-15\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.16\",\r\n            \"size\": \"3.30\",\r\n            \"sieve\": \"+14.5-15\"\r\n        },\r\n        \"shape\": \"round\",\r\n        \"title\": \"0.15 to 0.16 ct\",\r\n        \"from\": \"0.15\",\r\n        \"to\": \"0.16\"\r\n    },\r\n    {\r\n        \"id\": \"1674479846_1rmrf\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.60\",\r\n            \"size\": \"5.40\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.70\",\r\n            \"size\": \"5.70\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"title\": \"newwww\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.60\",\r\n        \"to\": \"0.70\"\r\n    },\r\n    {\r\n        \"id\": \"1675488076_XGihC\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.044\",\r\n            \"size\": \"2.20\",\r\n            \"sieve\": \"+8.5-9\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.075\",\r\n            \"size\": \"2.60\",\r\n            \"sieve\": \"+10.5-11\"\r\n        },\r\n        \"title\": \"0.044- 0.075\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.044\",\r\n        \"to\": \"0.075\"\r\n    },\r\n    {\r\n        \"id\": \"1675925312_ngHNf\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.21\",\r\n            \"size\": \"3.80\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.26\",\r\n            \"size\": \"4.00\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"title\": \"new\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.21\",\r\n        \"to\": \"0.26\"\r\n    },\r\n    {\r\n        \"id\": \"1675926633_0HpGL\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.17\",\r\n            \"size\": \"3.50\",\r\n            \"sieve\": \"+15-15.5\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.26\",\r\n            \"size\": \"4.00\",\r\n            \"sieve\": \"\"\r\n        },\r\n        \"title\": \"0.17-0.26\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.17\",\r\n        \"to\": \"0.26\"\r\n    },\r\n    {\r\n        \"id\": \"1676027666_bFecd\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.002\",\r\n            \"size\": \"0.7\",\r\n            \"sieve\": \"+00000-0000\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.05\",\r\n            \"size\": \"\"\r\n        },\r\n        \"title\": \"Round 1\",\r\n        \"shape\": \"round\",\r\n        \"from\": \"0.002\",\r\n        \"to\": \"8.05\"\r\n    },\r\n    {\r\n        \"id\": \"1676382457_AWncx\",\r\n        \"fromObj\": {\r\n            \"wt\": 0.5\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": 0.55\r\n        },\r\n        \"title\": \"0.77-0.85\",\r\n        \"shape\": \"fancy\",\r\n        \"from\": \"0.5\",\r\n        \"to\": \"0.55\"\r\n    },\r\n    {\r\n        \"id\": \"1679983938_4Qhny\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.070\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.072\"\r\n        },\r\n        \"title\": \"0.07- 0.027\",\r\n        \"shape\": \"heart\",\r\n        \"from\": \"0.070\",\r\n        \"to\": \"0.072\"\r\n    },\r\n    {\r\n        \"id\": \"1695803294_Vt06a\",\r\n        \"fromObj\": {\r\n            \"wt\": 1\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"8.00\"\r\n        },\r\n        \"title\": \"trapezoid 1 - 8\",\r\n        \"shape\": \"trapezoid\",\r\n        \"from\": \"1.00\",\r\n        \"to\": \"8.00\"\r\n    },\r\n    {\r\n        \"id\": \"1695968900_m9Be2\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.1\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": 0.9\r\n        },\r\n        \"title\": \"123\",\r\n        \"shape\": \"halfmoon\",\r\n        \"from\": \"0.1\",\r\n        \"to\": \"0.9\"\r\n    },\r\n    {\r\n        \"id\": \"1698134765_C1OwO\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.001\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.009\"\r\n        },\r\n        \"title\": \"Oval -0.001-0.009\",\r\n        \"shape\": \"oval\",\r\n        \"from\": \"0.001\",\r\n        \"to\": \"0.009\"\r\n    },\r\n    {\r\n        \"id\": \"1706678529_mtElc\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.01\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.07\"\r\n        },\r\n        \"title\": \"Emerald 0.01 -0.07\",\r\n        \"shape\": \"emerald\",\r\n        \"from\": \"0.01\",\r\n        \"to\": \"0.07\"\r\n    },\r\n    {\r\n        \"id\": \"1712557777_ygeR9\",\r\n        \"fromObj\": {\r\n            \"wt\": 0.28\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": 0.29\r\n        },\r\n        \"title\": \"Heart 0.28 - 0.29\",\r\n        \"shape\": \"heart\",\r\n        \"from\": \"0.28\",\r\n        \"to\": \"0.29\"\r\n    },\r\n    {\r\n        \"id\": \"1714541625_jk4c1\",\r\n        \"fromObj\": {\r\n            \"wt\": \"0.08\",\r\n            \"size\": \"2.40\"\r\n        },\r\n        \"toObj\": {\r\n            \"wt\": \"0.1\"\r\n        },\r\n        \"title\": \"prnc\",\r\n        \"shape\": \"princess\",\r\n        \"from\": \"0.08\",\r\n        \"to\": \"0.1\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/business_settings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": \"1671627657_LhurM\",\n            \"fromObj\": {\n                \"wt\": \"0.001\",\n                \"size\": \"0.6\",\n                \"sieve\": \"+00000-0000\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.002\",\n                \"size\": \"0.7\",\n                \"sieve\": \"+00000-0000\"\n            },\n            \"title\": \"Round\",\n            \"shape\": \"round\",\n            \"from\": \"0.001\",\n            \"to\": \"0.002\"\n        },\n        {\n            \"id\": \"1671627672_0ytnJ\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.05\",\n                \"size\": \"2.00\"\n            },\n            \"title\": \"Princess\",\n            \"shape\": \"princess\",\n            \"from\": \"0.01\",\n            \"to\": \"0.05\"\n        },\n        {\n            \"id\": \"1671627691_SXhR2\",\n            \"fromObj\": {\n                \"wt\": \"0.02\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\"\n            },\n            \"title\": \"Marquise\",\n            \"shape\": \"marquise\",\n            \"from\": \"0.02\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1671627705_C8cbl\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\"\n            },\n            \"title\": \"Pear\",\n            \"shape\": \"pear\",\n            \"from\": \"0.01\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1671627718_50lvN\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\"\n            },\n            \"title\": \"Oval\",\n            \"shape\": \"oval\",\n            \"from\": \"0.01\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1673361401_O4Zmw\",\n            \"fromObj\": {\n                \"wt\": \"0.005\",\n                \"size\": \"0.9\",\n                \"sieve\": \"+00-0\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.008\",\n                \"size\": \"1.20\",\n                \"sieve\": \"+1.5-2\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"0.005 - 0.008\",\n            \"from\": \"0.005\",\n            \"to\": \"0.008\"\n        },\n        {\n            \"id\": \"1673432642_lhWlS\",\n            \"fromObj\": {\n                \"wt\": \"0.008\",\n                \"size\": \"1.20\",\n                \"sieve\": \"+1.5-2\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.009\",\n                \"size\": \"1.25\",\n                \"sieve\": \"+2-2.5\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"test\",\n            \"from\": \"0.008\",\n            \"to\": \"0.009\"\n        },\n        {\n            \"id\": \"1673820396_gbZNE\",\n            \"fromObj\": {\n                \"wt\": \"0.009\",\n                \"size\": \"1.25\",\n                \"sieve\": \"+2-2.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.01\",\n                \"size\": \"1.30\",\n                \"sieve\": \"+2.5-3\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"test\",\n            \"from\": \"0.009\",\n            \"to\": \"0.01\"\n        },\n        {\n            \"id\": \"1673942247_AScpo\",\n            \"fromObj\": {\n                \"wt\": \"0.011\",\n                \"size\": \"1.35\",\n                \"sieve\": \"+3-3.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.05\",\n                \"size\": \"2.30\",\n                \"sieve\": \"+9-9.5\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"0.0046\",\n            \"from\": \"0.011\",\n            \"to\": \"0.05\"\n        },\n        {\n            \"id\": \"1673954777_dXHWT\",\n            \"fromObj\": {\n                \"wt\": \"0.01\",\n                \"size\": \"1.30\",\n                \"sieve\": \"+2.5-3\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.05\",\n                \"size\": \"2.30\",\n                \"sieve\": \"+9-9.5\"\n            },\n            \"title\": \"0.1 to 0.10\",\n            \"shape\": \"round\",\n            \"from\": \"0.01\",\n            \"to\": \"0.05\"\n        },\n        {\n            \"id\": \"1673968467_oIN1E\",\n            \"fromObj\": {\n                \"wt\": \"0.10\",\n                \"size\": \"3.00\",\n                \"sieve\": \"+12-12.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.15\",\n                \"size\": \"3.30\",\n                \"sieve\": \"+14.5-15\"\n            },\n            \"shape\": \"round\",\n            \"from\": \"0.10\",\n            \"to\": \"0.15\"\n        },\n        {\n            \"id\": \"1673968569_eTe7l\",\n            \"fromObj\": {\n                \"wt\": \"0.15\",\n                \"size\": \"3.30\",\n                \"sieve\": \"+14.5-15\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.16\",\n                \"size\": \"3.30\",\n                \"sieve\": \"+14.5-15\"\n            },\n            \"shape\": \"round\",\n            \"title\": \"0.15 to 0.16 ct\",\n            \"from\": \"0.15\",\n            \"to\": \"0.16\"\n        },\n        {\n            \"id\": \"1674479846_1rmrf\",\n            \"fromObj\": {\n                \"wt\": \"0.60\",\n                \"size\": \"5.40\",\n                \"sieve\": \"\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.70\",\n                \"size\": \"5.70\",\n                \"sieve\": \"\"\n            },\n            \"title\": \"newwww\",\n            \"shape\": \"round\",\n            \"from\": \"0.60\",\n            \"to\": \"0.70\"\n        },\n        {\n            \"id\": \"1675488076_XGihC\",\n            \"fromObj\": {\n                \"wt\": \"0.044\",\n                \"size\": \"2.20\",\n                \"sieve\": \"+8.5-9\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.075\",\n                \"size\": \"2.60\",\n                \"sieve\": \"+10.5-11\"\n            },\n            \"title\": \"0.044- 0.075\",\n            \"shape\": \"round\",\n            \"from\": \"0.044\",\n            \"to\": \"0.075\"\n        },\n        {\n            \"id\": \"1675925312_ngHNf\",\n            \"fromObj\": {\n                \"wt\": \"0.21\",\n                \"size\": \"3.80\",\n                \"sieve\": \"\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.26\",\n                \"size\": \"4.00\",\n                \"sieve\": \"\"\n            },\n            \"title\": \"new\",\n            \"shape\": \"round\",\n            \"from\": \"0.21\",\n            \"to\": \"0.26\"\n        },\n        {\n            \"id\": \"1675926633_0HpGL\",\n            \"fromObj\": {\n                \"wt\": \"0.17\",\n                \"size\": \"3.50\",\n                \"sieve\": \"+15-15.5\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.26\",\n                \"size\": \"4.00\",\n                \"sieve\": \"\"\n            },\n            \"title\": \"0.17-0.26\",\n            \"shape\": \"round\",\n            \"from\": \"0.17\",\n            \"to\": \"0.26\"\n        },\n        {\n            \"id\": \"1676027666_bFecd\",\n            \"fromObj\": {\n                \"wt\": \"0.002\",\n                \"size\": \"0.7\",\n                \"sieve\": \"+00000-0000\"\n            },\n            \"toObj\": {\n                \"wt\": \"8.05\",\n                \"size\": \"\"\n            },\n            \"title\": \"Round 1\",\n            \"shape\": \"round\",\n            \"from\": \"0.002\",\n            \"to\": \"8.05\"\n        },\n        {\n            \"id\": \"1676382457_AWncx\",\n            \"fromObj\": {\n                \"wt\": 0.5\n            },\n            \"toObj\": {\n                \"wt\": 0.55\n            },\n            \"title\": \"0.77-0.85\",\n            \"shape\": \"fancy\",\n            \"from\": \"0.5\",\n            \"to\": \"0.55\"\n        },\n        {\n            \"id\": \"1679983938_4Qhny\",\n            \"fromObj\": {\n                \"wt\": \"0.070\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.072\"\n            },\n            \"title\": \"0.07- 0.027\",\n            \"shape\": \"heart\",\n            \"from\": \"0.070\",\n            \"to\": \"0.072\"\n        },\n        {\n            \"id\": \"1695803294_Vt06a\",\n            \"fromObj\": {\n                \"wt\": 1\n            },\n            \"toObj\": {\n                \"wt\": \"8.00\"\n            },\n            \"title\": \"trapezoid 1 - 8\",\n            \"shape\": \"trapezoid\",\n            \"from\": \"1.00\",\n            \"to\": \"8.00\"\n        },\n        {\n            \"id\": \"1695968900_m9Be2\",\n            \"fromObj\": {\n                \"wt\": \"0.1\"\n            },\n            \"toObj\": {\n                \"wt\": 0.9\n            },\n            \"title\": \"123\",\n            \"shape\": \"halfmoon\",\n            \"from\": \"0.1\",\n            \"to\": \"0.9\"\n        },\n        {\n            \"id\": \"1698134765_C1OwO\",\n            \"fromObj\": {\n                \"wt\": \"0.001\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.009\"\n            },\n            \"title\": \"Oval -0.001-0.009\",\n            \"shape\": \"oval\",\n            \"from\": \"0.001\",\n            \"to\": \"0.009\"\n        },\n        {\n            \"id\": \"1706678529_mtElc\",\n            \"fromObj\": {\n                \"wt\": \"0.01\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.07\"\n            },\n            \"title\": \"Emerald 0.01 -0.07\",\n            \"shape\": \"emerald\",\n            \"from\": \"0.01\",\n            \"to\": \"0.07\"\n        },\n        {\n            \"id\": \"1712557777_ygeR9\",\n            \"fromObj\": {\n                \"wt\": 0.28\n            },\n            \"toObj\": {\n                \"wt\": 0.29\n            },\n            \"title\": \"Heart 0.28 - 0.29\",\n            \"shape\": \"heart\",\n            \"from\": \"0.28\",\n            \"to\": \"0.29\"\n        },\n        {\n            \"id\": \"1714541625_jk4c1\",\n            \"fromObj\": {\n                \"wt\": \"0.08\",\n                \"size\": \"2.40\"\n            },\n            \"toObj\": {\n                \"wt\": \"0.1\"\n            },\n            \"title\": \"prnc\",\n            \"shape\": \"princess\",\n            \"from\": \"0.08\",\n            \"to\": \"0.1\"\n        }\n    ]\n}"}],"_postman_id":"d957d928-3371-477d-8349-c897cf89e529"},{"name":"Get Gold Pricing","id":"6c988d83-38d3-4811-aabc-69064cd93394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/gold_pricing","description":"<p>In gold pricing, you'll define the prices for all purities saved or selected in the business settings. These prices will be used to set product prices dynamically. If you update the price of any purity here, all product prices using that purity will automatically be updated.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Descrption</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>From where to calculate the gold price on gross weight or net weight, <strong>Possible values: gross, net</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td>If set to <strong>automatic</strong>, the other purity prices will auto updated on the basis of any purity price defined, if need to set all manually, set as <strong>manual</strong></td>\n</tr>\n<tr>\n<td>[purity].base</td>\n<td>base price of the purity.</td>\n</tr>\n<tr>\n<td>[purity].margin</td>\n<td>Can add select margin of a purity, for example if the current purity is 750, we can set the margin as 850 so the rate will be around as 850's price and this will be applicable to products</td>\n</tr>\n<tr>\n<td>[purity].rate</td>\n<td>rate of a purity. Which will be calculate with the margin, if margin is not defined, it'll be same as base price.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","gold_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"cbf43f7b-435e-4a5f-8f6e-4b112e9061a3","name":"Get Gold pricing","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/gold_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": {\n            \"default\": \"999\",\n            \"automatic\": {\n                \"375\": {\n                    \"base\": 2500,\n                    \"margin\": 430,\n                    \"rate\": 2867\n                },\n                \"583\": {\n                    \"base\": 509,\n                    \"margin\": \"583\",\n                    \"rate\": 509\n                },\n                \"750\": {\n                    \"base\": 5561,\n                    \"margin\": 750,\n                    \"rate\": 5561,\n                    \"default\": true\n                },\n                \"916\": {\n                    \"base\": \"6792\",\n                    \"margin\": 916,\n                    \"rate\": 6792,\n                    \"default\": true\n                },\n                \"995\": {\n                    \"base\": 6103,\n                    \"margin\": 970,\n                    \"rate\": 5950\n                },\n                \"999\": {\n                    \"base\": 7407,\n                    \"margin\": 999,\n                    \"rate\": 7407\n                },\n                \"999.99\": {\n                    \"base\": 873,\n                    \"margin\": \"999.99\",\n                    \"rate\": 873\n                },\n                \"\": {\n                    \"base\": \"6300\",\n                    \"rate\": \"6300\",\n                    \"default\": true\n                }\n            },\n            \"manual\": {\n                \"375\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"583\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"750\": {\n                    \"base\": 5560,\n                    \"margin\": \"750\",\n                    \"rate\": 5560\n                },\n                \"916\": {\n                    \"base\": 6745,\n                    \"margin\": \"916\",\n                    \"rate\": 6745\n                },\n                \"995\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"999\": {\n                    \"base\": \"10000\",\n                    \"rate\": \"10000\"\n                },\n                \"999.99\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                }\n            },\n            \"enabled_purities\": {\n                \"750\": true,\n                \"916\": true,\n                \"999\": true\n            }\n        },\n        \"from\": \"gross\",\n        \"type\": \"automatic\"\n    }\n}"}],"_postman_id":"6c988d83-38d3-4811-aabc-69064cd93394"},{"name":"Update Gold Pricing","id":"58aa7def-c343-465c-a7a0-8da6a2c4acb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"INR\": {\r\n        \"default\": \"999\",\r\n        \"automatic\": {\r\n            \"375\": {\r\n                \"base\": 2500,\r\n                \"margin\": 430,\r\n                \"rate\": 2867\r\n            },\r\n            \"583\": {\r\n                \"base\": 509,\r\n                \"margin\": \"583\",\r\n                \"rate\": 509\r\n            },\r\n            \"750\": {\r\n                \"base\": 5561,\r\n                \"margin\": 750,\r\n                \"rate\": 5561,\r\n                \"default\": true\r\n            },\r\n            \"916\": {\r\n                \"base\": \"6792\",\r\n                \"margin\": 916,\r\n                \"rate\": 6792,\r\n                \"default\": true\r\n            },\r\n            \"995\": {\r\n                \"base\": 6103,\r\n                \"margin\": 970,\r\n                \"rate\": 5950\r\n            },\r\n            \"999\": {\r\n                \"base\": 7407,\r\n                \"margin\": 999,\r\n                \"rate\": 7407\r\n            },\r\n            \"999.99\": {\r\n                \"base\": 873,\r\n                \"margin\": \"999.99\",\r\n                \"rate\": 873\r\n            },\r\n            \"\": {\r\n                \"base\": \"6300\",\r\n                \"rate\": \"6300\",\r\n                \"default\": true\r\n            }\r\n        },\r\n        \"manual\": {\r\n            \"375\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"583\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"750\": {\r\n                \"base\": 5560,\r\n                \"margin\": \"750\",\r\n                \"rate\": 5560\r\n            },\r\n            \"916\": {\r\n                \"base\": 6745,\r\n                \"margin\": \"916\",\r\n                \"rate\": 6745\r\n            },\r\n            \"995\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"999\": {\r\n                \"base\": \"10000\",\r\n                \"rate\": \"10000\"\r\n            },\r\n            \"999.99\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            }\r\n        },\r\n        \"enabled_purities\": {\r\n            \"750\": true,\r\n            \"916\": true,\r\n            \"999\": true\r\n        }\r\n    },\r\n    \"from\": \"gross\",\r\n    \"type\": \"automatic\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/gold_pricing","description":"<p>In gold pricing, you'll define the prices for all purities saved or selected in the business settings. These prices will be used to set product prices dynamically. If you update the price of any purity here, all product prices using that purity will automatically be updated.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Descrption</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>From where to calculate the gold price on gross weight or net weight, <strong>Possible values: gross, net</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td>If set to <strong>automatic</strong>, the other purity prices will auto updated on the basis of any purity price defined, if need to set all manually, set as <strong>manual</strong></td>\n</tr>\n<tr>\n<td>[purity].base</td>\n<td>base price of the purity.</td>\n</tr>\n<tr>\n<td>[purity].margin</td>\n<td>Can add select margin of a purity, for example if the current purity is 750, we can set the margin as 850 so the rate will be around as 850's price and this will be applicable to products</td>\n</tr>\n<tr>\n<td>[purity].rate</td>\n<td>rate of a purity. Which will be calculate with the margin, if margin is not defined, it'll be same as base price.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","gold_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"1791aa52-12a9-435b-95fd-6bf2f306f744","name":"Update Gold pricing","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"INR\": {\r\n        \"default\": \"999\",\r\n        \"automatic\": {\r\n            \"375\": {\r\n                \"base\": 2500,\r\n                \"margin\": 430,\r\n                \"rate\": 2867\r\n            },\r\n            \"583\": {\r\n                \"base\": 509,\r\n                \"margin\": \"583\",\r\n                \"rate\": 509\r\n            },\r\n            \"750\": {\r\n                \"base\": 5561,\r\n                \"margin\": 750,\r\n                \"rate\": 5561,\r\n                \"default\": true\r\n            },\r\n            \"916\": {\r\n                \"base\": \"6792\",\r\n                \"margin\": 916,\r\n                \"rate\": 6792,\r\n                \"default\": true\r\n            },\r\n            \"995\": {\r\n                \"base\": 6103,\r\n                \"margin\": 970,\r\n                \"rate\": 5950\r\n            },\r\n            \"999\": {\r\n                \"base\": 7407,\r\n                \"margin\": 999,\r\n                \"rate\": 7407\r\n            },\r\n            \"999.99\": {\r\n                \"base\": 873,\r\n                \"margin\": \"999.99\",\r\n                \"rate\": 873\r\n            },\r\n            \"\": {\r\n                \"base\": \"6300\",\r\n                \"rate\": \"6300\",\r\n                \"default\": true\r\n            }\r\n        },\r\n        \"manual\": {\r\n            \"375\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"583\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"750\": {\r\n                \"base\": 5560,\r\n                \"margin\": \"750\",\r\n                \"rate\": 5560\r\n            },\r\n            \"916\": {\r\n                \"base\": 6745,\r\n                \"margin\": \"916\",\r\n                \"rate\": 6745\r\n            },\r\n            \"995\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"999\": {\r\n                \"base\": \"10000\",\r\n                \"rate\": \"10000\"\r\n            },\r\n            \"999.99\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            }\r\n        },\r\n        \"enabled_purities\": {\r\n            \"750\": true,\r\n            \"916\": true,\r\n            \"999\": true\r\n        }\r\n    },\r\n    \"from\": \"gross\",\r\n    \"type\": \"automatic\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/gold_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": {\n            \"default\": \"999\",\n            \"automatic\": {\n                \"375\": {\n                    \"base\": 2500,\n                    \"margin\": 430,\n                    \"rate\": 2867\n                },\n                \"583\": {\n                    \"base\": 509,\n                    \"margin\": \"583\",\n                    \"rate\": 509\n                },\n                \"750\": {\n                    \"base\": 5561,\n                    \"margin\": 750,\n                    \"rate\": 5561,\n                    \"default\": true\n                },\n                \"916\": {\n                    \"base\": \"6792\",\n                    \"margin\": 916,\n                    \"rate\": 6792,\n                    \"default\": true\n                },\n                \"995\": {\n                    \"base\": 6103,\n                    \"margin\": 970,\n                    \"rate\": 5950\n                },\n                \"999\": {\n                    \"base\": 7407,\n                    \"margin\": 999,\n                    \"rate\": 7407\n                },\n                \"999.99\": {\n                    \"base\": 873,\n                    \"margin\": \"999.99\",\n                    \"rate\": 873\n                },\n                \"\": {\n                    \"base\": \"6300\",\n                    \"rate\": \"6300\",\n                    \"default\": true\n                }\n            },\n            \"manual\": {\n                \"375\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"583\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"750\": {\n                    \"base\": 5560,\n                    \"margin\": \"750\",\n                    \"rate\": 5560\n                },\n                \"916\": {\n                    \"base\": 6745,\n                    \"margin\": \"916\",\n                    \"rate\": 6745\n                },\n                \"995\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"999\": {\n                    \"base\": \"10000\",\n                    \"rate\": \"10000\"\n                },\n                \"999.99\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                }\n            },\n            \"enabled_purities\": {\n                \"750\": true,\n                \"916\": true,\n                \"999\": true\n            }\n        },\n        \"from\": \"gross\",\n        \"type\": \"automatic\"\n    }\n}"}],"_postman_id":"58aa7def-c343-465c-a7a0-8da6a2c4acb2"},{"name":"Get Silver Pricing","id":"8cac8da9-1f7c-404c-b95f-9f09ba3808f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/silver_pricing","description":"<p>In silver pricing, you'll set the prices for all purities saved or selected in the business settings. These prices will be used to dynamically determine product prices. If you update the price of any purity here, all product prices using that purity will be automatically updated.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>From where to calculate the silver price based on gross weight or net weight. <strong>Possible values: gross, net</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td>If set to <strong>automatic</strong>, the other purity prices will auto-update based on any defined purity price. If you need to set all prices manually, set it to <strong>manual</strong>.</td>\n</tr>\n<tr>\n<td>[purity].base</td>\n<td>Base price of the silver purity.</td>\n</tr>\n<tr>\n<td>[purity].margin</td>\n<td>You can set a margin for a purity. For example, if the current purity is 925, you can set the margin as 950 so the rate will be adjusted accordingly, and this margin will apply to products.</td>\n</tr>\n<tr>\n<td>[purity].rate</td>\n<td>Rate of a silver purity, which will be calculated with the margin. If no margin is defined, the rate will be the same as the base price.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","silver_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"3a9c1f12-dc0a-48bc-9881-24c8b1705eae","name":"Get Silver pricing","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/silver_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": {\n            \"default\": \"925\",\n            \"automatic\": {\n                \"650\": {\n                    \"base\": \"67.61\",\n                    \"margin\": 650,\n                    \"rate\": \"67.61\"\n                },\n                \"750\": {\n                    \"base\": \"78.02\",\n                    \"margin\": 750,\n                    \"rate\": \"78.02\"\n                },\n                \"850\": {\n                    \"base\": \"88.42\",\n                    \"margin\": 850,\n                    \"rate\": \"88.42\"\n                },\n                \"925\": {\n                    \"base\": \"96.22\",\n                    \"margin\": 925,\n                    \"rate\": \"96.22\",\n                    \"default\": true\n                },\n                \"995\": {\n                    \"base\": \"103.5\",\n                    \"margin\": 995,\n                    \"rate\": \"103.50\",\n                    \"default\": true\n                },\n                \"999\": {\n                    \"base\": \"103.92\",\n                    \"margin\": 999,\n                    \"rate\": \"103.92\"\n                },\n                \"\": {\n                    \"base\": \"70.50\",\n                    \"rate\": \"70.50\",\n                    \"default\": true\n                }\n            },\n            \"manual\": {\n                \"650\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"750\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"850\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"925\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"995\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"999\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                }\n            },\n            \"enabled_purities\": {\n                \"925\": true,\n                \"995\": true,\n                \"999\": true\n            }\n        },\n        \"from\": \"net\",\n        \"type\": \"automatic\"\n    }\n}"}],"_postman_id":"8cac8da9-1f7c-404c-b95f-9f09ba3808f0"},{"name":"Update Silver Pricing Copy","id":"1d63ae60-19f9-4ed6-befa-dab6c2b5d7d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"INR\": {\r\n        \"default\": \"925\",\r\n        \"automatic\": {\r\n            \"650\": {\r\n                \"base\": \"67.61\",\r\n                \"margin\": 650,\r\n                \"rate\": \"67.61\"\r\n            },\r\n            \"750\": {\r\n                \"base\": \"78.02\",\r\n                \"margin\": 750,\r\n                \"rate\": \"78.02\"\r\n            },\r\n            \"850\": {\r\n                \"base\": \"88.42\",\r\n                \"margin\": 850,\r\n                \"rate\": \"88.42\"\r\n            },\r\n            \"925\": {\r\n                \"base\": \"96.22\",\r\n                \"margin\": 925,\r\n                \"rate\": \"96.22\",\r\n                \"default\": true\r\n            },\r\n            \"995\": {\r\n                \"base\": \"103.5\",\r\n                \"margin\": 995,\r\n                \"rate\": \"103.50\",\r\n                \"default\": true\r\n            },\r\n            \"999\": {\r\n                \"base\": \"103.92\",\r\n                \"margin\": 999,\r\n                \"rate\": \"103.92\"\r\n            },\r\n            \"\": {\r\n                \"base\": \"70.50\",\r\n                \"rate\": \"70.50\",\r\n                \"default\": true\r\n            }\r\n        },\r\n        \"manual\": {\r\n            \"650\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"750\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"850\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"925\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"995\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"999\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            }\r\n        },\r\n        \"enabled_purities\": {\r\n            \"925\": true,\r\n            \"995\": true,\r\n            \"999\": true\r\n        }\r\n    },\r\n    \"from\": \"net\",\r\n    \"type\": \"automatic\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/silver_pricing","description":"<p>In silver pricing, you'll set the prices for all purities saved or selected in the business settings. These prices will be used to dynamically determine product prices. If you update the price of any purity here, all product prices using that purity will be automatically updated.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>From where to calculate the silver price based on gross weight or net weight. <strong>Possible values: gross, net</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td>If set to <strong>automatic</strong>, the other purity prices will auto-update based on any defined purity price. If you need to set all prices manually, set it to <strong>manual</strong>.</td>\n</tr>\n<tr>\n<td>[purity].base</td>\n<td>Base price of the silver purity.</td>\n</tr>\n<tr>\n<td>[purity].margin</td>\n<td>You can set a margin for a purity. For example, if the current purity is 925, you can set the margin as 950 so the rate will be adjusted accordingly, and this margin will apply to products.</td>\n</tr>\n<tr>\n<td>[purity].rate</td>\n<td>Rate of a silver purity, which will be calculated with the margin. If no margin is defined, the rate will be the same as the base price.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","silver_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"c91be2fd-11fb-426b-a47b-9edc4bb7ac92","name":"Update Silver pricing","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"INR\": {\r\n        \"default\": \"925\",\r\n        \"automatic\": {\r\n            \"650\": {\r\n                \"base\": \"67.61\",\r\n                \"margin\": 650,\r\n                \"rate\": \"67.61\"\r\n            },\r\n            \"750\": {\r\n                \"base\": \"78.02\",\r\n                \"margin\": 750,\r\n                \"rate\": \"78.02\"\r\n            },\r\n            \"850\": {\r\n                \"base\": \"88.42\",\r\n                \"margin\": 850,\r\n                \"rate\": \"88.42\"\r\n            },\r\n            \"925\": {\r\n                \"base\": \"96.22\",\r\n                \"margin\": 925,\r\n                \"rate\": \"96.22\",\r\n                \"default\": true\r\n            },\r\n            \"995\": {\r\n                \"base\": \"103.5\",\r\n                \"margin\": 995,\r\n                \"rate\": \"103.50\",\r\n                \"default\": true\r\n            },\r\n            \"999\": {\r\n                \"base\": \"103.92\",\r\n                \"margin\": 999,\r\n                \"rate\": \"103.92\"\r\n            },\r\n            \"\": {\r\n                \"base\": \"70.50\",\r\n                \"rate\": \"70.50\",\r\n                \"default\": true\r\n            }\r\n        },\r\n        \"manual\": {\r\n            \"650\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"750\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"850\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"925\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"995\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"999\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            }\r\n        },\r\n        \"enabled_purities\": {\r\n            \"925\": true,\r\n            \"995\": true,\r\n            \"999\": true\r\n        }\r\n    },\r\n    \"from\": \"net\",\r\n    \"type\": \"automatic\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/silver_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": {\n            \"default\": \"925\",\n            \"automatic\": {\n                \"650\": {\n                    \"base\": \"67.61\",\n                    \"margin\": 650,\n                    \"rate\": \"67.61\"\n                },\n                \"750\": {\n                    \"base\": \"78.02\",\n                    \"margin\": 750,\n                    \"rate\": \"78.02\"\n                },\n                \"850\": {\n                    \"base\": \"88.42\",\n                    \"margin\": 850,\n                    \"rate\": \"88.42\"\n                },\n                \"925\": {\n                    \"base\": \"96.22\",\n                    \"margin\": 925,\n                    \"rate\": \"96.22\",\n                    \"default\": true\n                },\n                \"995\": {\n                    \"base\": \"103.5\",\n                    \"margin\": 995,\n                    \"rate\": \"103.50\",\n                    \"default\": true\n                },\n                \"999\": {\n                    \"base\": \"103.92\",\n                    \"margin\": 999,\n                    \"rate\": \"103.92\"\n                },\n                \"\": {\n                    \"base\": \"70.50\",\n                    \"rate\": \"70.50\",\n                    \"default\": true\n                }\n            },\n            \"manual\": {\n                \"650\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"750\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"850\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"925\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"995\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"999\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                }\n            },\n            \"enabled_purities\": {\n                \"925\": true,\n                \"995\": true,\n                \"999\": true\n            }\n        },\n        \"from\": \"net\",\n        \"type\": \"automatic\"\n    }\n}"}],"_postman_id":"1d63ae60-19f9-4ed6-befa-dab6c2b5d7d9"},{"name":"Get Platinum Pricing","id":"806f8dfa-0061-4579-8e55-04096a4f208c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/platinum_pricing","description":"<p>In platinum pricing, you'll establish prices for all purities saved or selected in the business settings. These prices will be used to dynamically calculate product prices. If you update the price of any purity here, all product prices using that purity will automatically adjust accordingly.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>From where to calculate the platinum price based on gross weight or net weight. <strong>Possible values: gross, net</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td>If set to <strong>automatic</strong>, the other purity prices will auto-update based on any defined purity price. If you need to set all prices manually, set it to <strong>manual</strong>.</td>\n</tr>\n<tr>\n<td>[purity].base</td>\n<td>Base price of the platinum purity.</td>\n</tr>\n<tr>\n<td>[purity].margin</td>\n<td>You can set a margin for a purity. For example, if the current purity is 950, you can set the margin as 900, so the rate will be adjusted accordingly, and this margin will apply to products.</td>\n</tr>\n<tr>\n<td>[purity].rate</td>\n<td>Rate of a platinum purity, which will be calculated with the margin. If no margin is defined, the rate will be the same as the base price.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","platinum_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"6fa7f40f-d01e-48b6-9039-c77b2cb9ecb7","name":"Get Platinium pricing","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/platinum_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": {\n            \"default\": \"950\",\n            \"automatic\": {\n                \"850\": {\n                    \"base\": \"8000\",\n                    \"margin\": 850,\n                    \"rate\": 8000,\n                    \"default\": true\n                },\n                \"900\": {\n                    \"base\": 8471,\n                    \"margin\": 900,\n                    \"rate\": 8471\n                },\n                \"950\": {\n                    \"base\": 8941,\n                    \"margin\": 950,\n                    \"rate\": 8941\n                }\n            },\n            \"manual\": {\n                \"850\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"900\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"950\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                }\n            },\n            \"enabled_purities\": {\n                \"900\": true,\n                \"950\": true\n            }\n        },\n        \"from\": \"gross\",\n        \"type\": \"automatic\"\n    }\n}"}],"_postman_id":"806f8dfa-0061-4579-8e55-04096a4f208c"},{"name":"Update Platinum Pricing Copy","id":"74020656-c331-45d6-a621-6d198af40093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"INR\": {\r\n        \"default\": \"950\",\r\n        \"automatic\": {\r\n            \"850\": {\r\n                \"base\": \"8000\",\r\n                \"margin\": 850,\r\n                \"rate\": 8000,\r\n                \"default\": true\r\n            },\r\n            \"900\": {\r\n                \"base\": 8471,\r\n                \"margin\": 900,\r\n                \"rate\": 8471\r\n            },\r\n            \"950\": {\r\n                \"base\": 8941,\r\n                \"margin\": 950,\r\n                \"rate\": 8941\r\n            }\r\n        },\r\n        \"manual\": {\r\n            \"850\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"900\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"950\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            }\r\n        },\r\n        \"enabled_purities\": {\r\n            \"900\": true,\r\n            \"950\": true\r\n        }\r\n    },\r\n    \"from\": \"gross\",\r\n    \"type\": \"automatic\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/platinum_pricing","description":"<p>In platinum pricing, you'll establish prices for all purities saved or selected in the business settings. These prices will be used to dynamically calculate product prices. If you update the price of any purity here, all product prices using that purity will automatically adjust accordingly.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>From where to calculate the platinum price based on gross weight or net weight. <strong>Possible values: gross, net</strong></td>\n</tr>\n<tr>\n<td>type</td>\n<td>If set to <strong>automatic</strong>, the other purity prices will auto-update based on any defined purity price. If you need to set all prices manually, set it to <strong>manual</strong>.</td>\n</tr>\n<tr>\n<td>[purity].base</td>\n<td>Base price of the platinum purity.</td>\n</tr>\n<tr>\n<td>[purity].margin</td>\n<td>You can set a margin for a purity. For example, if the current purity is 950, you can set the margin as 900, so the rate will be adjusted accordingly, and this margin will apply to products.</td>\n</tr>\n<tr>\n<td>[purity].rate</td>\n<td>Rate of a platinum purity, which will be calculated with the margin. If no margin is defined, the rate will be the same as the base price.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","platinum_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"eb58190e-9b9a-4f86-9a01-b51e058ca4c2","name":"Update Platinium pricing","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"INR\": {\r\n        \"default\": \"950\",\r\n        \"automatic\": {\r\n            \"850\": {\r\n                \"base\": \"8000\",\r\n                \"margin\": 850,\r\n                \"rate\": 8000,\r\n                \"default\": true\r\n            },\r\n            \"900\": {\r\n                \"base\": 8471,\r\n                \"margin\": 900,\r\n                \"rate\": 8471\r\n            },\r\n            \"950\": {\r\n                \"base\": 8941,\r\n                \"margin\": 950,\r\n                \"rate\": 8941\r\n            }\r\n        },\r\n        \"manual\": {\r\n            \"850\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"900\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            },\r\n            \"950\": {\r\n                \"base\": \"\",\r\n                \"rate\": \"\"\r\n            }\r\n        },\r\n        \"enabled_purities\": {\r\n            \"900\": true,\r\n            \"950\": true\r\n        }\r\n    },\r\n    \"from\": \"gross\",\r\n    \"type\": \"automatic\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/platinum_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": {\n            \"default\": \"950\",\n            \"automatic\": {\n                \"850\": {\n                    \"base\": \"8000\",\n                    \"margin\": 850,\n                    \"rate\": 8000,\n                    \"default\": true\n                },\n                \"900\": {\n                    \"base\": 8471,\n                    \"margin\": 900,\n                    \"rate\": 8471\n                },\n                \"950\": {\n                    \"base\": 8941,\n                    \"margin\": 950,\n                    \"rate\": 8941\n                }\n            },\n            \"manual\": {\n                \"850\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"900\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                },\n                \"950\": {\n                    \"base\": \"\",\n                    \"rate\": \"\"\n                }\n            },\n            \"enabled_purities\": {\n                \"900\": true,\n                \"950\": true\n            }\n        },\n        \"from\": \"gross\",\n        \"type\": \"automatic\"\n    }\n}"}],"_postman_id":"74020656-c331-45d6-a621-6d198af40093"},{"name":"Get Diamond Pricing","id":"9f6e602e-9c81-4b92-ad03-784cd50a3600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/diamond_pricing","description":"<p>In diamond pricing, factors such as clarity, color, shape, sieve size, and rate are defined to help determine diamond prices based on master groups. When creating a product and adding diamond details, any updates to a diamond combination will automatically adjust the prices of products that rely on that specific combination.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>Title for diamond combination</td>\n</tr>\n<tr>\n<td>clarities</td>\n<td>Yes</td>\n<td>Diamond clarities which are selected in business_settings</td>\n</tr>\n<tr>\n<td>colors</td>\n<td>Yes</td>\n<td>Will be a combination of all diamond colors which are selected in business_settings</td>\n</tr>\n<tr>\n<td>shapes</td>\n<td>Yes</td>\n<td>Diamond shapes which are selected in business settings</td>\n</tr>\n<tr>\n<td>sieves</td>\n<td>Yes</td>\n<td>Will include the details which are created in diamond groups. label will be diamond group title and value will be diamond group id.</td>\n</tr>\n<tr>\n<td>cuts</td>\n<td>No</td>\n<td>Diamond cuts which are selected in business_settings</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Yes</td>\n<td>Diamond types which are selected in business_settings</td>\n</tr>\n<tr>\n<td>rate</td>\n<td>Yes</td>\n<td>Rate of this combination, so if the values match with product diamond details, this rate will be applied</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","diamond_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"4b858f8c-f797-40aa-8c57-08e5a8b9d083","name":"Get Diamond pricing","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/diamond_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": [\n            {\n                \"id\": 1702801588,\n                \"clarities\": [\n                    {\n                        \"label\": \"VS2\",\n                        \"value\": \"VS2\"\n                    },\n                    {\n                        \"label\": \"diamond\",\n                        \"value\": \"diamond\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"DE\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"BLACK\",\n                        \"value\": \"BLACK\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"value\": \"pear\",\n                        \"label\": \"Pear\"\n                    }\n                ],\n                \"sieves\": [\n                    {\n                        \"label\": \"Pear\",\n                        \"value\": \"1671627705_C8cbl\"\n                    }\n                ],\n                \"sieve_from\": \"\",\n                \"sieve_to\": \"\",\n                \"sieve_type\": \"\",\n                \"cuts\": [\n                    {\n                        \"label\": \"Excellent\",\n                        \"value\": \"excellent\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Natural\",\n                        \"value\": \"natural\"\n                    }\n                ],\n                \"rate\": \"99000\",\n                \"title\": \"Diamond Combination #4\"\n            },\n            {\n                \"id\": 1714807433,\n                \"clarities\": [\n                    {\n                        \"label\": \"VS2\",\n                        \"value\": \"VS2\"\n                    },\n                    {\n                        \"label\": \"VVS\",\n                        \"value\": \"VVS\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"DE\",\n                        \"value\": \"DE\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"value\": \"princess\",\n                        \"label\": \"Princess\"\n                    }\n                ],\n                \"sieves\": [\n                    {\n                        \"label\": \"Princess\",\n                        \"value\": \"1671627672_0ytnJ\"\n                    }\n                ],\n                \"sieve_from\": \"\",\n                \"sieve_to\": \"\",\n                \"sieve_type\": \"\",\n                \"cuts\": [\n                    {\n                        \"label\": \"Excellent\",\n                        \"value\": \"excellent\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Natural\",\n                        \"value\": \"natural\"\n                    },\n                    {\n                        \"label\": \"Lab Grown\",\n                        \"value\": \"lab_grown\"\n                    }\n                ],\n                \"rate\": \"40000\",\n                \"title\": \"Diamond Combination #2\"\n            },\n            {\n                \"id\": 1714825705,\n                \"clarities\": [\n                    {\n                        \"label\": \"VS2\",\n                        \"value\": \"VS2\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"DE\",\n                        \"value\": \"DE\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"value\": \"princess\",\n                        \"label\": \"Princess\"\n                    }\n                ],\n                \"sieves\": [\n                    {\n                        \"label\": \"prnc\",\n                        \"value\": \"1714541625_jk4c1\"\n                    }\n                ],\n                \"sieve_from\": \"\",\n                \"sieve_to\": \"\",\n                \"sieve_type\": \"\",\n                \"cuts\": [\n                    {\n                        \"label\": \"Very Good\",\n                        \"value\": \"very_good\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Lab Grown\",\n                        \"value\": \"lab_grown\"\n                    }\n                ],\n                \"rate\": \"10000\",\n                \"title\": \"Diamond Combination #3\"\n            }\n        ],\n        \"USD\": [],\n        \"EUR\": [],\n        \"GBP\": [],\n        \"AUD\": [],\n        \"AED\": [],\n        \"SGD\": [],\n        \"SAR\": [],\n        \"ZAR\": [],\n        \"CAD\": [],\n        \"JPY\": [],\n        \"CNY\": [],\n        \"VND\": [],\n        \"THB\": [],\n        \"KWD\": []\n    }\n}"}],"_postman_id":"9f6e602e-9c81-4b92-ad03-784cd50a3600"},{"name":"Update Diamond Pricing","id":"26618689-427f-4be3-9f4c-3ae2e4e9c5eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"INR\": [\r\n        {\r\n            \"id\": 1702801588,\r\n            \"clarities\": [\r\n                {\r\n                    \"label\": \"VS2\",\r\n                    \"value\": \"VS2\"\r\n                },\r\n                {\r\n                    \"label\": \"diamond\",\r\n                    \"value\": \"diamond\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"DE\",\r\n                    \"value\": \"DE\"\r\n                },\r\n                {\r\n                    \"label\": \"BLACK\",\r\n                    \"value\": \"BLACK\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"value\": \"pear\",\r\n                    \"label\": \"Pear\"\r\n                }\r\n            ],\r\n            \"sieves\": [\r\n                {\r\n                    \"label\": \"Pear\",\r\n                    \"value\": \"1671627705_C8cbl\"\r\n                }\r\n            ],\r\n            \"sieve_from\": \"\",\r\n            \"sieve_to\": \"\",\r\n            \"sieve_type\": \"\",\r\n            \"cuts\": [\r\n                {\r\n                    \"label\": \"Excellent\",\r\n                    \"value\": \"excellent\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Natural\",\r\n                    \"value\": \"natural\"\r\n                }\r\n            ],\r\n            \"rate\": \"99000\",\r\n            \"title\": \"Diamond Combination #4\"\r\n        },\r\n        {\r\n            \"id\": 1714807433,\r\n            \"clarities\": [\r\n                {\r\n                    \"label\": \"VS2\",\r\n                    \"value\": \"VS2\"\r\n                },\r\n                {\r\n                    \"label\": \"VVS\",\r\n                    \"value\": \"VVS\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"DE\",\r\n                    \"value\": \"DE\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"value\": \"princess\",\r\n                    \"label\": \"Princess\"\r\n                }\r\n            ],\r\n            \"sieves\": [\r\n                {\r\n                    \"label\": \"Princess\",\r\n                    \"value\": \"1671627672_0ytnJ\"\r\n                }\r\n            ],\r\n            \"sieve_from\": \"\",\r\n            \"sieve_to\": \"\",\r\n            \"sieve_type\": \"\",\r\n            \"cuts\": [\r\n                {\r\n                    \"label\": \"Excellent\",\r\n                    \"value\": \"excellent\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Natural\",\r\n                    \"value\": \"natural\"\r\n                },\r\n                {\r\n                    \"label\": \"Lab Grown\",\r\n                    \"value\": \"lab_grown\"\r\n                }\r\n            ],\r\n            \"rate\": \"40000\",\r\n            \"title\": \"Diamond Combination #2\"\r\n        },\r\n        {\r\n            \"id\": 1714825705,\r\n            \"clarities\": [\r\n                {\r\n                    \"label\": \"VS2\",\r\n                    \"value\": \"VS2\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"DE\",\r\n                    \"value\": \"DE\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"value\": \"princess\",\r\n                    \"label\": \"Princess\"\r\n                }\r\n            ],\r\n            \"sieves\": [\r\n                {\r\n                    \"label\": \"prnc\",\r\n                    \"value\": \"1714541625_jk4c1\"\r\n                }\r\n            ],\r\n            \"sieve_from\": \"\",\r\n            \"sieve_to\": \"\",\r\n            \"sieve_type\": \"\",\r\n            \"cuts\": [\r\n                {\r\n                    \"label\": \"Very Good\",\r\n                    \"value\": \"very_good\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Lab Grown\",\r\n                    \"value\": \"lab_grown\"\r\n                }\r\n            ],\r\n            \"rate\": \"10000\",\r\n            \"title\": \"Diamond Combination #3\"\r\n        }\r\n    ],\r\n    \"USD\": [],\r\n    \"EUR\": [],\r\n    \"GBP\": [],\r\n    \"AUD\": [],\r\n    \"AED\": [],\r\n    \"SGD\": [],\r\n    \"SAR\": [],\r\n    \"ZAR\": [],\r\n    \"CAD\": [],\r\n    \"JPY\": [],\r\n    \"CNY\": [],\r\n    \"VND\": [],\r\n    \"THB\": [],\r\n    \"KWD\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/diamond_pricing","description":"<p>In diamond pricing, factors such as clarity, color, shape, sieve size, and rate are defined to help determine diamond prices based on master groups. When creating a product and adding diamond details, any updates to a diamond combination will automatically adjust the prices of products that rely on that specific combination.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>Title for diamond combination</td>\n</tr>\n<tr>\n<td>clarities</td>\n<td>Yes</td>\n<td>Diamond clarities which are selected in business_settings</td>\n</tr>\n<tr>\n<td>colors</td>\n<td>Yes</td>\n<td>Will be a combination of all diamond colors which are selected in business_settings</td>\n</tr>\n<tr>\n<td>shapes</td>\n<td>Yes</td>\n<td>Diamond shapes which are selected in business settings</td>\n</tr>\n<tr>\n<td>sieves</td>\n<td>Yes</td>\n<td>Will include the details which are created in diamond groups. label will be diamond group title and value will be diamond group id.</td>\n</tr>\n<tr>\n<td>cuts</td>\n<td>No</td>\n<td>Diamond cuts which are selected in business_settings</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Yes</td>\n<td>Diamond types which are selected in business_settings</td>\n</tr>\n<tr>\n<td>rate</td>\n<td>Yes</td>\n<td>Rate of this combination, so if the values match with product diamond details, this rate will be applied</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","diamond_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"3bf4c4d8-3d1c-48ee-a435-84f5205a9d91","name":"Update Diamond Pricing","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"INR\": [\r\n        {\r\n            \"id\": 1702801588,\r\n            \"clarities\": [\r\n                {\r\n                    \"label\": \"VS2\",\r\n                    \"value\": \"VS2\"\r\n                },\r\n                {\r\n                    \"label\": \"diamond\",\r\n                    \"value\": \"diamond\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"DE\",\r\n                    \"value\": \"DE\"\r\n                },\r\n                {\r\n                    \"label\": \"BLACK\",\r\n                    \"value\": \"BLACK\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"value\": \"pear\",\r\n                    \"label\": \"Pear\"\r\n                }\r\n            ],\r\n            \"sieves\": [\r\n                {\r\n                    \"label\": \"Pear\",\r\n                    \"value\": \"1671627705_C8cbl\"\r\n                }\r\n            ],\r\n            \"sieve_from\": \"\",\r\n            \"sieve_to\": \"\",\r\n            \"sieve_type\": \"\",\r\n            \"cuts\": [\r\n                {\r\n                    \"label\": \"Excellent\",\r\n                    \"value\": \"excellent\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Natural\",\r\n                    \"value\": \"natural\"\r\n                }\r\n            ],\r\n            \"rate\": \"99000\",\r\n            \"title\": \"Diamond Combination #4\"\r\n        },\r\n        {\r\n            \"id\": 1714807433,\r\n            \"clarities\": [\r\n                {\r\n                    \"label\": \"VS2\",\r\n                    \"value\": \"VS2\"\r\n                },\r\n                {\r\n                    \"label\": \"VVS\",\r\n                    \"value\": \"VVS\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"DE\",\r\n                    \"value\": \"DE\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"value\": \"princess\",\r\n                    \"label\": \"Princess\"\r\n                }\r\n            ],\r\n            \"sieves\": [\r\n                {\r\n                    \"label\": \"Princess\",\r\n                    \"value\": \"1671627672_0ytnJ\"\r\n                }\r\n            ],\r\n            \"sieve_from\": \"\",\r\n            \"sieve_to\": \"\",\r\n            \"sieve_type\": \"\",\r\n            \"cuts\": [\r\n                {\r\n                    \"label\": \"Excellent\",\r\n                    \"value\": \"excellent\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Natural\",\r\n                    \"value\": \"natural\"\r\n                },\r\n                {\r\n                    \"label\": \"Lab Grown\",\r\n                    \"value\": \"lab_grown\"\r\n                }\r\n            ],\r\n            \"rate\": \"40000\",\r\n            \"title\": \"Diamond Combination #2\"\r\n        },\r\n        {\r\n            \"id\": 1714825705,\r\n            \"clarities\": [\r\n                {\r\n                    \"label\": \"VS2\",\r\n                    \"value\": \"VS2\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"DE\",\r\n                    \"value\": \"DE\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"value\": \"princess\",\r\n                    \"label\": \"Princess\"\r\n                }\r\n            ],\r\n            \"sieves\": [\r\n                {\r\n                    \"label\": \"prnc\",\r\n                    \"value\": \"1714541625_jk4c1\"\r\n                }\r\n            ],\r\n            \"sieve_from\": \"\",\r\n            \"sieve_to\": \"\",\r\n            \"sieve_type\": \"\",\r\n            \"cuts\": [\r\n                {\r\n                    \"label\": \"Very Good\",\r\n                    \"value\": \"very_good\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Lab Grown\",\r\n                    \"value\": \"lab_grown\"\r\n                }\r\n            ],\r\n            \"rate\": \"10000\",\r\n            \"title\": \"Diamond Combination #3\"\r\n        }\r\n    ],\r\n    \"USD\": [],\r\n    \"EUR\": [],\r\n    \"GBP\": [],\r\n    \"AUD\": [],\r\n    \"AED\": [],\r\n    \"SGD\": [],\r\n    \"SAR\": [],\r\n    \"ZAR\": [],\r\n    \"CAD\": [],\r\n    \"JPY\": [],\r\n    \"CNY\": [],\r\n    \"VND\": [],\r\n    \"THB\": [],\r\n    \"KWD\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/diamond_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": [\n            {\n                \"id\": 1702801588,\n                \"clarities\": [\n                    {\n                        \"label\": \"VS2\",\n                        \"value\": \"VS2\"\n                    },\n                    {\n                        \"label\": \"diamond\",\n                        \"value\": \"diamond\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"DE\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"BLACK\",\n                        \"value\": \"BLACK\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"value\": \"pear\",\n                        \"label\": \"Pear\"\n                    }\n                ],\n                \"sieves\": [\n                    {\n                        \"label\": \"Pear\",\n                        \"value\": \"1671627705_C8cbl\"\n                    }\n                ],\n                \"sieve_from\": \"\",\n                \"sieve_to\": \"\",\n                \"sieve_type\": \"\",\n                \"cuts\": [\n                    {\n                        \"label\": \"Excellent\",\n                        \"value\": \"excellent\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Natural\",\n                        \"value\": \"natural\"\n                    }\n                ],\n                \"rate\": \"99000\",\n                \"title\": \"Diamond Combination #4\"\n            },\n            {\n                \"id\": 1714807433,\n                \"clarities\": [\n                    {\n                        \"label\": \"VS2\",\n                        \"value\": \"VS2\"\n                    },\n                    {\n                        \"label\": \"VVS\",\n                        \"value\": \"VVS\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"DE\",\n                        \"value\": \"DE\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"value\": \"princess\",\n                        \"label\": \"Princess\"\n                    }\n                ],\n                \"sieves\": [\n                    {\n                        \"label\": \"Princess\",\n                        \"value\": \"1671627672_0ytnJ\"\n                    }\n                ],\n                \"sieve_from\": \"\",\n                \"sieve_to\": \"\",\n                \"sieve_type\": \"\",\n                \"cuts\": [\n                    {\n                        \"label\": \"Excellent\",\n                        \"value\": \"excellent\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Natural\",\n                        \"value\": \"natural\"\n                    },\n                    {\n                        \"label\": \"Lab Grown\",\n                        \"value\": \"lab_grown\"\n                    }\n                ],\n                \"rate\": \"40000\",\n                \"title\": \"Diamond Combination #2\"\n            },\n            {\n                \"id\": 1714825705,\n                \"clarities\": [\n                    {\n                        \"label\": \"VS2\",\n                        \"value\": \"VS2\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"DE\",\n                        \"value\": \"DE\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"value\": \"princess\",\n                        \"label\": \"Princess\"\n                    }\n                ],\n                \"sieves\": [\n                    {\n                        \"label\": \"prnc\",\n                        \"value\": \"1714541625_jk4c1\"\n                    }\n                ],\n                \"sieve_from\": \"\",\n                \"sieve_to\": \"\",\n                \"sieve_type\": \"\",\n                \"cuts\": [\n                    {\n                        \"label\": \"Very Good\",\n                        \"value\": \"very_good\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Lab Grown\",\n                        \"value\": \"lab_grown\"\n                    }\n                ],\n                \"rate\": \"10000\",\n                \"title\": \"Diamond Combination #3\"\n            }\n        ],\n        \"USD\": [],\n        \"EUR\": [],\n        \"GBP\": [],\n        \"AUD\": [],\n        \"AED\": [],\n        \"SGD\": [],\n        \"SAR\": [],\n        \"ZAR\": [],\n        \"CAD\": [],\n        \"JPY\": [],\n        \"CNY\": [],\n        \"VND\": [],\n        \"THB\": [],\n        \"KWD\": []\n    }\n}"}],"_postman_id":"26618689-427f-4be3-9f4c-3ae2e4e9c5eb"},{"name":"Get Gemstone Pricing","id":"a358cd7a-666e-4814-acad-09d6998e8a76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/gemstone_pricing","description":"<p>In gemstone pricing, factors such as quality, type, shape, size, and rate are defined to determine prices based on master groups. When you create a product and add gemstone details, any updates to a gemstone combination will automatically update the prices of products that depend on that specific combination.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>Title for gemstone combination</td>\n</tr>\n<tr>\n<td>qualities</td>\n<td>Yes</td>\n<td>Gemstone qualities selected in business settings (e.g., \"precious\", \"semi-precious\")</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Yes</td>\n<td>Gemstone types selected in business settings (e.g., \"ruby\", \"emerald\", \"sapphire\")</td>\n</tr>\n<tr>\n<td>shapes</td>\n<td>Yes</td>\n<td>Gemstone shapes selected in business settings (e.g., \"round\", \"oval\", \"square\")</td>\n</tr>\n<tr>\n<td>sizes</td>\n<td>Yes</td>\n<td>Gemstone sizes selected in business settings (size in mm or carats)</td>\n</tr>\n<tr>\n<td>rate</td>\n<td>Yes</td>\n<td>Rate of this combination, so if the values match with product gemstone details, this rate will be applied</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","gemstone_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"c3341f25-084f-4375-8260-9b8655fa536a","name":"Get Gemstone pricing","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/masters/gemstone_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": [\n            {\n                \"id\": 1701930517,\n                \"title\": \"Gemstone Combinatino #2\",\n                \"qualities\": [\n                    {\n                        \"label\": \"Kundan\",\n                        \"value\": \"kundan\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Sapphire\",\n                        \"value\": \"sapphire\"\n                    },\n                    {\n                        \"label\": \"Ruby\",\n                        \"value\": \"ruby\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"label\": \"Pear\",\n                        \"value\": \"pear\"\n                    },\n                    {\n                        \"label\": \"Round\",\n                        \"value\": \"round\"\n                    },\n                    {\n                        \"label\": \"Emerald\",\n                        \"value\": \"emerald\"\n                    }\n                ],\n                \"sizes\": [\n                    {\n                        \"label\": \"8 x 5\",\n                        \"value\": \"8 x 5\"\n                    },\n                    {\n                        \"label\": \"11 x 7\",\n                        \"value\": \"11 x 7\"\n                    }\n                ],\n                \"rate\": \"23000\"\n            },\n            {\n                \"id\": 1714818945,\n                \"title\": \"Gemstone Combination #2\",\n                \"qualities\": [\n                    {\n                        \"label\": \"Precious\",\n                        \"value\": \"precious\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Ruby\",\n                        \"value\": \"ruby\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"label\": \"Square\",\n                        \"value\": \"square\"\n                    }\n                ],\n                \"sizes\": [\n                    {\n                        \"label\": \"7\",\n                        \"value\": \"7\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"Golden\",\n                        \"value\": \"golden\"\n                    }\n                ],\n                \"rate\": \"7900\"\n            },\n            {\n                \"id\": 1718792613,\n                \"title\": \"Gemstone Combination #3\",\n                \"qualities\": [\n                    {\n                        \"label\": \"Kundan\",\n                        \"value\": \"kundan\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Ruby\",\n                        \"value\": \"ruby\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"label\": \"Round\",\n                        \"value\": \"round\"\n                    }\n                ],\n                \"sizes\": [\n                    {\n                        \"label\": \"5.5\",\n                        \"value\": \"5.5\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"Ash Grey\",\n                        \"value\": \"ash-grey\"\n                    }\n                ],\n                \"rate\": \"34000\"\n            }\n        ],\n        \"USD\": [],\n        \"EUR\": [],\n        \"GBP\": [],\n        \"AUD\": [],\n        \"AED\": [],\n        \"SGD\": [],\n        \"SAR\": [],\n        \"ZAR\": [],\n        \"CAD\": [],\n        \"JPY\": [],\n        \"CNY\": [],\n        \"VND\": [],\n        \"THB\": [],\n        \"KWD\": []\n    }\n}"}],"_postman_id":"a358cd7a-666e-4814-acad-09d6998e8a76"},{"name":"Update Gemstone Pricing","id":"ef813921-f858-4cb4-8b8f-f12038a9ad68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"add_your_apikey"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"INR\": [\r\n        {\r\n            \"id\": 1701930517,\r\n            \"title\": \"Gemstone Combinatino #2\",\r\n            \"qualities\": [\r\n                {\r\n                    \"label\": \"Kundan\",\r\n                    \"value\": \"kundan\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Sapphire\",\r\n                    \"value\": \"sapphire\"\r\n                },\r\n                {\r\n                    \"label\": \"Ruby\",\r\n                    \"value\": \"ruby\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"label\": \"Pear\",\r\n                    \"value\": \"pear\"\r\n                },\r\n                {\r\n                    \"label\": \"Round\",\r\n                    \"value\": \"round\"\r\n                },\r\n                {\r\n                    \"label\": \"Emerald\",\r\n                    \"value\": \"emerald\"\r\n                }\r\n            ],\r\n            \"sizes\": [\r\n                {\r\n                    \"label\": \"8 x 5\",\r\n                    \"value\": \"8 x 5\"\r\n                },\r\n                {\r\n                    \"label\": \"11 x 7\",\r\n                    \"value\": \"11 x 7\"\r\n                }\r\n            ],\r\n            \"rate\": \"23000\"\r\n        },\r\n        {\r\n            \"id\": 1714818945,\r\n            \"title\": \"Gemstone Combination #2\",\r\n            \"qualities\": [\r\n                {\r\n                    \"label\": \"Precious\",\r\n                    \"value\": \"precious\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Ruby\",\r\n                    \"value\": \"ruby\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"label\": \"Square\",\r\n                    \"value\": \"square\"\r\n                }\r\n            ],\r\n            \"sizes\": [\r\n                {\r\n                    \"label\": \"7\",\r\n                    \"value\": \"7\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"Golden\",\r\n                    \"value\": \"golden\"\r\n                }\r\n            ],\r\n            \"rate\": \"7900\"\r\n        },\r\n        {\r\n            \"id\": 1718792613,\r\n            \"title\": \"Gemstone Combination #3\",\r\n            \"qualities\": [\r\n                {\r\n                    \"label\": \"Kundan\",\r\n                    \"value\": \"kundan\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Ruby\",\r\n                    \"value\": \"ruby\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"label\": \"Round\",\r\n                    \"value\": \"round\"\r\n                }\r\n            ],\r\n            \"sizes\": [\r\n                {\r\n                    \"label\": \"5.5\",\r\n                    \"value\": \"5.5\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"Ash Grey\",\r\n                    \"value\": \"ash-grey\"\r\n                }\r\n            ],\r\n            \"rate\": \"34000\"\r\n        }\r\n    ],\r\n    \"USD\": [],\r\n    \"EUR\": [],\r\n    \"GBP\": [],\r\n    \"AUD\": [],\r\n    \"AED\": [],\r\n    \"SGD\": [],\r\n    \"SAR\": [],\r\n    \"ZAR\": [],\r\n    \"CAD\": [],\r\n    \"JPY\": [],\r\n    \"CNY\": [],\r\n    \"VND\": [],\r\n    \"THB\": [],\r\n    \"KWD\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/gemstone_pricing","description":"<p>In gemstone pricing, factors such as quality, type, shape, size, and rate are defined to determine prices based on master groups. When you create a product and add gemstone details, any updates to a gemstone combination will automatically update the prices of products that depend on that specific combination.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>Title for gemstone combination</td>\n</tr>\n<tr>\n<td>qualities</td>\n<td>Yes</td>\n<td>Gemstone qualities selected in business settings (e.g., \"precious\", \"semi-precious\")</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Yes</td>\n<td>Gemstone types selected in business settings (e.g., \"ruby\", \"emerald\", \"sapphire\")</td>\n</tr>\n<tr>\n<td>shapes</td>\n<td>Yes</td>\n<td>Gemstone shapes selected in business settings (e.g., \"round\", \"oval\", \"square\")</td>\n</tr>\n<tr>\n<td>sizes</td>\n<td>Yes</td>\n<td>Gemstone sizes selected in business settings (size in mm or carats)</td>\n</tr>\n<tr>\n<td>rate</td>\n<td>Yes</td>\n<td>Rate of this combination, so if the values match with product gemstone details, this rate will be applied</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","masters","gemstone_pricing"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"6b1f0946-60c5-474b-bc3c-11f470894118","name":"Update Gemstone pricing","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"INR\": [\r\n        {\r\n            \"id\": 1701930517,\r\n            \"title\": \"Gemstone Combinatino #2\",\r\n            \"qualities\": [\r\n                {\r\n                    \"label\": \"Kundan\",\r\n                    \"value\": \"kundan\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Sapphire\",\r\n                    \"value\": \"sapphire\"\r\n                },\r\n                {\r\n                    \"label\": \"Ruby\",\r\n                    \"value\": \"ruby\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"label\": \"Pear\",\r\n                    \"value\": \"pear\"\r\n                },\r\n                {\r\n                    \"label\": \"Round\",\r\n                    \"value\": \"round\"\r\n                },\r\n                {\r\n                    \"label\": \"Emerald\",\r\n                    \"value\": \"emerald\"\r\n                }\r\n            ],\r\n            \"sizes\": [\r\n                {\r\n                    \"label\": \"8 x 5\",\r\n                    \"value\": \"8 x 5\"\r\n                },\r\n                {\r\n                    \"label\": \"11 x 7\",\r\n                    \"value\": \"11 x 7\"\r\n                }\r\n            ],\r\n            \"rate\": \"23000\"\r\n        },\r\n        {\r\n            \"id\": 1714818945,\r\n            \"title\": \"Gemstone Combination #2\",\r\n            \"qualities\": [\r\n                {\r\n                    \"label\": \"Precious\",\r\n                    \"value\": \"precious\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Ruby\",\r\n                    \"value\": \"ruby\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"label\": \"Square\",\r\n                    \"value\": \"square\"\r\n                }\r\n            ],\r\n            \"sizes\": [\r\n                {\r\n                    \"label\": \"7\",\r\n                    \"value\": \"7\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"Golden\",\r\n                    \"value\": \"golden\"\r\n                }\r\n            ],\r\n            \"rate\": \"7900\"\r\n        },\r\n        {\r\n            \"id\": 1718792613,\r\n            \"title\": \"Gemstone Combination #3\",\r\n            \"qualities\": [\r\n                {\r\n                    \"label\": \"Kundan\",\r\n                    \"value\": \"kundan\"\r\n                }\r\n            ],\r\n            \"types\": [\r\n                {\r\n                    \"label\": \"Ruby\",\r\n                    \"value\": \"ruby\"\r\n                }\r\n            ],\r\n            \"shapes\": [\r\n                {\r\n                    \"label\": \"Round\",\r\n                    \"value\": \"round\"\r\n                }\r\n            ],\r\n            \"sizes\": [\r\n                {\r\n                    \"label\": \"5.5\",\r\n                    \"value\": \"5.5\"\r\n                }\r\n            ],\r\n            \"colors\": [\r\n                {\r\n                    \"label\": \"Ash Grey\",\r\n                    \"value\": \"ash-grey\"\r\n                }\r\n            ],\r\n            \"rate\": \"34000\"\r\n        }\r\n    ],\r\n    \"USD\": [],\r\n    \"EUR\": [],\r\n    \"GBP\": [],\r\n    \"AUD\": [],\r\n    \"AED\": [],\r\n    \"SGD\": [],\r\n    \"SAR\": [],\r\n    \"ZAR\": [],\r\n    \"CAD\": [],\r\n    \"JPY\": [],\r\n    \"CNY\": [],\r\n    \"VND\": [],\r\n    \"THB\": [],\r\n    \"KWD\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/masters/gemstone_pricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"INR\": [\n            {\n                \"id\": 1701930517,\n                \"title\": \"Gemstone Combinatino #2\",\n                \"qualities\": [\n                    {\n                        \"label\": \"Kundan\",\n                        \"value\": \"kundan\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Sapphire\",\n                        \"value\": \"sapphire\"\n                    },\n                    {\n                        \"label\": \"Ruby\",\n                        \"value\": \"ruby\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"label\": \"Pear\",\n                        \"value\": \"pear\"\n                    },\n                    {\n                        \"label\": \"Round\",\n                        \"value\": \"round\"\n                    },\n                    {\n                        \"label\": \"Emerald\",\n                        \"value\": \"emerald\"\n                    }\n                ],\n                \"sizes\": [\n                    {\n                        \"label\": \"8 x 5\",\n                        \"value\": \"8 x 5\"\n                    },\n                    {\n                        \"label\": \"11 x 7\",\n                        \"value\": \"11 x 7\"\n                    }\n                ],\n                \"rate\": \"23000\"\n            },\n            {\n                \"id\": 1714818945,\n                \"title\": \"Gemstone Combination #2\",\n                \"qualities\": [\n                    {\n                        \"label\": \"Precious\",\n                        \"value\": \"precious\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Ruby\",\n                        \"value\": \"ruby\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"label\": \"Square\",\n                        \"value\": \"square\"\n                    }\n                ],\n                \"sizes\": [\n                    {\n                        \"label\": \"7\",\n                        \"value\": \"7\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"Golden\",\n                        \"value\": \"golden\"\n                    }\n                ],\n                \"rate\": \"7900\"\n            },\n            {\n                \"id\": 1718792613,\n                \"title\": \"Gemstone Combination #3\",\n                \"qualities\": [\n                    {\n                        \"label\": \"Kundan\",\n                        \"value\": \"kundan\"\n                    }\n                ],\n                \"types\": [\n                    {\n                        \"label\": \"Ruby\",\n                        \"value\": \"ruby\"\n                    }\n                ],\n                \"shapes\": [\n                    {\n                        \"label\": \"Round\",\n                        \"value\": \"round\"\n                    }\n                ],\n                \"sizes\": [\n                    {\n                        \"label\": \"5.5\",\n                        \"value\": \"5.5\"\n                    }\n                ],\n                \"colors\": [\n                    {\n                        \"label\": \"Ash Grey\",\n                        \"value\": \"ash-grey\"\n                    }\n                ],\n                \"rate\": \"34000\"\n            }\n        ],\n        \"USD\": [],\n        \"EUR\": [],\n        \"GBP\": [],\n        \"AUD\": [],\n        \"AED\": [],\n        \"SGD\": [],\n        \"SAR\": [],\n        \"ZAR\": [],\n        \"CAD\": [],\n        \"JPY\": [],\n        \"CNY\": [],\n        \"VND\": [],\n        \"THB\": [],\n        \"KWD\": []\n    }\n}"}],"_postman_id":"ef813921-f858-4cb4-8b8f-f12038a9ad68"}],"id":"7b85144f-1d0a-4d0b-8ab2-4aa0b3138378","_postman_id":"7b85144f-1d0a-4d0b-8ab2-4aa0b3138378","description":""},{"name":"Orders","item":[{"name":"Create Order","id":"e9c94dce-fee8-4a02-ab1e-93b65cab2be6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transaction_id\": \"0343244343334038775530030\",\n    \"payment_method\": \"Credit Card\",\n    \"date_created\": \"2024-10-05T12:52:16.136Z\",\n    \"contact_id\": 23234,\n    \"customer_info\": {\n        \"first_name\": \"Pushpa\",\n        \"last_name\": \"Mali\",\n        \"whatsapp\": \"42342343242\",\n        \"dialcode_whatsapp\": \"91\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile\": \"42342343242\",// either email or mobile is required\n        \"dialcode_mobile\": \"91\"\n    },\n    \"type\": \"product\",\n    \"status\": \"completed\",\n    \"currency\": \"INR\",\n    \"amount\": 1000,\n    \"sub_total\": 1000,\n    \"total_tax\": 0.0,\n    \"discount_total\": 0.0,\n    \"billing\": {\n        \"address_line1\": \"line 10\",\n        \"address_line2\": \"line 20\",\n        \"city\": \"mumbai\",\n        \"state\": \"Maharashtra\",\n        \"post_code\": 41258,\n        \"state_code\": \"\",\n        \"district\": \"mumbai\",\n        \"country\": \"India\"\n    },\n    \"shipping\": {\n        \"address_line1\": \"line 10\",\n        \"address_line2\": \"line 20\",\n        \"city\": \"mumbai\",\n        \"state\": \"Maharashtra\",\n        \"post_code\": 41258,\n        \"state_code\": \"MH\",\n        \"district\": \"mumbai\",\n        \"country\": \"India\"\n    },\n    \"line_items\": [\n        {\n            \"sku\": \"test\",\n            \"subtotal\": \"1000\",\n            \"total\": \"1000\"\n        }\n    ],\n    \"meta_data\": {\n        \"invoice_url\": \"https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/orders","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_id</td>\n<td>Yes</td>\n<td>Unique transaction reference ID from payment gateway or ERP.</td>\n</tr>\n<tr>\n<td>payment_method</td>\n<td>Yes</td>\n<td>Payment method used (e.g., <code>Credit Card</code>, <code>UPI</code>, <code>Cash</code>).</td>\n</tr>\n<tr>\n<td>date_created</td>\n<td>Yes</td>\n<td>Transaction creation date in ISO 8601 format (<code>YYYY-MM-DDTHH:mm:ss.sssZ</code>).</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>No</td>\n<td>Existing contact ID if the customer already exists in the system.</td>\n</tr>\n<tr>\n<td>customer_info</td>\n<td>Yes</td>\n<td>Customer details object. See <strong>Customer Info Fields</strong> below.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Yes</td>\n<td>Type of transaction. Example: <code>product</code>, <code>digigold</code>.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Yes</td>\n<td>Transaction status (e.g., <code>pending</code>, <code>completed</code>, <code>failed</code>).</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>Yes</td>\n<td>Currency code (ISO 4217). Example: <code>INR</code>.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>No</td>\n<td>Final transaction amount after tax and discounts.</td>\n</tr>\n<tr>\n<td>sub_total</td>\n<td>No</td>\n<td>Subtotal amount before tax and discounts.</td>\n</tr>\n<tr>\n<td>total_tax</td>\n<td>No</td>\n<td>Total tax amount applied to the transaction.</td>\n</tr>\n<tr>\n<td>discount_total</td>\n<td>No</td>\n<td>Total discount amount applied.</td>\n</tr>\n<tr>\n<td>billing</td>\n<td>No</td>\n<td>Billing address object.</td>\n</tr>\n<tr>\n<td>shipping</td>\n<td>No</td>\n<td>Shipping address object.</td>\n</tr>\n<tr>\n<td>line_items</td>\n<td>Yes</td>\n<td>List of products or items in the transaction.</td>\n</tr>\n<tr>\n<td>meta_data</td>\n<td>No</td>\n<td>Custom metadata related to the transaction (key-value pairs).</td>\n</tr>\n</tbody>\n</table>\n</div><p>custome_info</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>first_name</td>\n<td>Yes</td>\n<td>Customer’s first name.</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>No</td>\n<td>Customer’s last name.</td>\n</tr>\n<tr>\n<td>whatsapp</td>\n<td>No</td>\n<td>WhatsApp number of the customer.</td>\n</tr>\n<tr>\n<td>dialcode_whatsapp</td>\n<td>Conditional</td>\n<td>Dial code for WhatsApp number (required if <code>whatsapp</code> is provided).</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Conditional</td>\n<td>Email address of the customer. Required if <code>mobile</code> is not provided.</td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>Conditional</td>\n<td>Mobile number of the customer. Required if <code>email</code> is not provided.</td>\n</tr>\n<tr>\n<td>dialcode_mobile</td>\n<td>Conditional</td>\n<td>Dial code for mobile number (required if <code>mobile</code> is provided).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","orders"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"6c41c915-782c-4403-b7d5-a786a2f2956d","name":"Create Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transaction_id\": \"0343244343334038775530030\",\n    \"payment_method\": \"Credit Card\",\n    \"date_created\": \"2024-10-05T12:52:16.136Z\",\n    \"customer_info\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"whatsapp\": \"42342343242\",\n        \"dialcode_whatsapp\": \"91\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile\": \"42342343242\",// either email or mobile is required\n        \"dialcode_mobile\": \"91\"\n    },\n    \"type\": \"product\",\n    \"status\": \"completed\",\n    \"currency\": \"INR\",\n    \"billing\": {\n        \"address_line1\": \"line 10\",\n        \"address_line2\": \"line 20\",\n        \"city\": \"mumbai\",\n        \"state\": \"Maharashtra\",\n        \"post_code\": 41258,\n        \"state_code\": \"\",\n        \"district\": \"mumbai\",\n        \"country\": \"India\"\n    },\n    \"shipping\": {\n        \"address_line1\": \"line 10\",\n        \"address_line2\": \"line 20\",\n        \"city\": \"mumbai\",\n        \"state\": \"Maharashtra\",\n        \"post_code\": 41258,\n        \"state_code\": \"MH\",\n        \"district\": \"mumbai\",\n        \"country\": \"India\"\n    },\n    \"line_items\": [\n        {\n            \"sku\": \"test\",\n            \"subtotal\": \"1000\",\n            \"total\": \"1000\"\n        }\n    ],\n    \"meta_data\": {\n        \"invoice_url\": \"https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/orders"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 8088,\n        \"transaction_id\": \"0343244343334038775530030\",\n        \"payment_method\": \"Credit Card\",\n        \"date_created\": \"2025-05-21T17:52:42\",\n        \"status\": \"completed\",\n        \"currency\": \"INR\",\n        \"billing\": {\n            \"city\": \"mumbai\",\n            \"state\": \"Maharashtra\",\n            \"country\": \"India\"\n        },\n        \"shipping\": {\n            \"city\": \"mumbai\",\n            \"state\": \"Maharashtra\",\n            \"country\": \"India\"\n        },\n        \"total_tax\": \"0.00\",\n        \"line_items\": [\n            {\n                \"id\": 880,\n                \"name\": \"Diamond Ring\",\n                \"product_id\": 7393,\n                \"variation_id\": 0,\n                \"quantity\": 1,\n                \"tax_class\": \"\",\n                \"subtotal\": \"29852.00\",\n                \"subtotal_tax\": \"0.00\",\n                \"total\": \"29852.00\",\n                \"total_tax\": \"0.00\",\n                \"taxes\": [],\n                \"meta_data\": [\n                    {\n                        \"id\": 7380,\n                        \"key\": \"_reduced_stock\",\n                        \"value\": \"1\",\n                        \"display_key\": \"_reduced_stock\",\n                        \"display_value\": \"1\"\n                    }\n                ],\n                \"sku\": \"Test\",\n                \"price\": 29852,\n                \"image\": {\n                    \"id\": \"7392\",\n                    \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/08/IMG_2831.jpeg\"\n                },\n                \"parent_name\": null\n            }\n        ],\n        \"meta_data\": {\n            \"invoice_url\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/orders/invoices/invoice_.pdf\"\n        }\n    }\n}"}],"_postman_id":"e9c94dce-fee8-4a02-ab1e-93b65cab2be6"},{"name":"Update Order","id":"73c57bde-961a-439e-8eb8-9da356b522e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <your_token>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"processing\",\n  \"meta_data\": {\n    \"updated_by\": \"admin\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/orders/8079","urlObject":{"protocol":"https","path":["v1","orders","8079"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"927540ca-e0f4-4c60-b078-00eb5d166d42","name":"Update Order","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <your_token>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"completed\",\n  \"meta_data\": {\n    \"updated_by\": \"admin\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/orders/8079"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": 8088,\n        \"transaction_id\": \"0343244343334038775530030\",\n        \"payment_method\": \"Credit Card\",\n        \"date_created\": \"2025-05-21T17:52:42\",\n        \"status\": \"completed\",\n        \"currency\": \"INR\",\n        \"billing\": {\n            \"city\": \"mumbai\",\n            \"state\": \"Maharashtra\",\n            \"country\": \"India\"\n        },\n        \"shipping\": {\n            \"city\": \"mumbai\",\n            \"state\": \"Maharashtra\",\n            \"country\": \"India\"\n        },\n        \"total_tax\": \"0.00\",\n        \"line_items\": [\n            {\n                \"id\": 880,\n                \"name\": \"Diamond Ring\",\n                \"product_id\": 7393,\n                \"variation_id\": 0,\n                \"quantity\": 1,\n                \"tax_class\": \"\",\n                \"subtotal\": \"29852.00\",\n                \"subtotal_tax\": \"0.00\",\n                \"total\": \"29852.00\",\n                \"total_tax\": \"0.00\",\n                \"taxes\": [],\n                \"meta_data\": [\n                    {\n                        \"id\": 7380,\n                        \"key\": \"_reduced_stock\",\n                        \"value\": \"1\",\n                        \"display_key\": \"_reduced_stock\",\n                        \"display_value\": \"1\"\n                    }\n                ],\n                \"sku\": \"Test\",\n                \"price\": 29852,\n                \"image\": {\n                    \"id\": \"7392\",\n                    \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2023/08/IMG_2831.jpeg\"\n                },\n                \"parent_name\": null\n            }\n        ],\n        \"meta_data\": {\n            \"invoice_url\": \"https://jwero-bucket.s3.ap-south-1.amazonaws.com/orders/invoices/invoice_.pdf\",\n            \"updated_by\": \"admin\"\n        }\n    }\n}"}],"_postman_id":"73c57bde-961a-439e-8eb8-9da356b522e7"},{"name":"Get Orders","id":"5dcf07e0-0dd7-4677-be8d-1d98b85e76c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/orders","urlObject":{"protocol":"https","path":["v1","orders"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"3d3f1274-c087-409c-9ac6-ffab25db69e1","name":"Get Orders","originalRequest":{"method":"GET","header":[],"url":"https://api.jwero.com/v1/orders"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 8078,\n            \"transaction_id\": \"\",\n            \"payment_method\": \"pos\",\n            \"date_created\": \"2025-05-20T19:43:21\",\n            \"status\": \"processing\",\n            \"currency\": \"INR\",\n            \"billing\": {\n                \"city\": \"\",\n                \"state\": \"\",\n                \"country\": \"\"\n            },\n            \"shipping\": {\n                \"city\": \"\",\n                \"state\": \"\",\n                \"country\": \"\"\n            },\n            \"total_tax\": \"0.00\",\n            \"line_items\": [\n                {\n                    \"id\": 871,\n                    \"name\": \"Test 1\",\n                    \"product_id\": 7554,\n                    \"variation_id\": 0,\n                    \"quantity\": 1,\n                    \"tax_class\": \"\",\n                    \"subtotal\": \"475.00\",\n                    \"subtotal_tax\": \"0.00\",\n                    \"total\": \"475.00\",\n                    \"total_tax\": \"0.00\",\n                    \"taxes\": [],\n                    \"meta_data\": [\n                        {\n                            \"id\": 7292,\n                            \"key\": \"_reduced_stock\",\n                            \"value\": \"1\",\n                            \"display_key\": \"_reduced_stock\",\n                            \"display_value\": \"1\"\n                        }\n                    ],\n                    \"sku\": \"Test 1\",\n                    \"price\": 475,\n                    \"image\": {\n                        \"id\": \"7504\",\n                        \"src\": \"https://jwero.jwero.com/wp-content/uploads/sites/623/2024/04/10-silver.jpg\"\n                    },\n                    \"parent_name\": null\n                }\n            ],\n            \"meta_data\": {\n                \"manual_payment\": \"yes\"\n            }\n        }\n    ]\n}"}],"_postman_id":"5dcf07e0-0dd7-4677-be8d-1d98b85e76c1"}],"id":"d0810213-a4bd-438e-898a-8b51c47623e5","_postman_id":"d0810213-a4bd-438e-898a-8b51c47623e5","description":""},{"name":"Digigold","item":[{"name":"Get Enrollment Details API","id":"65ce68f7-3bec-4392-b98c-c4d7c5a84869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"apikey","value":"add_your_apikey","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"digigold_enrollment_id\": 1542,\r\n    \"mobile_number\": 9004864527\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/digigold/enrollment/status","description":"<h3 id=\"description\">Description</h3>\n<p>Fetches <strong>current enrollment status</strong>, <strong>payment summary</strong>, <strong>gold accumulation</strong>, <strong>benefits</strong>, and <strong>withdrawals</strong>.</p>\n<h4 id=\"request-body\"><strong>Request Body</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"digigold_enrollment_id\": 1542,\n  \"mobile_number\": 9004864527\n}\n\n</code></pre>\n<p>Either <code>digigold_enrollment_id</code> or <code>mobile_number</code> is required.</p>\n<p>If multiple enrollments exist for a mobile number, <code>digigold_enrollment_id</code> is mandatory.</p>\n<h4 id=\"response-body\">RESPONSE BODY</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": {\n        \"contact_id\": 10072,\n        \"digigold_enrollment_id\": 1542,\n        \"status\": \"matured\",\n        \"can_redeem\": true,\n        \"amount_paid\": \"2000.000\",\n        \"gold_accumulated\": 0.204,\n        \"total_benefit\": null,\n        \"benefit_withdrawn\": null,\n        \"benefits\": [\n            {\n                \"benefit\": [\n                    {\n                        \"name\": \"Bonus Rule 2\",\n                        \"type\": \"monthly\",\n                        \"amount\": 1000,\n                        \"month\": 1\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"15\",\n                        \"jewellery\": \"gold\"\n                    },\n                    {\n                        \"op\": \"OR\",\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10\",\n                        \"jewellery\": \"diamond\"\n                    }\n                ],\n                \"op\": \"OR\",\n                \"priority\": 2\n            },\n            {\n                \"benefit\": [\n                    {\n                        \"name\": \"Bonus Rule 1\",\n                        \"type\": \"lumpsum\",\n                        \"amount\": \"100\"\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10\",\n                        \"jewellery\": \"gold\"\n                    }\n                ],\n                \"op\": \"AND\",\n                \"priority\": 1\n            }\n        ],\n        \"withdrawals\": [\n            {\n                \"type\": \"missed_payment\",\n                \"amount\": 1000,\n                \"month\": 2,\n                \"status\": \"paid\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>success</code></td>\n<td>boolean</td>\n<td>Indicates whether the API call was successful</td>\n</tr>\n<tr>\n<td><code>contact_id</code></td>\n<td>number</td>\n<td>Internal customer identifier</td>\n</tr>\n<tr>\n<td><code>digital_enrollment_id</code></td>\n<td>number</td>\n<td>DigiGold enrollment ID</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Enrollment status (<code>active</code>, <code>closed</code>, <code>cancelled</code>)</td>\n</tr>\n<tr>\n<td><code>can_redeem</code></td>\n<td>boolean</td>\n<td>Indicates whether redemption is currently allowed</td>\n</tr>\n<tr>\n<td><code>amount_paid</code></td>\n<td>number</td>\n<td>Total amount collected so far</td>\n</tr>\n<tr>\n<td><code>gold_accumulated</code></td>\n<td>number</td>\n<td>Total gold accumulated (in grams)</td>\n</tr>\n<tr>\n<td><code>total_benefit</code></td>\n<td>number</td>\n<td>null</td>\n</tr>\n<tr>\n<td><code>benefit_withdrawn</code></td>\n<td>number</td>\n<td>null</td>\n</tr>\n<tr>\n<td><code>benefits</code></td>\n<td>array</td>\n<td>List of applicable benefit rules</td>\n</tr>\n<tr>\n<td><code>withdrawals</code></td>\n<td>array</td>\n<td>List of withdrawals made against the enrollment</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","digigold","enrollment","status"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"9d058f77-3e7d-4c39-bbf4-232cb2fbe9b8","name":"Get Enrollment Details API","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"add_your_apikey","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"digigold_enrollment_id\": 1542,\r\n    \"mobile_number\": 9004864527\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/digigold/enrollment/status"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"","header":[{"key":"Content-Length","value":"79"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 02 Jan 2026 08:42:55 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4f-+tGYdGkkjjNvFk6rCctuJbecvEw\""},{"key":"Set-Cookie","value":"TiPMix=4.730283144502112; path=/; HttpOnly; Domain=api.jwero.com; Max-Age=3600; Secure; SameSite=None"},{"key":"Set-Cookie","value":"x-ms-routing-name=pre-prod; path=/; HttpOnly; Domain=api.jwero.com; Max-Age=3600; Secure; SameSite=None"},{"key":"Set-Cookie","value":"TiPMix=45.54271058531019; path=/; HttpOnly; Domain=api.jwero.com; Max-Age=3600"},{"key":"Set-Cookie","value":"x-ms-routing-name=pre-prod; path=/; HttpOnly; Domain=api.jwero.com; Max-Age=3600"},{"key":"request-context","value":"appId=cid-v1:"},{"key":"X-Powered-By","value":"Express"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"contact_id\": 10072,\n        \"digigold_enrollment_id\": 1542,\n        \"status\": \"matured\",\n        \"can_redeem\": true,\n        \"amount_paid\": \"2000.000\",\n        \"gold_accumulated\": 0.204,\n        \"total_benefit\": null,\n        \"benefit_withdrawn\": null,\n        \"benefits\": [\n            {\n                \"benefit\": [\n                    {\n                        \"name\": \"Bonus Rule 2\",\n                        \"type\": \"monthly\",\n                        \"amount\": 1000,\n                        \"month\": 1\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"15\",\n                        \"jewellery\": \"gold\"\n                    },\n                    {\n                        \"op\": \"OR\",\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10\",\n                        \"jewellery\": \"diamond\"\n                    }\n                ],\n                \"op\": \"OR\",\n                \"priority\": 2\n            },\n            {\n                \"benefit\": [\n                    {\n                        \"name\": \"Bonus Rule 1\",\n                        \"type\": \"lumpsum\",\n                        \"amount\": \"100\"\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10\",\n                        \"jewellery\": \"gold\"\n                    }\n                ],\n                \"op\": \"AND\",\n                \"priority\": 1\n            }\n        ],\n        \"withdrawals\": [\n            {\n                \"type\": \"missed_payment\",\n                \"amount\": 1000,\n                \"month\": 2,\n                \"status\": \"paid\"\n            }\n        ]\n    }\n}"}],"_postman_id":"65ce68f7-3bec-4392-b98c-c4d7c5a84869"},{"name":"Close plan API","id":"50b5639d-d7ca-4e1e-be70-ff997722772e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"apikey","value":"{{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"digigold_enrollment_id\": 1542,\r\n    \"closure_reason\": \"completed\",\r\n    \"closure_notes\": \"plan closed\",\r\n    \"invoice_date\": \"2025-12-23\",\r\n    \"invoice_number\": \"QSAWD12\",\r\n    \"closing_balance\": 200000,\r\n    \"additional_benefit\": 0,\r\n    \"deductions\": 0,\r\n    \"other_charges\": 0,\r\n    \"bank_charges\": 0,\r\n    \"customer_verified_otp\": true,\r\n    \"admin_verified_otp\": true,\r\n    \"claimed_benefits\": [\r\n        {\r\n            \"benefit\": [\r\n                {\r\n                    \"name\": \"Bonus Rule 2\",\r\n                    \"type\": \"monthly\",\r\n                    \"amount\": 1000,\r\n                    \"month\": 1\r\n                }\r\n            ],\r\n            \"redemptions\": [\r\n                {\r\n                    \"on\": \"value_addition\",\r\n                    \"type\": \"percentage\",\r\n                    \"value\": \"15\",\r\n                    \"jewellery\": \"gold\"\r\n                },\r\n                {\r\n                    \"op\": \"OR\",\r\n                    \"on\": \"value_addition\",\r\n                    \"type\": \"percentage\",\r\n                    \"value\": \"10\",\r\n                    \"jewellery\": \"diamond\"\r\n                }\r\n            ],\r\n            \"op\": \"OR\",\r\n            \"priority\": 2\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/digigold/close_plan","description":"<h3 id=\"description\">Description</h3>\n<p>Closes an active DigiGold enrollment</p>\n<h4 id=\"request-body\">Request Body</h4>\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>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>digigold_enrollment_id</code></td>\n<td>Yes</td>\n<td>Unique DigiGold enrollment identifier</td>\n</tr>\n<tr>\n<td><code>closure_reason</code></td>\n<td>Optional</td>\n<td>Reason for closing the enrollment</td>\n</tr>\n<tr>\n<td><code>closure_notes</code></td>\n<td>Optional</td>\n<td>Additional notes for enrollment closure</td>\n</tr>\n<tr>\n<td><code>invoice_date</code></td>\n<td>Yes</td>\n<td>Invoice generation date</td>\n</tr>\n<tr>\n<td><code>invoice_number</code></td>\n<td>Yes</td>\n<td>Invoice reference number</td>\n</tr>\n<tr>\n<td><code>closing_balance</code></td>\n<td>Yes</td>\n<td>Final settled balance amount</td>\n</tr>\n<tr>\n<td><code>additional_benefit</code></td>\n<td>Optional</td>\n<td>Any additional benefit applied at closure</td>\n</tr>\n<tr>\n<td><code>deductions</code></td>\n<td>Optional</td>\n<td>Deductions applied at the time of closure</td>\n</tr>\n<tr>\n<td><code>other_charges</code></td>\n<td>Optional</td>\n<td>Additional charges applied</td>\n</tr>\n<tr>\n<td><code>bank_charges</code></td>\n<td>Optional</td>\n<td>Bank or transaction charges</td>\n</tr>\n<tr>\n<td><code>customer_verified_otp</code></td>\n<td>Optional</td>\n<td>Customer OTP verification status</td>\n</tr>\n<tr>\n<td><code>admin_verified_otp</code></td>\n<td>Optional</td>\n<td>Admin OTP verification status</td>\n</tr>\n<tr>\n<td><code>claimed_benefits</code></td>\n<td>Optional</td>\n<td>List of benefits claimed during closure</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"response-body\">RESPONSE BODY</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": {\n        \"digigold_enrollment_id\": 1542,\n        \"closure_reason\": \"completed\",\n        \"closure_notes\": \"plan closed\",\n        \"invoice_date\": \"2025-12-23\",\n        \"invoice_number\": \"QSAWD12\",\n        \"closing_balance\": 200000,\n        \"additional_benefit\": 0,\n        \"deductions\": 0,\n        \"other_charges\": 0,\n        \"bank_charges\": 0,\n        \"customer_verified_otp\": true,\n        \"admin_verified_otp\": true,\n        \"claimed_benefits\": [\n            {\n                \"benefit\": [\n                    {\n                        \"name\": \"Bonus Rule 2\",\n                        \"type\": \"monthly\",\n                        \"amount\": 1000,\n                        \"month\": 1\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"15\",\n                        \"jewellery\": \"gold\"\n                    },\n                    {\n                        \"op\": \"OR\",\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10\",\n                        \"jewellery\": \"diamond\"\n                    }\n                ],\n                \"op\": \"OR\",\n                \"priority\": 2\n            }\n        ]\n    }\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","digigold","close_plan"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[{"id":"fbe2b747-ff4e-44cd-873d-98f753057e84","name":"Close plan API","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"digigold_enrollment_id\": 1542,\r\n    \"closure_reason\": \"completed\",\r\n    \"closure_notes\": \"plan closed\",\r\n    \"invoice_date\": \"2025-12-23\",\r\n    \"invoice_number\": \"QSAWD12\",\r\n    \"closing_balance\": 200000,\r\n    \"additional_benefit\": 0,\r\n    \"deductions\": 0,\r\n    \"other_charges\": 0,\r\n    \"bank_charges\": 0,\r\n    \"customer_verified_otp\": true,\r\n    \"admin_verified_otp\": true,\r\n    \"claimed_benefits\": [\r\n        {\r\n            \"benefit\": [\r\n                {\r\n                    \"name\": \"Bonus Rule 2\",\r\n                    \"type\": \"monthly\",\r\n                    \"amount\": 1000,\r\n                    \"month\": 1\r\n                }\r\n            ],\r\n            \"redemptions\": [\r\n                {\r\n                    \"on\": \"value_addition\",\r\n                    \"type\": \"percentage\",\r\n                    \"value\": \"15\",\r\n                    \"jewellery\": \"gold\"\r\n                },\r\n                {\r\n                    \"op\": \"OR\",\r\n                    \"on\": \"value_addition\",\r\n                    \"type\": \"percentage\",\r\n                    \"value\": \"10\",\r\n                    \"jewellery\": \"diamond\"\r\n                }\r\n            ],\r\n            \"op\": \"OR\",\r\n            \"priority\": 2\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/digigold/close_plan"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"","header":[{"key":"Content-Length","value":"79"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 02 Jan 2026 08:45:45 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"4f-+tGYdGkkjjNvFk6rCctuJbecvEw\""},{"key":"request-context","value":"appId=cid-v1:"},{"key":"X-Powered-By","value":"Express"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n        \"digigold_enrollment_id\": 1542,\n        \"closure_reason\": \"completed\",\n        \"closure_notes\": \"plan closed\",\n        \"invoice_date\": \"2025-12-23\",\n        \"invoice_number\": \"QSAWD12\",\n        \"closing_balance\": 200000,\n        \"additional_benefit\": 0,\n        \"deductions\": 0,\n        \"other_charges\": 0,\n        \"bank_charges\": 0,\n        \"customer_verified_otp\": true,\n        \"admin_verified_otp\": true,\n        \"claimed_benefits\": [\n            {\n                \"benefit\": [\n                    {\n                        \"name\": \"Bonus Rule 2\",\n                        \"type\": \"monthly\",\n                        \"amount\": 1000,\n                        \"month\": 1\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"15\",\n                        \"jewellery\": \"gold\"\n                    },\n                    {\n                        \"op\": \"OR\",\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"10\",\n                        \"jewellery\": \"diamond\"\n                    }\n                ],\n                \"op\": \"OR\",\n                \"priority\": 2\n            }\n        ]\n    }\n]\n}"}],"_postman_id":"50b5639d-d7ca-4e1e-be70-ff997722772e"}],"id":"feac7e7f-ae03-4850-8824-8aaafb98fb8b","_postman_id":"feac7e7f-ae03-4850-8824-8aaafb98fb8b","description":""},{"name":"Webhooks","item":[{"name":"Digigold","item":[{"name":"Digigold Enrollment","id":"fbbfbdb3-6840-4049-9382-6f5cb10f1c6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"topic\": \"digigold.enrollment\",\r\n  \"data\": [\r\n    {\r\n      \"contact_id\": 55628,\r\n      \"mobile_number\": \"7717711114\",\r\n      \"plan_id\": 82,\r\n      \"digigold_enrollment_id\": \"JWERO2301\",\r\n      \"customer_info\": {\r\n        \"first_name\": \"Priya\",\r\n        \"last_name\": \"Verma\",\r\n        \"company_name\": null,\r\n        \"company_position\": null,\r\n        \"whatsapp\": \"7717711114\",\r\n        \"email\": \"priyaVerma@gmail.com\",\r\n        \"mobile_number\": \"7717711114\",\r\n        \"contact_type\": \"lead\",\r\n        \"channel_name\": null,\r\n        \"birthday\": \"2026-01-15\",\r\n        \"gender\": \"female\",\r\n        \"anniversary\": \"2026-01-22\",\r\n        \"profession\": \"accountant\",\r\n        \"annual_income\": \"0 - 2.5 Lakh\",\r\n        \"ethnicity\": \"Dubia\",\r\n        \"language\": \"hindi\",\r\n        \"religion\": \"hinduism\",\r\n        \"branch_id\": 1340,\r\n        \"created_at\": null,\r\n        \"source\": \"directory\",\r\n        \"first_purchase_date\": null,\r\n        \"mobile_dial_code\": \"91\",\r\n        \"whatsapp_dial_code\": 91,\r\n        \"is_same_whatsapp_number\": null,\r\n        \"profile_url\": null,\r\n        \"status\": null,\r\n        \"marital_status\": \"single\",\r\n        \"created_on\": \"2026-01-02T08:13:13.000Z\",\r\n        \"updated_at\": \"2026-01-02T08:13:13.000Z\",\r\n        \"stage_id\": 28,\r\n        \"customer_source\": null,\r\n        \"source_id\": 83,\r\n        \"stage_assignment_type\": \"auto\",\r\n        \"lead_date\": \"2026-01-02T08:13:13.000Z\",\r\n        \"addresses\": [\r\n          {\r\n            \"id\": 521825,\r\n            \"contact_id\": 55628,\r\n            \"address_line1\": \"Street 1\",\r\n            \"address_line2\": null,\r\n            \"city\": \"Wales\",\r\n            \"post_code\": \"74512\",\r\n            \"country\": \"Australia\",\r\n            \"state\": \"New South Wales\",\r\n            \"state_code\": null,\r\n            \"country_code\": null,\r\n            \"address_type\": \"billing\",\r\n            \"district\": null\r\n          }\r\n        ],\r\n        \"tags\": [\r\n          {\r\n            \"id\": 147,\r\n            \"title\": \"Thane customers\",\r\n            \"color\": \"#F94144\",\r\n            \"contact_count\": 1\r\n          }\r\n        ],\r\n        \"assigned_to\": [\r\n          {\r\n            \"id\": 584,\r\n            \"first_name\": \"Priya \",\r\n            \"last_name\": \"Vermaa\",\r\n            \"profile_pic\": \"null\"\r\n          }\r\n        ],\r\n        \"platforms\": [],\r\n        \"stage_info\": {\r\n          \"stage_id\": 28,\r\n          \"title\": \"Enquiry\",\r\n          \"color\": \"#FF5733\"\r\n        }\r\n      }\r\n    }\r\n  ],\r\n  \"timestamp\": 1767341878\r\n}","options":{"raw":{"language":"json"}}},"description":"<h3 id=\"overview\">Overview</h3>\n<p>This webhook is triggered <strong>whenever a customer successfully enrolls in a DigiGold plan</strong>.</p>\n<p>JWERO will send a <strong>POST request</strong> to the webhook URL for On Digigold enrollment event configured at <a href=\"https://digigold.jwero.ai/settings/webhooks\">https://digigold.jwero.ai/settings/webhooks</a></p>\n<p>The payload contains complete enrollment details along with customer profile information.</p>\n<h5 id=\"what-you-receive\"><strong>What You Receive</strong></h5>\n<p>Headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">X-Jwero-Signature: &lt;signature&gt;\nContent-Type: application/json\n\n</code></pre>\n<p>Body</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"topic\": \"digigold.enrollment\",\n  \"data\": [\n    {\n      \"contact_id\": 55628,\n      \"mobile_number\": \"7717711114\",\n      \"plan_id\": 82,\n      \"digigold_enrollment_id\": \"JWERO2301\",\n      \"customer_info\": {\n        \"first_name\": \"Priya\",\n        \"last_name\": \"Verma\",\n        \"company_name\": null,\n        \"company_position\": null,\n        \"whatsapp\": \"7717711114\",\n        \"email\": \"priyaVerma@gmail.com\",\n        \"mobile_number\": \"7717711114\",\n        \"contact_type\": \"lead\",\n        \"channel_name\": null,\n        \"birthday\": \"2026-01-15\",\n        \"gender\": \"female\",\n        \"anniversary\": \"2026-01-22\",\n        \"profession\": \"accountant\",\n        \"annual_income\": \"0 - 2.5 Lakh\",\n        \"ethnicity\": \"Dubia\",\n        \"language\": \"hindi\",\n        \"religion\": \"hinduism\",\n        \"branch_id\": 1340,\n        \"created_at\": null,\n        \"source\": \"directory\",\n        \"first_purchase_date\": null,\n        \"mobile_dial_code\": \"91\",\n        \"whatsapp_dial_code\": 91,\n        \"is_same_whatsapp_number\": null,\n        \"profile_url\": null,\n        \"status\": null,\n        \"marital_status\": \"single\",\n        \"created_on\": \"2026-01-02T08:13:13.000Z\",\n        \"updated_at\": \"2026-01-02T08:13:13.000Z\",\n        \"stage_id\": 28,\n        \"customer_source\": null,\n        \"source_id\": 83,\n        \"stage_assignment_type\": \"auto\",\n        \"lead_date\": \"2026-01-02T08:13:13.000Z\",\n        \"addresses\": [\n          {\n            \"id\": 521825,\n            \"contact_id\": 55628,\n            \"address_line1\": \"Street 1\",\n            \"address_line2\": null,\n            \"city\": \"Wales\",\n            \"post_code\": \"74512\",\n            \"country\": \"Australia\",\n            \"state\": \"New South Wales\",\n            \"state_code\": null,\n            \"country_code\": null,\n            \"address_type\": \"billing\",\n            \"district\": null\n          }\n        ],\n        \"tags\": [\n          {\n            \"id\": 147,\n            \"title\": \"Thane customers\",\n            \"color\": \"#F94144\",\n            \"contact_count\": 1\n          }\n        ],\n        \"assigned_to\": [\n          {\n            \"id\": 584,\n            \"first_name\": \"Priya \",\n            \"last_name\": \"Vermaa\",\n            \"profile_pic\": \"null\"\n          }\n        ],\n        \"platforms\": [],\n        \"stage_info\": {\n          \"stage_id\": 28,\n          \"title\": \"Enquiry\",\n          \"color\": \"#FF5733\"\n        }\n      }\n    }\n  ],\n  \"timestamp\": 1767341878\n}\n\n</code></pre>\n<p>StartFragment</p>\n<h2 id=\"request-body-payload\">Request Body (Payload)</h2>\n<h3 id=\"root-object\">Root Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>topic</td>\n<td>string</td>\n<td>Event identifier (<code>digigold.enrollment</code>)</td>\n</tr>\n<tr>\n<td>data</td>\n<td>array</td>\n<td>List of enrollment objects</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>number</td>\n<td>Unix timestamp (seconds)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"enrollment-object-data\">Enrollment Object (<code>data[]</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>plan_id</td>\n<td>number</td>\n<td>DigiGold plan identifier</td>\n</tr>\n<tr>\n<td>digigold_enrollment_id</td>\n<td>number</td>\n<td>Unique enrollment ID</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>number</td>\n<td>Internal customer ID</td>\n</tr>\n<tr>\n<td>mobile_number</td>\n<td>string</td>\n<td>Customer mobile number</td>\n</tr>\n<tr>\n<td>customer_info  <br />  <br />plan_name</td>\n<td>object  <br />  <br />string</td>\n<td>Detailed customer profile  <br />  <br />Digigold plan name</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"customer-information-customer_info\">Customer Information (<code>customer_info</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>first_name</td>\n<td>string</td>\n<td>Customer first name</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>string</td>\n<td>Customer last name</td>\n</tr>\n<tr>\n<td>whatsapp</td>\n<td>string</td>\n<td>WhatsApp number</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Email address</td>\n</tr>\n<tr>\n<td>contact_type</td>\n<td>string</td>\n<td>lead / customer</td>\n</tr>\n<tr>\n<td>birthday</td>\n<td>string (YYYY-MM-DD)</td>\n<td>Date of birth</td>\n</tr>\n<tr>\n<td>anniversary</td>\n<td>string (YYYY-MM-DD)</td>\n<td>Anniversary date</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>string</td>\n<td>Gender</td>\n</tr>\n<tr>\n<td>profession</td>\n<td>string</td>\n<td>Profession</td>\n</tr>\n<tr>\n<td>annual_income</td>\n<td>string</td>\n<td>Income range</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td>Preferred language</td>\n</tr>\n<tr>\n<td>religion</td>\n<td>string</td>\n<td>Religion</td>\n</tr>\n<tr>\n<td>marital_status</td>\n<td>string</td>\n<td>single / married</td>\n</tr>\n<tr>\n<td>branch_id</td>\n<td>number</td>\n<td>Branch identifier</td>\n</tr>\n<tr>\n<td>source</td>\n<td>string</td>\n<td>Lead source</td>\n</tr>\n<tr>\n<td>created_on</td>\n<td>string (ISO 8601)</td>\n<td>Contact creation time</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>string (ISO 8601)</td>\n<td>Last update time</td>\n</tr>\n<tr>\n<td>stage_id</td>\n<td>number</td>\n<td>CRM stage ID</td>\n</tr>\n<tr>\n<td>stage_assignment_type</td>\n<td>string</td>\n<td>auto / manual</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"addresses-customer_infoaddresses\">Addresses (<code>customer_info.addresses[]</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address_line1</td>\n<td>string</td>\n<td>Address line 1</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>City</td>\n</tr>\n<tr>\n<td>state</td>\n<td>string</td>\n<td>State</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>Country</td>\n</tr>\n<tr>\n<td>post_code</td>\n<td>string</td>\n<td>Postal code</td>\n</tr>\n<tr>\n<td>address_type</td>\n<td>string</td>\n<td>billing / shipping</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"tags-customer_infotags\">Tags (<code>customer_info.tags[]</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>number</td>\n<td>Tag ID</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Tag name</td>\n</tr>\n<tr>\n<td>color</td>\n<td>string</td>\n<td>Hex color</td>\n</tr>\n<tr>\n<td>contact_count</td>\n<td>number</td>\n<td>Contacts under this tag</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"assigned-team-customer_infoassigned_to\">Assigned Team (<code>customer_info.assigned_to[]</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>number</td>\n<td>User ID</td>\n</tr>\n<tr>\n<td>first_name</td>\n<td>string</td>\n<td>Assigned user first name</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>string</td>\n<td>Assigned user last name</td>\n</tr>\n<tr>\n<td>profile_pic</td>\n<td>string</td>\n<td>Profile picture URL</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"stage-information-customer_infostage_info\">Stage Information (<code>customer_info.stage_info</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stage_id</td>\n<td>number</td>\n<td>Stage ID</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Stage name</td>\n</tr>\n<tr>\n<td>color</td>\n<td>string</td>\n<td>Stage color</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"fbbfbdb3-6840-4049-9382-6f5cb10f1c6c"},{"name":"Digigold Payment Completed","id":"f37c94f2-c9e1-40a0-8101-ac9e7c94306d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"topic\": \"digigold.payment_completed\",\r\n    \"success\": true,\r\n    \"data\": [\r\n        {\r\n            \"id\": 5330,\r\n            \"transaction_id\": \"57335cb88cd74b89a0b425f49ed7db27\",\r\n            \"contact_id\": 54659,\r\n            \"digigold_enrollment_id\": \"JWERO2301\",\r\n            \"amount\": 1000,\r\n            \"sub_total\": 1000,\r\n            \"status\": \"completed\",\r\n            \"payment_method\": \"cashfree\",\r\n            \"digigold_payment_number\": 4,\r\n            \"date_created\": \"2025-11-28T00:00:00.000Z\",\r\n            \"date_completed\": \"2025-11-28T00:00:00.000Z\",\r\n            \"date_paid\": \"2025-11-28T00:00:00.000Z\",\r\n            \"currency\": \"INR\",\r\n            \"total_tax\": \"0.000\",\r\n            \"payment_url\": \"https://payments-test.cashfree.com/links/X9i2ep4fi04g_AAAAAAAAYx4\",\r\n            \"payment_url_id\": \"6708290\",\r\n            \"meta_data\": {\r\n                \"gold_credited\": 0.143,\r\n                \"gold_rate\": 6970,\r\n                \"payment_ref\": \"12345\",\r\n                \"branch\": \"Mumbai\"\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>topic</code></td>\n<td>Indicates the event type of the webhook. Example: <code>digigold.payment_completed</code>.</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td>Unique identifier for each payment.</td>\n</tr>\n<tr>\n<td><code>transaction_id</code></td>\n<td>Unique ID for each transaction.</td>\n</tr>\n<tr>\n<td><code>contact_id</code></td>\n<td>Customer ID.</td>\n</tr>\n<tr>\n<td><code>digigold_enrollment_id</code></td>\n<td>Unique enrollment ID created when customer joins a plan.</td>\n</tr>\n<tr>\n<td><code>plan_id</code></td>\n<td>ID of the DigiGold plan selected by the customer.</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>Total payment amount.</td>\n</tr>\n<tr>\n<td><code>sub_total</code></td>\n<td>Amount before deductions (if any), usually same as <code>amount</code>.</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>Payment status. <code>completed</code> means successful.</td>\n</tr>\n<tr>\n<td><code>payment_method</code></td>\n<td>Method used for payment (<code>cash</code>, <code>upi</code>, <code>cashfree</code>, <code>razorpay</code>, <code>card</code>, <code>direct_bank_transfer</code>, <code>pos</code>, <code>cheque_payment</code>).</td>\n</tr>\n<tr>\n<td><code>payment_url</code></td>\n<td>In case of online payments, the payment URL that was generated for payment.</td>\n</tr>\n<tr>\n<td><code>payment_url_id</code></td>\n<td>Unique identifier of the generated payment URL.</td>\n</tr>\n<tr>\n<td><code>date_created</code></td>\n<td>Timestamp when the record was created.</td>\n</tr>\n<tr>\n<td><code>date_paid</code></td>\n<td>Timestamp when the customer made the payment.</td>\n</tr>\n<tr>\n<td><code>date_completed</code></td>\n<td>Timestamp when the payment was completed.</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>Currency used. Example: <code>INR</code>.</td>\n</tr>\n<tr>\n<td><code>gold_credited</code></td>\n<td>Gold credited in grams (if applicable).</td>\n</tr>\n<tr>\n<td><code>gold_rate</code></td>\n<td>Gold rate per gram at the time of purchase.</td>\n</tr>\n<tr>\n<td><code>payment_ref</code></td>\n<td>Reference number for the payment.</td>\n</tr>\n<tr>\n<td><code>branch</code></td>\n<td>Branch name where the transaction was recorded.</td>\n</tr>\n</tbody>\n</table>\n</div><p>RESPONSE</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"topic\": \"digigold.payment_completed\",\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 5330,\n            \"transaction_id\": \"57335cb88cd74b89a0b425f49ed7db27\",\n            \"contact_id\": 54659,\n            \"digigold_enrollment_id\": \"JWERO2301\",\n            \"amount\": 1000,\n            \"sub_total\": 1000,\n            \"status\": \"completed\",\n            \"payment_method\": \"cashfree\",\n            \"digigold_payment_number\": 4,\n            \"date_created\": \"2025-11-28T00:00:00.000Z\",\n            \"date_completed\": \"2025-11-28T00:00:00.000Z\",\n            \"date_paid\": \"2025-11-28T00:00:00.000Z\",\n            \"currency\": \"INR\",\n            \"total_tax\": \"0.000\",\n            \"payment_url\": \"https://payments-test.cashfree.com/links/X9i2ep4fi04g_AAAAAAAAYx4\",\n            \"payment_url_id\": \"6708290\",\n            \"meta_data\": {\n                \"gold_credited\": 0.143,\n                \"gold_rate\": 6970,\n                \"payment_ref\": \"12345\",\n                \"branch\": \"Mumbai\"\n            }\n        }\n    ]\n}\n\n</code></pre>\n<h3 id=\"overview\">Overview</h3>\n<p>This webhook is triggered <strong>whenever a customer payment is successfull</strong>.</p>\n<p>JWERO will send a <strong>POST request</strong> to the webhook URL for On Digigold Payment event configured at <a href=\"https://digigold.jwero.ai/settings/webhooks\">https://digigold.jwero.ai/settings/webhooks</a></p>\n<h3 id=\"verifying-the-x-jwero-signature-for-jwero-webhooks\"><strong>Verifying the X-Jwero-Signature for Jwero Webhooks</strong></h3>\n<p><strong>Overview</strong></p>\n<p><a href=\"https://digigold.jwero.ai/settings/webhooks\"><b><br />Set the secret in </b>https://digigold.jwero.ai/settings/webhooks</a> in webhook secret field when creating new webhook</p>\n<p>When Jwero sends a webhook to your server, it includes a signature in the request header to help you confirm that the payload is authentic and has not been tampered with.</p>\n<p>Your system should verify this signature before trusting or processing the webhook.</p>\n<h2 id=\"what-you-receive\"><strong>What You Receive</strong></h2>\n<p>Headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-Jwero-Signature: &lt;signature&gt;\nContent-Type: application/json\n\n</code></pre><p>Body Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"topic\": \"some.topic\",\n\"data\": {...},\n\"timestamp\": 1735991211\n}\n\n</code></pre><h2 id=\"how-signature-is-generated\"><strong>How Signature Is Generated</strong></h2>\n<p>The signature is generated using:</p>\n<p>HMAC-SHA256(stringified_payload, secret_key)</p>\n<p>- stringified_payload = JSON.stringify(payload)</p>\n<p>- secret_key = The secret you provide in your webhook configuration.</p>\n<h2 id=\"verification-steps\"><strong>Verification Steps</strong></h2>\n<p>1. Read the raw request body exactly as received.</p>\n<p>2. Compute an HMAC SHA-256 using your webhook secret.</p>\n<p>3. Compare your computed signature with the X-Jwero-Signature header.</p>\n<p>4. If they match → the request is valid.</p>\n<p>5. If not → reject the request.</p>\n<h2 id=\"nodejs-example\"><strong>Node.js Example</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import crypto from \"crypto\";\nconst WEBHOOK_SECRET = process.env.JWERO_WEBHOOK_SECRET;\nfunction verifyJweroSignature(rawBody, signature) {\n  const computed = crypto\n    .createHmac(\"sha256\", WEBHOOK_SECRET)\n    .update(rawBody, \"utf8\")\n    .digest(\"hex\");\n  return crypto.timingSafeEqual(\n    Buffer.from(computed),\n    Buffer.from(signature)\n  );\n}\n\n</code></pre><h2 id=\"important-notes\"><strong>Important Notes</strong></h2>\n<p>- Always use the raw request body for verification.</p>\n<p>- Do not re-stringify JSON.</p>\n<p>- Use constant‑time comparison.</p>\n<p>- Reject missing/invalid signatures.</p>\n<h4 id=\"exponential-backoff\"><strong>Exponential Backoff</strong></h4>\n<p>Whenever the client’s server does not return HTTP 200, will retry the webhook using exponential backoff.</p>\n<p>1 minutes → 2 minutes → 4 minutes → 8 minutes → 16 minutes → 32 minutes</p>\n<p>Retry Rules</p>\n<p>The webhook is retried only if the response is NOT 200 (or if the client’s server is unreachable / times out).</p>\n<p>A maximum of 10 retry attempts will be made.</p>\n<p>Each retry waits double the previous time delay.</p>\n<p>If any retry receives HTTP 200, the retry chain stops immediately.</p>\n<p>If after 10 attempts the endpoint never responds with 200, the event is marked as failed.</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"f37c94f2-c9e1-40a0-8101-ac9e7c94306d"},{"name":"Digigold Closure","id":"35314b3d-9a34-4dd6-a81e-04514dcb1511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"topic\": \"digigold.closure\",\r\n    \"data\": {\r\n        \"digigold_enrollment_id\": \"JWERO123\",\r\n        \"closure_status\": \"matured\",\r\n        \"closure_reason\": \"plan_matured\",\r\n        \"invoice_date\": \"2026-01-16T00:00:00.000Z\",\r\n        \"invoice_number\": \"QW1234\",\r\n        \"closing_balance\": \"2200.00\",\r\n        \"additional_benefit\": \"0.00\",\r\n        \"deductions\": \"0.00\",\r\n        \"other_charges\": \"0.00\",\r\n        \"bank_charges\": \"0.00\",\r\n        \"claimed_benefits\": [\r\n            {\r\n                \"priority\": 2,\r\n                \"op\": \"AND\",\r\n                \"benefit\": [\r\n                    {\r\n                        \"name\": \"Benefit Rule 2\",\r\n                        \"type\": \"monthy_only_bonus\",\r\n                        \"month\": 1,\r\n                        \"amount\": 100\r\n                    }\r\n                ],\r\n                \"redemptions\": [\r\n                    {\r\n                        \"on\": \"value_addition\",\r\n                        \"type\": \"percentage\",\r\n                        \"value\": \"5\",\r\n                        \"jewellery\": \"gold\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"priority\": 1,\r\n                \"op\": \"AND\",\r\n                \"benefit\": [\r\n                    {\r\n                        \"name\": \"Benefit Rule 1\",\r\n                        \"type\": \"lumpsump_bonus\",\r\n                        \"amount\": \"100\"\r\n                    }\r\n                ],\r\n                \"redemptions\": [\r\n                    {\r\n                        \"on\": \"value_addition\",\r\n                        \"type\": \"percentage\",\r\n                        \"value\": \"2\",\r\n                        \"jewellery\": \"gold\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"customer_verified_otp\": 0,\r\n        \"admin_verified_otp\": 0,\r\n        \"closure_notes\": null,\r\n        \"created_at\": \"2026-01-16T08:58:58.000Z\",\r\n        \"updated_at\": \"2026-01-16T08:58:58.000Z\"\r\n    },\r\n    \"timestamp\": 1768553938\r\n}","options":{"raw":{"language":"json"}}},"description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>topic</code></td>\n<td>Indicates the event type of the webhook. Example: <code>digigold.closure</code>.</td>\n</tr>\n<tr>\n<td><code>timestamp</code></td>\n<td>Unix timestamp indicating when the webhook event was generated.</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>Object containing DigiGold closure details.</td>\n</tr>\n<tr>\n<td><code>data.digigold_enrollment_id</code></td>\n<td>Unique enrollment ID created when the customer joined a DigiGold plan.</td>\n</tr>\n<tr>\n<td><code>data.closure_reason</code></td>\n<td>Reason for closure.</td>\n</tr>\n<tr>\n<td><code>data.closure_notes</code></td>\n<td>Additional notes provided during closure (can be <code>null</code>).</td>\n</tr>\n<tr>\n<td><code>data.invoice_date</code></td>\n<td>Invoice date for the closure in ISO 8601 format.</td>\n</tr>\n<tr>\n<td><code>data.invoice_number</code></td>\n<td>Invoice number generated for the closure (can be <code>null</code>).</td>\n</tr>\n<tr>\n<td><code>data.closing_balance</code></td>\n<td>Final balance amount payable or redeemable at the time of closure.</td>\n</tr>\n<tr>\n<td><code>data.deductions</code></td>\n<td>Total deductions applied during closure.</td>\n</tr>\n<tr>\n<td><code>data.other_charges</code></td>\n<td>Any additional charges applied during closure.</td>\n</tr>\n<tr>\n<td><code>data.bank_charges</code></td>\n<td>Bank or processing charges applied during closure.</td>\n</tr>\n<tr>\n<td><code>data.customer_verified_otp</code></td>\n<td>Indicates whether customer OTP verification was completed (0 = No, 1 = Yes).</td>\n</tr>\n<tr>\n<td><code>data.admin_verified_otp</code></td>\n<td>Indicates whether admin OTP verification was completed (0 = No, 1 = Yes).</td>\n</tr>\n<tr>\n<td><code>data.closure_status</code></td>\n<td>Final status of the DigiGold plan.</td>\n</tr>\n<tr>\n<td><code>data.additional_benefit</code></td>\n<td>Additional benefit amount applied during closure, if any.</td>\n</tr>\n<tr>\n<td><code>data.claimed_benefits</code></td>\n<td>Array of benefit rules applied during closure.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">RESPONSE</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"topic\": \"digigold.closure\",\n    \"data\": {\n        \"digigold_enrollment_id\": \"JWERO2301\",\n        \"closure_status\": \"matured\",\n        \"closure_reason\": \"plan_matured\",\n        \"invoice_date\": \"2026-01-16T00:00:00.000Z\",\n        \"invoice_number\": \"QW1234\",\n        \"closing_balance\": \"2200.00\",\n        \"additional_benefit\": \"0.00\",\n        \"deductions\": \"0.00\",\n        \"other_charges\": \"0.00\",\n        \"bank_charges\": \"0.00\",\n        \"claimed_benefits\": [\n            {\n                \"priority\": 2,\n                \"op\": \"AND\",\n                \"benefit\": [\n                    {\n                        \"name\": \"Benefit Rule 2\",\n                        \"type\": \"monthy_only_bonus\",\n                        \"month\": 1,\n                        \"amount\": 100\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"5\",\n                        \"jewellery\": \"gold\"\n                    }\n                ]\n            },\n            {\n                \"priority\": 1,\n                \"op\": \"AND\",\n                \"benefit\": [\n                    {\n                        \"name\": \"Benefit Rule 1\",\n                        \"type\": \"lumpsump_bonus\",\n                        \"amount\": \"100\"\n                    }\n                ],\n                \"redemptions\": [\n                    {\n                        \"on\": \"value_addition\",\n                        \"type\": \"percentage\",\n                        \"value\": \"2\",\n                        \"jewellery\": \"gold\"\n                    }\n                ]\n            }\n        ],\n        \"customer_verified_otp\": 0,\n        \"admin_verified_otp\": 0,\n        \"closure_notes\": null,\n        \"created_at\": \"2026-01-16T08:58:58.000Z\",\n        \"updated_at\": \"2026-01-16T08:58:58.000Z\"\n    },\n    \"timestamp\": 1768553938\n}\n\n</code></pre>\n<h3 id=\"overview\">Overview</h3>\n<p>This webhook is triggered <strong>whenever a plan is closed for a customer</strong></p>\n<p>JWERO will send a <strong>POST request</strong> to the webhook URL for On Digigold Closure event configured at <a href=\"https://digigold.jwero.ai/settings/webhooks\">https://digigold.jwero.ai/settings/webhooks</a></p>\n<h3 id=\"verifying-the-x-jwero-signature-for-jwero-webhooks\"><strong>Verifying the X-Jwero-Signature for Jwero Webhooks</strong></h3>\n<p><strong>Overview</strong></p>\n<p><a href=\"https://digigold.jwero.ai/settings/webhooks\"><b><br />Set the secret in </b>https://digigold.jwero.ai/settings/webhooks</a> in webhook secret field when creating new webhook</p>\n<p>When Jwero sends a webhook to your server, it includes a signature in the request header to help you confirm that the payload is authentic and has not been tampered with.</p>\n<p>Your system should verify this signature before trusting or processing the webhook.</p>\n<h2 id=\"what-you-receive\"><strong>What You Receive</strong></h2>\n<p>Headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-Jwero-Signature: &lt;signature&gt;\nContent-Type: application/json\n\n</code></pre><p>Body Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"topic\": \"some.topic\",\n\"data\": {...},\n\"timestamp\": 1735991211\n}\n\n</code></pre><h2 id=\"how-signature-is-generated\"><strong>How Signature Is Generated</strong></h2>\n<p>The signature is generated using:</p>\n<p>HMAC-SHA256(stringified_payload, secret_key)</p>\n<p>- stringified_payload = JSON.stringify(payload)</p>\n<p>- secret_key = The secret you provide in your webhook configuration.</p>\n<h2 id=\"verification-steps\"><strong>Verification Steps</strong></h2>\n<p>1. Read the raw request body exactly as received.</p>\n<p>2. Compute an HMAC SHA-256 using your webhook secret.</p>\n<p>3. Compare your computed signature with the X-Jwero-Signature header.</p>\n<p>4. If they match → the request is valid.</p>\n<p>5. If not → reject the request.</p>\n<h2 id=\"nodejs-example\"><strong>Node.js Example</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import crypto from \"crypto\";\nconst WEBHOOK_SECRET = process.env.JWERO_WEBHOOK_SECRET;\nfunction verifyJweroSignature(rawBody, signature) {\n  const computed = crypto\n    .createHmac(\"sha256\", WEBHOOK_SECRET)\n    .update(rawBody, \"utf8\")\n    .digest(\"hex\");\n  return crypto.timingSafeEqual(\n    Buffer.from(computed),\n    Buffer.from(signature)\n  );\n}\n\n</code></pre><h2 id=\"important-notes\"><strong>Important Notes</strong></h2>\n<p>- Always use the raw request body for verification.</p>\n<p>- Do not re-stringify JSON.</p>\n<p>- Use constant‑time comparison.</p>\n<p>- Reject missing/invalid signatures.</p>\n<h4 id=\"exponential-backoff\"><strong>Exponential Backoff</strong></h4>\n<p>Whenever the client’s server does not return HTTP 200, will retry the webhook using exponential backoff.</p>\n<p>1 minutes → 2 minutes → 4 minutes → 8 minutes → 16 minutes → 32 minutes</p>\n<p>Retry Rules</p>\n<p>The webhook is retried only if the response is NOT 200 (or if the client’s server is unreachable / times out).</p>\n<p>A maximum of 10 retry attempts will be made.</p>\n<p>Each retry waits double the previous time delay.</p>\n<p>If any retry receives HTTP 200, the retry chain stops immediately.</p>\n<p>If after 10 attempts the endpoint never responds with 200, the event is marked as failed.</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"35314b3d-9a34-4dd6-a81e-04514dcb1511"}],"id":"17566711-85db-4d55-832f-2c2d123ae42c","_postman_id":"17566711-85db-4d55-832f-2c2d123ae42c","description":""},{"name":"Create order webhook","id":"72b1dc35-59c7-4794-9c65-f369182a964d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"add_your_apikey","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"topic\": \"order.create\",\r\n    \"delivery_url\": \"https://webhook.site/9d80e0ac-3a67-4c74-8b3a-d05fb057fe67\",\r\n    \"status\": \"active\",\r\n    \"resource\": \"order\",\r\n    \"event\": \"create\",\r\n    \"request_query\": {},\r\n    \"request_headers\": {}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.jwero.com/v1/api/webhook","description":"<p>CREATE WEBHOOK API</p>\n<p>Method: POST<br />URL: <a href=\"https://api.jwero.com/v1/api/webhook\">https://api.jwero.com/v1/api/webhook</a></p>\n<p>HEADERS:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\napikey: YOUR_API_KEY\n\n</code></pre><p>BODY (raw JSON):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"topic\": \"order.create\",\n  \"delivery_url\": \"https://your-webhook-url.com\",\n  \"status\": \"active\",\n  \"resource\": \"order\",\n  \"event\": \"create\",\n  \"request_query\": {},\n  \"request_headers\": {}\n}\n\n</code></pre><p>FIELD DETAILS:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>topic</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Allowed values: <code>order.create</code>, <code>order.update</code></td>\n</tr>\n<tr>\n<td><code>delivery_url</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Your webhook endpoint URL</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Yes</td>\n<td><code>active</code> or <code>paused</code></td>\n</tr>\n<tr>\n<td><code>resource</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Must be <code>order</code></td>\n</tr>\n<tr>\n<td><code>event</code></td>\n<td>string</td>\n<td>Yes</td>\n<td><code>create</code> or <code>update</code></td>\n</tr>\n<tr>\n<td><code>request_query</code></td>\n<td>object</td>\n<td>No</td>\n<td>Optional query params</td>\n</tr>\n<tr>\n<td><code>request_headers</code></td>\n<td>object</td>\n<td>No</td>\n<td>Optional custom headers</td>\n</tr>\n</tbody>\n</table>\n</div><p>EXAMPLES:</p>\n<p>Order Create:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"topic\": \"order.create\",\n  \"delivery_url\": \"https://example.com/webhook\",\n  \"status\": \"active\",\n  \"resource\": \"order\",\n  \"event\": \"create\"\n}\n\n</code></pre><p>Order Update:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"topic\": \"order.update\",\n  \"delivery_url\": \"https://example.com/webhook\",\n  \"status\": \"active\",\n  \"resource\": \"order\",\n  \"event\": \"update\"\n}\n\n</code></pre><p>NOTES:</p>\n<ul>\n<li><p>request_query and request_headers can be omitted if not needed</p>\n</li>\n<li><p>delivery_url must be publicly accessible</p>\n</li>\n<li><p>use status \"paused\" to disable webhook</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","api","webhook"],"host":["api","jwero","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"72b1dc35-59c7-4794-9c65-f369182a964d"}],"id":"96768e87-c6a7-4a94-b363-9a898ec87e97","_postman_id":"96768e87-c6a7-4a94-b363-9a898ec87e97","description":""}],"event":[{"listen":"prerequest","script":{"id":"ba87bd89-b5ab-4b12-bf30-298bdc0382fb","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"4e5d547d-1853-4e31-b131-20f53a60b3db","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"auth_token","value":"add_your_token","type":"string"},{"key":"api_domain_live","value":"https://api.jwero.com","type":"string"},{"key":"api_domain_live","value":"http://localhost:8080","type":"string","disabled":true},{"key":"apikey","value":"add_your_apikey"}]}