{"info":{"_postman_id":"ef999799-2be1-4a23-bff8-a1e7a10f1563","name":"Official UnoPim APIs","description":"<html><head></head><body><p>The UnoPim API is a comprehensive RESTful API for managing Product Information Management (PIM) operations. This API enables you to manage products, categories, attributes, locales, channels, and other essential PIM functionalities.</p>\n<p><strong>Official Documentation</strong>: <a href=\"https://documenter.getpostman.com/view/21990056/2sA3kXE17F\">Postman Documenter</a></p>\n<hr>\n<h2 id=\"🔐-authentication\">🔐 Authentication</h2>\n<p>UnoPim API uses <strong>OAuth 2.0</strong> for authentication with two methods:</p>\n<h3 id=\"1-authentication-by-password\">1. Authentication by Password</h3>\n<p><strong>Endpoint:</strong> <code>POST {{url}}/oauth/token</code></p>\n<p><strong>Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"grant_type\": \"password\"\n}\n\n</code></pre>\n<p><strong>Headers:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic {{base64ClientIdSecret}}\nContent-Type: application/json\n\n</code></pre><p>✨ <strong>Auto-saves</strong> <code>access_token</code> and <code>refresh_token</code> to environment variables</p>\n<h3 id=\"2-authentication-by-refresh-token\">2. Authentication by Refresh Token</h3>\n<p><strong>Endpoint:</strong> <code>POST {{url}}/oauth/token</code></p>\n<p><strong>Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"refresh_token\": \"{{refreshToken}}\",\n    \"grant_type\": \"refresh_token\"\n}\n\n</code></pre>\n<hr>\n<h2 id=\"🌐-base-url\">🌐 Base URL</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{{url}}/api/v1/rest\n\n</code></pre><hr>\n<h2 id=\"📂-api-resources-45-endpoints\">📂 API Resources (45 Endpoints)</h2>\n<h3 id=\"1-locale-management-2-endpoints\">1. <strong>Locale Management</strong> (2 endpoints)</h3>\n<ul>\n<li><p><code>GET /locales</code> - Get all locales</p>\n</li>\n<li><p><code>GET /locales/{code}</code> - Get locale by code</p>\n</li>\n</ul>\n<h3 id=\"2-currency-management-2-endpoints\">2. <strong>Currency Management</strong> (2 endpoints)</h3>\n<ul>\n<li><p><code>GET /currencies</code> - Get all currencies</p>\n</li>\n<li><p><code>GET /currencies/{code}</code> - Get currency by code</p>\n</li>\n</ul>\n<h3 id=\"3-channel-management-2-endpoints\">3. <strong>Channel Management</strong> (2 endpoints)</h3>\n<ul>\n<li><p><code>GET /channels</code> - Get all channels</p>\n</li>\n<li><p><code>GET /channels/{code}</code> - Get channel by code (e.g., ecommerce)</p>\n</li>\n</ul>\n<h3 id=\"4-category-management-5-endpoints\">4. <strong>Category Management</strong> (5 endpoints)</h3>\n<ul>\n<li><p><code>GET /categories</code> - Get all categories (with pagination &amp; filters)</p>\n</li>\n<li><p><code>GET /categories/{code}</code> - Get category by code</p>\n</li>\n<li><p><code>POST /categories</code> - Create a category</p>\n</li>\n<li><p><code>PUT /categories/{code}</code> - Update a category</p>\n</li>\n<li><p><code>POST /media-files/category</code> - Upload category media files</p>\n</li>\n</ul>\n<p><strong>Example Create Category Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": \"electronic4\",\n    \"parent\": \"electronic2\",\n    \"additional_data\": {\n        \"common\": {\n            \"description\": \"Electronics Category Description\",\n            \"required\": \"Electronics Required Category\"\n        },\n        \"locale_specific\": {\n            \"de_DE\": {\"name\": \"Electronic 3 (de_DE)\"},\n            \"en_US\": {\"name\": \"Electronic 3(en_US)\"},\n            \"fr_FR\": {\"name\": \"Electronic 3(fr_FR)\"}\n        }\n    }\n}\n\n</code></pre>\n<h3 id=\"5-category-fields-management-4-endpoints\">5. <strong>Category Fields Management</strong> (4 endpoints)</h3>\n<ul>\n<li><p><code>GET /category-fields</code> - Get all category fields</p>\n</li>\n<li><p><code>GET /category-fields/{code}</code> - Get category field by code</p>\n</li>\n<li><p><code>POST /category-fields</code> - Create a category field</p>\n</li>\n<li><p><code>PUT /category-fields/{code}</code> - Update a category field</p>\n</li>\n</ul>\n<h3 id=\"6-category-field-options-3-endpoints\">6. <strong>Category Field Options</strong> (3 endpoints)</h3>\n<ul>\n<li><p><code>GET /category-fields/{code}/options</code> - Get field options</p>\n</li>\n<li><p><code>POST /category-fields/{code}/options</code> - Create field options</p>\n</li>\n<li><p><code>PUT /category-fields/{code}/options</code> - Update field options</p>\n</li>\n</ul>\n<h3 id=\"7-attribute-management-4-endpoints\">7. <strong>Attribute Management</strong> (4 endpoints)</h3>\n<ul>\n<li><p><code>GET /attributes</code> - Get all attributes (with pagination &amp; filters)</p>\n</li>\n<li><p><code>GET /attributes/{code}</code> - Get attribute by code</p>\n</li>\n<li><p><code>POST /attributes</code> - Create an attribute</p>\n</li>\n<li><p><code>PUT /attributes/{code}</code> - Update an attribute</p>\n</li>\n</ul>\n<p><strong>Example Filter:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": [{\n    \"operator\": \"IN\",\n    \"value\": [\"weight\"]\n  }]\n}\n\n</code></pre>\n<h3 id=\"8-attribute-options-3-endpoints\">8. <strong>Attribute Options</strong> (3 endpoints)</h3>\n<ul>\n<li><p><code>GET /attributes/{code}/options</code> - Get attribute options (e.g., size: S, M, L, XL)</p>\n</li>\n<li><p><code>POST /attributes/{code}/options</code> - Create attribute options</p>\n</li>\n<li><p><code>PUT /attributes/{code}/options</code> - Update attribute options</p>\n</li>\n</ul>\n<h3 id=\"9-attribute-groups-4-endpoints\">9. <strong>Attribute Groups</strong> (4 endpoints)</h3>\n<ul>\n<li><p><code>GET /attribute-groups</code> - Get all attribute groups</p>\n</li>\n<li><p><code>GET /attribute-groups/{code}</code> - Get attribute group by code</p>\n</li>\n<li><p><code>POST /attribute-groups</code> - Create an attribute group</p>\n</li>\n<li><p><code>PUT /attribute-groups/{code}</code> - Update an attribute group</p>\n</li>\n</ul>\n<h3 id=\"10-attribute-families-4-endpoints\">10. <strong>Attribute Families</strong> (4 endpoints)</h3>\n<ul>\n<li><p><code>GET /attribute-families</code> - Get all attribute families</p>\n</li>\n<li><p><code>GET /attribute-families/{code}</code> - Get attribute family by code</p>\n</li>\n<li><p><code>POST /attribute-families</code> - Create an attribute family</p>\n</li>\n<li><p><code>PUT /attribute-families/{code}</code> - Update an attribute family</p>\n</li>\n</ul>\n<h3 id=\"11-product-management-4-endpoints\">11. <strong>Product Management</strong> (4 endpoints)</h3>\n<ul>\n<li><p><code>GET /products</code> - Get all products (with pagination &amp; filters)</p>\n</li>\n<li><p><code>GET /products/{sku}</code> - Get product by SKU</p>\n</li>\n<li><p><code>POST /products</code> - Create a product</p>\n</li>\n<li><p><code>PUT /products/{sku}</code> - Update a product</p>\n</li>\n</ul>\n<h3 id=\"12-configurable-products-6-endpoints\">12. <strong>Configurable Products</strong> (6 endpoints)</h3>\n<ul>\n<li><p><code>GET /products/configurable</code> - Get all configurable products</p>\n</li>\n<li><p><code>GET /products/configurable/{sku}</code> - Get configurable product by SKU</p>\n</li>\n<li><p><code>POST /products/configurable</code> - Create configurable product</p>\n</li>\n<li><p><code>PUT /products/configurable/{sku}</code> - Update configurable product</p>\n</li>\n<li><p><code>POST /products</code> - Add new variant (product children)</p>\n</li>\n<li><p><code>POST /products/configurable/{sku}/variants</code> - Associate variants to configurable product</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🔍-common-query-parameters\">🔍 Common Query Parameters</h2>\n<h3 id=\"pagination\">Pagination</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?limit=100&amp;page=1\n\n</code></pre><h3 id=\"filtering\">Filtering</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"field_name\": [{\n    \"operator\": \"=\",\n    \"value\": \"VALUE\"\n  }]\n}\n\n</code></pre>\n<p><strong>Supported Operators:</strong> <code>=</code>, <code>!=</code>, <code>IN</code>, <code>NOT IN</code>, <code>&gt;</code>, <code>&lt;</code>, <code>&gt;=</code>, <code>&lt;=</code>, <code>LIKE</code></p>\n<hr>\n<h2 id=\"📤-response-formats\">📤 Response Formats</h2>\n<h3 id=\"success-response\">Success Response:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": { ... },\n  \"message\": \"Success message\",\n  \"status\": true\n}\n\n</code></pre>\n<h3 id=\"paginated-response\">Paginated Response:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": [ ... ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"per_page\": 100,\n    \"total\": 500,\n    \"last_page\": 5\n  }\n}\n\n</code></pre>\n<h3 id=\"error-response\">Error Response:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"error\": \"Error message\",\n  \"message\": \"Detailed error description\",\n  \"status\": false\n}\n\n</code></pre>\n<hr>\n<h2 id=\"⚠️-http-status-codes\">⚠️ HTTP Status Codes</h2>\n<ul>\n<li><p><strong>200 OK</strong> - Request successful</p>\n</li>\n<li><p><strong>201 Created</strong> - Resource created</p>\n</li>\n<li><p><strong>400 Bad Request</strong> - Invalid parameters</p>\n</li>\n<li><p><strong>401 Unauthorized</strong> - Invalid/expired token</p>\n</li>\n<li><p><strong>403 Forbidden</strong> - Insufficient permissions</p>\n</li>\n<li><p><strong>404 Not Found</strong> - Resource not found</p>\n</li>\n<li><p><strong>422 Unprocessable Entity</strong> - Validation errors</p>\n</li>\n<li><p><strong>429 Too Many Requests</strong> - Rate limit exceeded</p>\n</li>\n<li><p><strong>500 Internal Server Error</strong> - Server error</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🎯-best-practices\">🎯 Best Practices</h2>\n<ol>\n<li><p><strong>Token Management</strong> - Implement automatic token refresh before expiration</p>\n</li>\n<li><p><strong>Error Handling</strong> - Always check response status codes and handle errors gracefully</p>\n</li>\n<li><p><strong>Performance</strong> - Use pagination and filters to reduce payload sizes</p>\n</li>\n<li><p><strong>Locale Support</strong> - Always provide locale-specific data for multi-language support</p>\n</li>\n<li><p><strong>Caching</strong> - Cache responses when appropriate to reduce API calls</p>\n</li>\n</ol>\n<hr>\n<h2 id=\"💡-whats-next\">💡 What's Next?</h2>\n<p>I can help you with:</p>\n<ol>\n<li><p><strong>Add test scripts</strong> to validate responses for specific endpoints</p>\n</li>\n<li><p><strong>Create a monitor</strong> to automatically test critical endpoints on a schedule</p>\n</li>\n<li><p><strong>Generate code snippets</strong> in various languages (JavaScript, Python, cURL, PHP, etc.)</p>\n</li>\n<li><p><strong>Set up mock servers</strong> to simulate API responses for development</p>\n</li>\n<li><p><strong>Create automated workflows</strong> using Postman Flows</p>\n</li>\n<li><p><strong>Export documentation</strong> in different formats (HTML, Markdown, PDF)</p>\n</li>\n<li><p><strong>Add examples</strong> to specific requests for better documentation</p>\n</li>\n<li><p><strong>Create pre-request scripts</strong> for dynamic data generation</p>\n</li>\n</ol>\n<p>Would you like me to help with any of these next steps?</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"37137259","collectionId":"ef999799-2be1-4a23-bff8-a1e7a10f1563","publishedId":"2sBXVhEWjS","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-01-16T12:31:35.000Z"},"item":[{"name":"Locale","item":[{"name":"Get All Locales","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","id":"17b693b2-ea14-418b-91ad-df21b54bab83"}}],"id":"46b12040-2604-4a61-badc-628d601c816c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/v1/rest/locales","urlObject":{"path":["api","v1","rest","locales"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"300"},{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"filters","value":"{\"status\":[{\"operator\":\"=\",\"value\": true}]}"},{"disabled":true,"key":"filters","value":"{\"status\":[{\"operator\":\"=\",\"value\": false}]}"}],"variable":[]}},"response":[],"_postman_id":"46b12040-2604-4a61-badc-628d601c816c"},{"name":"Get locale by Code","id":"aa0b8387-0d3c-46e1-9ccc-a31acf32e6bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/v1/rest/locales/en_US","urlObject":{"path":["api","v1","rest","locales","en_US"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa0b8387-0d3c-46e1-9ccc-a31acf32e6bf"},{"name":"Create a Locale","id":"e0995c44-3166-4c7c-836b-560778c95ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"pt_BR\",\n    \"status\": 1\n}"},"url":"{{url}}/api/v1/rest/locales","urlObject":{"path":["api","v1","rest","locales"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0995c44-3166-4c7c-836b-560778c95ec8"},{"name":"Update a Locale","id":"878fec6f-be4d-488a-81c2-7442359d582d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": 1\n}"},"url":"{{url}}/api/v1/rest/locales/pt_BR","urlObject":{"path":["api","v1","rest","locales","pt_BR"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"878fec6f-be4d-488a-81c2-7442359d582d"},{"name":"Delete a Locale","id":"290f48d6-0ae3-4142-ba55-ad1e2dbde91c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/locales/pt_BR","urlObject":{"path":["api","v1","rest","locales","pt_BR"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"290f48d6-0ae3-4142-ba55-ad1e2dbde91c"}],"id":"70b9dc36-f129-4df9-baa2-603a17b94cf7","description":"<p>In this section, we will see all the APIs which are related to locales.</p>\n","_postman_id":"70b9dc36-f129-4df9-baa2-603a17b94cf7"},{"name":"Currency","item":[{"name":"Get all Currencies","id":"e456499f-f5ab-4c4e-b4d4-ba17c01604df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/v1/rest/currencies","urlObject":{"path":["api","v1","rest","currencies"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"100"},{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"filters","value":"{\"status\":[{\"operator\":\"=\",\"value\": true}]}"},{"disabled":true,"key":"filters","value":"{\"status\":[{\"operator\":\"=\",\"value\": false}]}"}],"variable":[]}},"response":[],"_postman_id":"e456499f-f5ab-4c4e-b4d4-ba17c01604df"},{"name":"Get Currency By Code","id":"5f1c8690-4b36-4fe2-b9d9-8d255859fdae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/currencies/SAR","urlObject":{"path":["api","v1","rest","currencies","SAR"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f1c8690-4b36-4fe2-b9d9-8d255859fdae"},{"name":"Create a Currency","id":"15d58015-3a80-47a5-83bf-2847d795e606","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"AED\",\n    \"symbol\": \"د.إ\",\n    \"decimal\": 2,\n    \"status\": 1\n}"},"url":"{{url}}/api/v1/rest/currencies","urlObject":{"path":["api","v1","rest","currencies"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15d58015-3a80-47a5-83bf-2847d795e606"},{"name":"Update a Currency","id":"ced360e4-3da5-4524-81ca-b8161c57ede4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"symbol\": \"د.إ\",\n    \"decimal\": 2,\n    \"status\": 1\n}"},"url":"{{url}}/api/v1/rest/currencies/AED","urlObject":{"path":["api","v1","rest","currencies","AED"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ced360e4-3da5-4524-81ca-b8161c57ede4"},{"name":"Delete a Currency","id":"1388d803-c219-4edf-b4ed-f45b8d00fb16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/currencies/AED","urlObject":{"path":["api","v1","rest","currencies","AED"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1388d803-c219-4edf-b4ed-f45b8d00fb16"}],"id":"d2975038-d46c-4302-a6db-f631a9bc4fea","description":"<p>In this section, we will see all the APIs which are related to Currencies.</p>\n","_postman_id":"d2975038-d46c-4302-a6db-f631a9bc4fea"},{"name":"Channel","item":[{"name":"Get All Channels","id":"b01c96c0-4cba-4012-b235-417b649a01af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/v1/rest/channels","urlObject":{"path":["api","v1","rest","channels"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b01c96c0-4cba-4012-b235-417b649a01af"},{"name":"Get Channel By Code","id":"1ed9a502-1ca8-42c1-a765-6496892ec576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/api/v1/rest/channels/ecommerce","urlObject":{"path":["api","v1","rest","channels","ecommerce"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ed9a502-1ca8-42c1-a765-6496892ec576"},{"name":"Create a Channel","id":"3be6ba5f-a930-46db-bb54-5a6146a0319f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"mobile\",\n    \"root_category\": \"root\",\n    \"locales\": [\n        \"en_US\"\n    ],\n    \"currencies\": [\n        \"USD\"\n    ],\n    \"labels\": {\n        \"en_US\": \"Mobile\"\n    }\n}"},"url":"{{url}}/api/v1/rest/channels","urlObject":{"path":["api","v1","rest","channels"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3be6ba5f-a930-46db-bb54-5a6146a0319f"},{"name":"Update a Channel","id":"092ce7bb-74ed-457d-a242-fc10edd33415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"root_category\": \"root\",\n    \"locales\": [\n        \"en_US\"\n    ],\n    \"currencies\": [\n        \"USD\"\n    ],\n    \"labels\": {\n        \"en_US\": \"Mobile App\"\n    }\n}"},"url":"{{url}}/api/v1/rest/channels/mobile","urlObject":{"path":["api","v1","rest","channels","mobile"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"092ce7bb-74ed-457d-a242-fc10edd33415"},{"name":"Delete a Channel","id":"1eb8eb62-35d1-4f19-99d1-cc98f1193760","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/channels/mobile","urlObject":{"path":["api","v1","rest","channels","mobile"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1eb8eb62-35d1-4f19-99d1-cc98f1193760"}],"id":"9767748c-e7a9-421a-b4f4-e28d0e52be50","description":"<p>In this section, we will see all the APIs which are related to Channels.</p>\n<h3 id></h3>\n","_postman_id":"9767748c-e7a9-421a-b4f4-e28d0e52be50"},{"name":"Category","item":[{"name":"Get All Categories","id":"a1bf9c97-56cf-4a3e-bdf7-d6bf3f7792aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/categories","urlObject":{"path":["api","v1","rest","categories"],"host":["{{url}}"],"query":[{"disabled":true,"key":"filters","value":"{\"parent\":[{\"operator\":\"=\",\"value\": \"master\"}]}"},{"disabled":true,"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"a1bf9c97-56cf-4a3e-bdf7-d6bf3f7792aa"},{"name":"Get Category by Category Code","id":"a85f1567-70fd-484a-a727-de8c892accf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/categories/master_accessories","urlObject":{"path":["api","v1","rest","categories","master_accessories"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a85f1567-70fd-484a-a727-de8c892accf0"},{"name":"Create a Category","id":"35051636-e578-4736-8063-be0cf7f9b7ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"electronic4\",\n    \"parent\": \"electronic2\",\n    \"additional_data\": {\n        \"common\": {\n            \"file\": \"https://morth.nic.in/sites/default/files/dd12-13_0.pdf\",\n            \"image\": \"https://www.gstatic.com/webp/gallery3/1.sm.png\",\n            \"unique\": \"Electronics Unique Category\",\n            \"boolean\": \"1\",\n            \"date123\": \"2024-07-24\",\n            \"checkbox\": \"cbcat2,cbcat3\",\n            \"required\": \"Electronics Required Category\",\n            \"date_time\": \"2024-07-23 11:40:00\",\n            \"description\": \"Electronics Category Description\",\n            \"multi_select\": \"mcat3,mcat4\",\n            \"configuration\": \"Electronics Configuration Section Category\",\n            \"simple_select\": \"cat2\",\n            \"description_editor\": \"<ol>\\r\\n<li><em><strong>Electronics category Description Editor</strong></em></li>\\r\\n</ol>\"\n        },\n        \"locale_specific\": {\n            \"de_DE\": {\n                \"name\": \"Electronic 3 (de_DE)\"\n            },\n            \"en_US\": {\n                \"name\": \"Electronic 3(en_US)\"\n            },\n            \"fr_FR\": {\n                \"name\": \"Electronic 3(fr_FR)\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/categories","urlObject":{"path":["api","v1","rest","categories"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35051636-e578-4736-8063-be0cf7f9b7ad"},{"name":"Update a category","id":"a212ce1c-c928-4cfc-85b2-0eff05ebb738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"electronic3\",\n    \"parent\": \"electronic2\",\n    \"additional_data\": {\n        \"common\": {\n            \"file\": \"category/19/file/WK-HR-004 - Holiday list_2020.pdf\",\n            \"image\": \"category/19/image/6.jpg\",\n            \"unique\": \"Electronics Unique Category\",\n            \"boolean\": \"1\",\n            \"date123\": \"2024-07-24\",\n            \"checkbox\": \"cbcat2,cbcat3\",\n            \"required\": \"Electronics Required Category\",\n            \"date_time\": \"2024-07-23 11:40:00\",\n            \"description\": \"Electronics Category Description\",\n            \"multi_select\": \"mcat3,mcat4\",\n            \"configuration\": \"Electronics Configuration Section Category\",\n            \"simple_select\": \"cat2\",\n            \"description_editor\": \"<ol>\\r\\n<li><em><strong>Electronics category Description Editor</strong></em></li>\\r\\n</ol>\"\n        },\n        \"locale_specific\": {\n            \"de_DE\": {\n                \"name\": \"Electronic 4 (de_DE)\",\n                \"locale\": \"Electronic Locale wise Category DE\"\n            },\n            \"en_US\": {\n                \"name\": \"Electronic 4(en_US)\",\n                \"locale\": \"Electronic Locale wise Category EN\"\n            },\n            \"fr_FR\": {\n                \"name\": \"Electronic 4(fr_FR)\",\n                \"locale\": \"Electronic Locale wise Category FR\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/categories/electronic3","urlObject":{"path":["api","v1","rest","categories","electronic3"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a212ce1c-c928-4cfc-85b2-0eff05ebb738"},{"name":"Upload & Generate Category Media File path","id":"5325ff51-57b6-47cf-8878-1b7d5bcbb1fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/home/users/deepak.kumar/Downloads/Image/bag.jpg"},{"key":"code","value":"electronic3","type":"text"},{"key":"category_field","value":"file","type":"text"},{"key":"scope","value":"null","type":"text","disabled":true},{"key":"locale","value":"null","type":"text","disabled":true}]},"url":"{{url}}/api/v1/rest/media-files/category","urlObject":{"path":["api","v1","rest","media-files","category"],"host":["{{url}}"],"query":[{"disabled":true,"key":"file","value":""}],"variable":[]}},"response":[],"_postman_id":"5325ff51-57b6-47cf-8878-1b7d5bcbb1fb"},{"name":"Delete a Category","id":"7bbcf70a-e2e7-4c31-8f9c-ff75085d4f65","request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/categories/electronic3","urlObject":{"path":["api","v1","rest","categories","electronic3"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bbcf70a-e2e7-4c31-8f9c-ff75085d4f65"},{"name":"Partial Update a Category","id":"e24051ec-2a6c-4bcf-af12-de7592b5afee","request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent\": \"master\",\n    \"additional_data\": {\n        \"locale_specific\": {\n            \"en_US\": {\n                \"name\": \"Electronics Updated\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/categories/electronic3","urlObject":{"path":["api","v1","rest","categories","electronic3"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e24051ec-2a6c-4bcf-af12-de7592b5afee"},{"name":"Get Category Media File","id":"b1760874-fbfe-4b57-a6e9-bdea6946f585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/media-files/category?code=master_accessories&category_field=image","urlObject":{"path":["api","v1","rest","media-files","category"],"host":["{{url}}"],"query":[{"key":"code","value":"master_accessories"},{"key":"category_field","value":"image"}],"variable":[]}},"response":[],"_postman_id":"b1760874-fbfe-4b57-a6e9-bdea6946f585"},{"name":"Delete Category Media File","id":"1d5d2545-ebc1-4a91-b531-bd7f27007f12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/media-files/category?code=master_accessories&category_field=image","urlObject":{"path":["api","v1","rest","media-files","category"],"host":["{{url}}"],"query":[{"key":"code","value":"master_accessories"},{"key":"category_field","value":"image"}],"variable":[]}},"response":[],"_postman_id":"1d5d2545-ebc1-4a91-b531-bd7f27007f12"}],"id":"ab90bde4-60cb-4a4d-87ef-2176336cee55","description":"<p>In this section, we will see all the APIs which are related to Category.</p>\n<h3 id></h3>\n","_postman_id":"ab90bde4-60cb-4a4d-87ef-2176336cee55"},{"name":"Category Fields","item":[{"name":"Get All Category Fields","id":"2abae894-bac8-445a-95b2-ab7c0a486749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":" application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/category-fields","urlObject":{"path":["api","v1","rest","category-fields"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"100"},{"disabled":true,"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"2abae894-bac8-445a-95b2-ab7c0a486749"},{"name":"Get a Category Field By Code","id":"2dfe3ae0-9041-408d-8872-13148d1e4174","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/category-fields/simple_select","urlObject":{"path":["api","v1","rest","category-fields","simple_select"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2dfe3ae0-9041-408d-8872-13148d1e4174"},{"name":"Create a Category Field","id":"d01061d3-a321-4f7d-a097-6739a016d12d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"erpname\",\n    \"type\": \"text\",\n    \"status\": 1,\n    \"validation\": null,\n    \"regex_pattern\": \"\",\n    \"position\": 1,\n    \"is_required\": 0,\n    \"is_unique\": 0,\n    \"value_per_locale\": 0,\n    \"enable_wysiwyg\": 0,\n    \"section\": \"left\",\n    \"labels\": {\n        \"en_US\": \"Erp Name\",\n        \"fr_FR\": \"Erp Name\",\n        \"de_DE\": \"Erp Name\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/category-fields","urlObject":{"path":["api","v1","rest","category-fields"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d01061d3-a321-4f7d-a097-6739a016d12d"},{"name":"Update a Category Field By Code","id":"279785ee-bf15-4d69-a78f-3c29e185e866","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"text\",\n    \"status\": 1,\n    \"regex_pattern\": \"\",\n    \"validation\": null,\n    \"position\": 1,\n    \"is_required\": 1,\n    \"is_unique\": 1,\n    \"section\": \"left\",\n    \"value_per_locale\": 1,\n    \"enable_wysiwyg\": 0,\n    \"labels\": {\n        \"en_US\": \"Erp Name\",\n        \"fr_FR\": \"Erp Name\",\n        \"de_DE\": \"Erp Name\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/category-fields/erpname","urlObject":{"path":["api","v1","rest","category-fields","erpname"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"279785ee-bf15-4d69-a78f-3c29e185e866"},{"name":"Partial Update a Category Field","id":"21ec26e2-e5ab-4395-8e5d-0e598b867389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"en_US\": \"ERP Name\"\n    }\n}"},"url":"{{url}}/api/v1/rest/category-fields/erpname","urlObject":{"path":["api","v1","rest","category-fields","erpname"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21ec26e2-e5ab-4395-8e5d-0e598b867389"},{"name":"Delete a Category Field","id":"c8a1756a-1d54-4854-b315-415e6e60f33a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/category-fields/erpname","urlObject":{"path":["api","v1","rest","category-fields","erpname"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8a1756a-1d54-4854-b315-415e6e60f33a"}],"id":"c2c9fbd7-6ab9-46f0-a58d-4b62655c0f72","description":"<p>In this section, we will see all the APIs which are related to Category Fields.</p>\n<h3 id></h3>\n","_postman_id":"c2c9fbd7-6ab9-46f0-a58d-4b62655c0f72"},{"name":"Category Field Options","item":[{"name":"Get a Category Field Options By Code","id":"5a8c5691-5922-41df-9e7a-296c43d9f1ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/category-fields/{{FieldCode}}/options","urlObject":{"path":["api","v1","rest","category-fields","{{FieldCode}}","options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a8c5691-5922-41df-9e7a-296c43d9f1ed"},{"name":"Create a Category Field Options","id":"eb8981b1-3e28-404d-b5a5-0b4bea33f382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":" application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"code\": \"black\",\n        \"sort_order\": 2,\n        \"labels\": {\n            \"en_US\": \"Black\",\n            \"fr_FR\": \"Noir\"\n        }\n    },\n    {\n        \"code\": \"red\",\n        \"sort_order\": 2,\n        \"labels\": {\n            \"en_US\": \"red\",\n            \"fr_FR\": \"red\"\n        }\n    },\n    {\n        \"code\": \"ddsdfasdas\",\n        \"sort_order\": 2,\n        \"labels\": {\n            \"en_US\": \"Black\",\n            \"fr_FR\": \"Noir\"\n        }\n    }\n\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/category-fields/checkbox/options","urlObject":{"path":["api","v1","rest","category-fields","checkbox","options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb8981b1-3e28-404d-b5a5-0b4bea33f382"},{"name":"Update Category Field Options","id":"5a168ce1-f44f-4b4f-a29b-685f39708813","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"code\": \"black\",\n        \"sort_order\": 2,\n        \"labels\": {\n            \"en_US\": \"Black\",\n            \"fr_FR\": \"Noir\"\n        }\n    },\n    {\n        \"code\": \"red\",\n        \"sort_order\": 1,\n        \"labels\": {\n            \"en_US\": \"red\",\n            \"fr_FR\": \"red\"\n        }\n    },\n    {\n        \"code\": \"ddsdfasdas\",\n        \"sort_order\": 3,\n        \"labels\": {\n            \"en_US\": \"Black\",\n            \"fr_FR\": \"Noir\"\n        }\n    }\n\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/category-fields/checkbox/options","urlObject":{"path":["api","v1","rest","category-fields","checkbox","options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a168ce1-f44f-4b4f-a29b-685f39708813"},{"name":"Delete a Category Field Option","id":"b156dc22-56af-4708-b488-6c82efe9c80e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/category-fields/checkbox/options/option1","urlObject":{"path":["api","v1","rest","category-fields","checkbox","options","option1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b156dc22-56af-4708-b488-6c82efe9c80e"}],"id":"8154968a-62d5-429d-8691-5e80625f3444","description":"<p>In this section, we will see all the APIs which are related to Category Field Options.</p>\n<h3 id></h3>\n","_postman_id":"8154968a-62d5-429d-8691-5e80625f3444"},{"name":"Attribute","item":[{"name":"Get an Attributes","id":"3991d296-bad5-407c-a232-20570ca95f95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attributes","urlObject":{"path":["api","v1","rest","attributes"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"100"},{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"filters","value":"{\"code\":[{\"operator\":\"IN\",\"value\": [\"weight\"]}]}"}],"variable":[]}},"response":[],"_postman_id":"3991d296-bad5-407c-a232-20570ca95f95"},{"name":"Get an Attribute By Code","id":"78704fac-b5df-40b4-8c11-f18b482e77b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attributes/status","urlObject":{"path":["api","v1","rest","attributes","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"78704fac-b5df-40b4-8c11-f18b482e77b6"},{"name":"Create an attribute","id":"b9d677c9-911f-4361-b7a9-569559cc5c8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"erpname\",\n    \"type\": \"text\",\n    \"swatch_type\": null,\n    \"validation\": null,\n    \"regex_pattern\": null,\n    \"position\": 3,\n    \"is_required\": 0,\n    \"is_unique\": 0,\n    \"is_configurable\": 0,\n    \"value_per_locale\": 0,\n    \"value_per_channel\": 1,\n    \"default_value\": null,\n    \"enable_wysiwyg\": 0,\n    \"labels\": {\n        \"en_US\": \"ERP Name\",\n        \"de_DE\": \"ERP Name\",\n        \"fr_FR\": \"ERP Name\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/attributes","urlObject":{"path":["api","v1","rest","attributes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9d677c9-911f-4361-b7a9-569559cc5c8e"},{"name":"Update an Attribute By Attribute Code","id":"ce097e19-7798-4f42-8ec3-c94675375182","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":" application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"releasedate\",\n    \"type\": \"datetime\",\n    \"swatch_type\": null,\n    \"validation\": null,\n    \"regex_pattern\": \"\",\n    \"position\": null,\n    \"is_required\": 0,\n    \"is_unique\": 0,\n    \"is_configurable\": 0,\n    \"value_per_locale\": 0,\n    \"value_per_channel\": 0,\n    \"enable_wysiwyg\": 0,\n    \"labels\": {\n        \"en_US\": \"Release Data\",\n        \"fr_FR\": \"Release Data French\",\n        \"de_DE\": \"Release Data German\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/attributes/releasedate","urlObject":{"path":["api","v1","rest","attributes","releasedate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce097e19-7798-4f42-8ec3-c94675375182"},{"name":"Partial Update an Attribute","id":"6cdcd5a2-838b-4296-bdd6-3d6bf73562fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"en_US\": \"Release Date\"\n    }\n}"},"url":"{{url}}/api/v1/rest/attributes/releasedate","urlObject":{"path":["api","v1","rest","attributes","releasedate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6cdcd5a2-838b-4296-bdd6-3d6bf73562fa"},{"name":"Delete an Attribute","id":"608f2954-cc7d-4125-b179-aa094ef8f44e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attributes/releasedate","urlObject":{"path":["api","v1","rest","attributes","releasedate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"608f2954-cc7d-4125-b179-aa094ef8f44e"}],"id":"fd21b305-ec5d-4d35-b587-d687e868d64f","description":"<p>In this section, we will see all the APIs which are related to Attribute.</p>\n<h3 id></h3>\n","_postman_id":"fd21b305-ec5d-4d35-b587-d687e868d64f"},{"name":"Attribute Options","item":[{"name":"Get Attribute Options By Attribute Code","id":"037a0df4-eefd-4651-8d1a-4f6c6284f616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attributes/size/options","urlObject":{"path":["api","v1","rest","attributes","size","options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"037a0df4-eefd-4651-8d1a-4f6c6284f616"},{"name":"Create Attribute Options By Attribute Code","id":"7039c67c-ad84-4c20-b33d-89e651d7f66a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"code\": \"size4\",\n        \"sort_order\": 4,\n        \"labels\": {\n            \"de_DE\": \"Extra Large\",\n            \"en_US\": \"Extra Large\",\n            \"fr_FR\": \"Extra Large\"\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/attributes/size/options","urlObject":{"path":["api","v1","rest","attributes","size","options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7039c67c-ad84-4c20-b33d-89e651d7f66a"},{"name":"Update Attribute Options By Attribute Code","id":"59d3e93b-5892-4ee7-bf5c-39e307cd7050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"code\": \"SL\",\n        \"sort_order\": 1,\n        \"labels\": {\n            \"en_US\": \"SELL123\"\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/attributes/size/options","urlObject":{"path":["api","v1","rest","attributes","size","options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59d3e93b-5892-4ee7-bf5c-39e307cd7050"},{"name":"Upload & Generate Swatch Media File path","id":"05144a2a-1371-4783-ac3d-67b2564f7f67","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/path/to/swatch-image.png"}]},"url":"{{url}}/api/v1/rest/media-files/swatch","urlObject":{"path":["api","v1","rest","media-files","swatch"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"05144a2a-1371-4783-ac3d-67b2564f7f67"},{"name":"Delete an Attribute Option","id":"d797d866-7cfc-4263-ab22-c7c53a4ccd49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attributes/size/options/xl","urlObject":{"path":["api","v1","rest","attributes","size","options","xl"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d797d866-7cfc-4263-ab22-c7c53a4ccd49"},{"name":"Get Swatch Media File","id":"bf6b6144-cdd9-48df-ab16-2c58afaedab7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/media-files/swatch?attribute_code=color&code=red","urlObject":{"path":["api","v1","rest","media-files","swatch"],"host":["{{url}}"],"query":[{"key":"attribute_code","value":"color"},{"key":"code","value":"red"}],"variable":[]}},"response":[],"_postman_id":"bf6b6144-cdd9-48df-ab16-2c58afaedab7"},{"name":"Delete Swatch Media File","id":"3de877a5-2b6f-44fb-bdce-5736c7800ddd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/media-files/swatch?attribute_code=color&code=red","urlObject":{"path":["api","v1","rest","media-files","swatch"],"host":["{{url}}"],"query":[{"key":"attribute_code","value":"color"},{"key":"code","value":"red"}],"variable":[]}},"response":[],"_postman_id":"3de877a5-2b6f-44fb-bdce-5736c7800ddd"}],"id":"3b6465f7-4fde-44a4-99fd-8ffcf27ea67b","description":"<p>In this section, we will see all the APIs which are related to Attribute Options.</p>\n<h3 id></h3>\n","_postman_id":"3b6465f7-4fde-44a4-99fd-8ffcf27ea67b"},{"name":"Attribute Groups","item":[{"name":"Get All Attribute Groups","id":"cfb3058e-c624-4e80-9c72-e0fd6c15bc6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attribute-groups","urlObject":{"path":["api","v1","rest","attribute-groups"],"host":["{{url}}"],"query":[{"disabled":true,"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"cfb3058e-c624-4e80-9c72-e0fd6c15bc6d"},{"name":"Get Attribute Group by Group Code","id":"6ec42410-fed7-47da-883d-f0c67719ba01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attribute-groups/marketing","urlObject":{"path":["api","v1","rest","attribute-groups","marketing"],"host":["{{url}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"6ec42410-fed7-47da-883d-f0c67719ba01"},{"name":"Create an Attribute Group","id":"47126d57-4523-488a-ba4a-f9a0d4a6c6eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"PIM2\",\n    \"labels\": {\n        \"en_US\": \"Pim Laravel1 German\",\n        \"fr_FR\": \"Pim Laravel1\",\n        \"de_DE\": \"Pim Laravel1 French\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/attribute-groups","urlObject":{"path":["api","v1","rest","attribute-groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47126d57-4523-488a-ba4a-f9a0d4a6c6eb"},{"name":"Update an Attribute Group","id":"db93ad02-a7c6-478d-a398-5228d3631f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"PIM2\",\n    \"labels\": {\n        \"en_US\": \"PIM23\",\n        \"fr_FR\": \"PIM241\",\n        \"de_DE\": \"PIM25\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/attribute-groups/PIM2","urlObject":{"path":["api","v1","rest","attribute-groups","PIM2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db93ad02-a7c6-478d-a398-5228d3631f49"},{"name":"Partial Update an Attribute Group","id":"c4db8e5d-3fce-4a91-b1b2-173667b19e42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"en_US\": \"Marketing\"\n    }\n}"},"url":"{{url}}/api/v1/rest/attribute-groups/marketing","urlObject":{"path":["api","v1","rest","attribute-groups","marketing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4db8e5d-3fce-4a91-b1b2-173667b19e42"},{"name":"Delete an Attribute Group","id":"64c55309-c373-46ef-b5df-1d5e19c6d873","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attribute-groups/PIM2","urlObject":{"path":["api","v1","rest","attribute-groups","PIM2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"64c55309-c373-46ef-b5df-1d5e19c6d873"}],"id":"7eeb4c58-9ce4-423f-840b-52a505fd4961","description":"<p>In this section, we will see all the APIs which are related to Attribute Groups.</p>\n<h3 id></h3>\n","_postman_id":"7eeb4c58-9ce4-423f-840b-52a505fd4961"},{"name":"Attribute Families","item":[{"name":"Get a Attribute Families","id":"bef6a223-6e68-4ff5-b0eb-24971b1d6243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/families","urlObject":{"path":["api","v1","rest","families"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bef6a223-6e68-4ff5-b0eb-24971b1d6243"},{"name":"Get a Attribute Families By Family Code","id":"d5247758-5090-4d3b-80d5-b4364f3d68e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/families/accessories","urlObject":{"path":["api","v1","rest","families","accessories"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5247758-5090-4d3b-80d5-b4364f3d68e0"},{"name":"Create a Attribute Family","id":"d094dd6c-d3c1-441b-90ce-b56a87d99e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":" application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"Garment\",\n    \"labels\": {\n        \"de_DE\": \"Garment German\",\n        \"en_US\": \"Garment\",\n        \"fr_FR\": \"Garment French\"\n    },\n    \"attribute_groups\": [\n        {\n            \"code\": \"product\",\n            \"position\": 1,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"sku\",\n                    \"position\": 1\n                },\n                {\n                    \"code\": \"Name\",\n                    \"position\": 2\n                },\n                {\n                    \"code\": \"erpname\",\n                    \"position\": 3\n                },\n                {\n                    \"code\": \"collection\",\n                    \"position\": 4\n                },\n                {\n                    \"code\": \"description\",\n                    \"position\": 5\n                },\n                {\n                    \"code\": \"price\",\n                    \"position\": 6\n                },\n                {\n                    \"code\": \"color\",\n                    \"position\": 7\n                },\n                {\n                    \"code\": \"size\",\n                    \"position\": 8\n                },\n                {\n                    \"code\": \"colormuliselect\",\n                    \"position\": 9\n                },\n                {\n                    \"code\": \"colorlocalewise\",\n                    \"position\": 10\n                },\n                {\n                    \"code\": \"colorchannelwise\",\n                    \"position\": 11\n                }\n            ]\n        },\n        {\n            \"code\": \"medias\",\n            \"position\": 2,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"image\",\n                    \"position\": 1\n                },\n                {\n                    \"code\": \"files\",\n                    \"position\": 2\n                }\n            ]\n        },\n        {\n            \"code\": \"technical\",\n            \"position\": 3,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"status\",\n                    \"position\": 1\n                },\n                {\n                    \"code\": \"auto_exposure\",\n                    \"position\": 2\n                },\n                {\n                    \"code\": \"releasedate\",\n                    \"position\": 3\n                },\n                {\n                    \"code\": \"expire_date\",\n                    \"position\": 4\n                }\n            ]\n        },\n        {\n            \"code\": \"seo\",\n            \"position\": 4,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"short_description\",\n                    \"position\": 1\n                }\n            ]\n        },\n        {\n            \"code\": \"marketing\",\n            \"position\": 5,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"store\",\n                    \"position\": 1\n                }\n            ]\n        },\n        {\n            \"code\": \"erp\",\n            \"position\": 6,\n            \"custom_attributes\": []\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/families","urlObject":{"path":["api","v1","rest","families"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d094dd6c-d3c1-441b-90ce-b56a87d99e9e"},{"name":"Update a Attribute Family","id":"8555493f-8e09-4e06-9e81-3caf4a290e61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"shoes\",\n    \"labels\": {\n        \"de_DE\": \"Shoes German\",\n        \"en_US\": \"Shoes\",\n        \"fr_FR\": \"Shoes French\"\n    },\n    \"attribute_groups\": [\n        {\n            \"code\": \"product\",\n            \"position\": 1,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"sku\",\n                    \"position\": 1\n                },\n                {\n                    \"code\": \"Name\",\n                    \"position\": 2\n                },\n                {\n                    \"code\": \"collection\",\n                    \"position\": 3\n                },\n                {\n                    \"code\": \"description\",\n                    \"position\": 4\n                },\n                {\n                    \"code\": \"price\",\n                    \"position\": 5\n                },\n                {\n                    \"code\": \"color\",\n                    \"position\": 6\n                }\n            ]\n        },\n        {\n            \"code\": \"medias\",\n            \"position\": 2,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"image\",\n                    \"position\": 1\n                },\n                {\n                    \"code\": \"files\",\n                    \"position\": 2\n                }\n            ]\n        },\n        {\n            \"code\": \"technical\",\n            \"position\": 3,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"status\",\n                    \"position\": 1\n                },\n                {\n                    \"code\": \"auto_exposure\",\n                    \"position\": 2\n                },\n                {\n                    \"code\": \"releasedate\",\n                    \"position\": 3\n                },\n                {\n                    \"code\": \"expire_date\",\n                    \"position\": 4\n                }\n            ]\n        },\n        {\n            \"code\": \"seo\",\n            \"position\": 4,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"short_description\",\n                    \"position\": 1\n                }\n            ]\n        },\n        {\n            \"code\": \"marketing\",\n            \"position\": 5,\n            \"custom_attributes\": [\n                {\n                    \"code\": \"store\",\n                    \"position\": 1\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/families/shoes","urlObject":{"path":["api","v1","rest","families","shoes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8555493f-8e09-4e06-9e81-3caf4a290e61"},{"name":"Partial Update an Attribute Family","id":"e3f0e591-9801-40f3-b578-d80d87c90951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"en_US\": \"Shoes\"\n    }\n}"},"url":"{{url}}/api/v1/rest/families/shoes","urlObject":{"path":["api","v1","rest","families","shoes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3f0e591-9801-40f3-b578-d80d87c90951"},{"name":"Delete an Attribute Family","id":"dee89f18-3ca4-4844-9b20-831dadc466f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/families/shoes","urlObject":{"path":["api","v1","rest","families","shoes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dee89f18-3ca4-4844-9b20-831dadc466f8"}],"id":"6c1a736b-b7c9-4d7b-8996-ac6d547f8747","description":"<p>In this section, we will see all the APIs which are related to Attribute Family.</p>\n","_postman_id":"6c1a736b-b7c9-4d7b-8996-ac6d547f8747"},{"name":"Product","item":[{"name":"Get All Products","id":"8522014b-5d32-4684-92d0-400b80d2f979","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/products","urlObject":{"path":["api","v1","rest","products"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"100"},{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"filters","value":"{\"parent\":[{\"operator\":\"=\",\"value\": \"root\"}]}"}],"variable":[]}},"response":[],"_postman_id":"8522014b-5d32-4684-92d0-400b80d2f979"},{"name":"Get Product By SKU","id":"3c9b2565-705c-4a22-a902-ae5907cb267c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/products/1111111304","urlObject":{"path":["api","v1","rest","products","1111111304"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c9b2565-705c-4a22-a902-ae5907cb267c"},{"name":"Create a Product","id":"68b3fdbd-b01c-442b-b8b6-239cf3591c05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sku\": \"44441\",\n    \"parent\": null,\n    \"family\": \"default\",\n    \"type\": \"simple\",\n    \"additional\": null,\n    \"values\": {\n        \"common\": {\n            \"sku\": \"44441\",\n            \"Name\": \"Webkul Simple Product\",\n            \"size\": \"size3\",\n            \"color\": \"option1\",\n            \"price\": \"{\\\"USD\\\":\\\"100\\\"}\",\n            \"status\": \"true\",\n            \"collection\": \"option2,option3\",\n            \"description\": \"<p>Webkul Simple Product Description1111</p>\",\n            \"colormuliselect\": \"red1,blue1\",\n            \"short_description\": \"Webkul Simple Product Short Description211\"\n        },\n        \"categories\": [\n            \"root\"\n        ],\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/products","urlObject":{"path":["api","v1","rest","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68b3fdbd-b01c-442b-b8b6-239cf3591c05"},{"name":"Update a Product","id":"c86e6f53-a060-443c-a28c-027bc256446a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sku\": \"44441\",\n    \"parent\": null,\n    \"family\": \"accessories\",\n    \"type\": \"simple\",\n    \"additional\": null,\n    \"created_at\": \"2024-07-11T13:21:46.000000Z\",\n    \"updated_at\": \"2024-07-24T09:50:08.000000Z\",\n    \"values\": {\n        \"common\": {\n            \"sku\": \"44441\",\n            \"Name\": \"Webkul Simple Product update\",\n            \"size\": \"size3\",\n            \"color\": \"option1\",\n            \"files\": \"product/1/files/SqYmzz9q9WdxNBWCJ0Ywvf7OTAChCjMad0djezq8/AKENEO CE-7.0.47 DOC.pdf\",\n            \"image\": \"product/1/image/2qF30fimXHruk2RrY2MBkMZgvyuwUG7bZNdCUa1R/5.jpg\",\n            \"price\": \"{\\\"USD\\\":\\\"100\\\"}\",\n            \"store\": \"garment\",\n            \"status\": \"true\",\n            \"collection\": \"option2,option3\",\n            \"description\": \"<p>Webkul Simple Product Description1111</p>\",\n            \"expire_date\": \"2024-07-11\",\n            \"releasedate\": \"2024-07-11 08:25:00\",\n            \"auto_exposure\": \"true\",\n            \"colormuliselect\": \"red1,blue1\",\n            \"short_description\": \"Webkul Simple Product Short Description211\"\n        },\n        \"categories\": [\n            \"master\",\n            \"master_accessories\",\n            \"master_accessories_belts\",\n            \"master_accessories_bags\",\n            \"master_accessories_sunglasses\",\n            \"master_men\",\n            \"master_men_blazers\",\n            \"master_men_blazers_deals\"\n        ],\n        \"associations\": {\n            \"up_sells\": [\n                \"1111111307\"\n            ],\n            \"cross_sells\": [\n                \"1111111307\"\n            ],\n            \"related_products\": [\n                \"1111111307\"\n            ]\n        },\n        \"locale_specific\": {\n            \"de_DE\": {\n                \"colorlocalewise\": \"black\"\n            },\n            \"en_US\": {\n                \"colorlocalewise\": \"pink\"\n            },\n            \"fr_FR\": {\n                \"colorlocalewise\": \"white\"\n            }\n        },\n        \"channel_specific\": {\n            \"default\": {\n                \"colorchannelwise\": \"opt2\"\n            },\n            \"ecommerce\": {\n                \"colorchannelwise\": \"opt2\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/products/44441","urlObject":{"path":["api","v1","rest","products","44441"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c86e6f53-a060-443c-a28c-027bc256446a"},{"name":"Delete a Product","id":"8e02c3ad-66b1-4a14-a0d4-67978c031797","request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/products/44441","urlObject":{"path":["api","v1","rest","products","44441"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e02c3ad-66b1-4a14-a0d4-67978c031797"},{"name":"Partial Update a Product","id":"4b4e577d-79f1-45dd-a6da-e96f069f5822","request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sku\": \"44441\",\n    \"values\": {\n        \"common\": {\n            \"status\": true\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/products/44441","urlObject":{"path":["api","v1","rest","products","44441"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b4e577d-79f1-45dd-a6da-e96f069f5822"},{"name":"Get Product Media File","id":"367ba1dd-6c0b-47f2-862e-c0aa511f69ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/media-files/product?sku=1111111304&attribute=image","urlObject":{"path":["api","v1","rest","media-files","product"],"host":["{{url}}"],"query":[{"key":"sku","value":"1111111304"},{"key":"attribute","value":"image"}],"variable":[]}},"response":[],"_postman_id":"367ba1dd-6c0b-47f2-862e-c0aa511f69ef"},{"name":"Delete Product Media File","id":"895c5224-c65b-48a9-a6f5-d413e98e19b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/media-files/product?sku=1111111304&attribute=image","urlObject":{"path":["api","v1","rest","media-files","product"],"host":["{{url}}"],"query":[{"key":"sku","value":"1111111304"},{"key":"attribute","value":"image"}],"variable":[]}},"response":[],"_postman_id":"895c5224-c65b-48a9-a6f5-d413e98e19b2"}],"id":"800b5ecf-c06d-49a3-a533-4d5e302a85fe","description":"<p>In this section, we will see all the APIs which are related to Products.</p>\n<h3 id></h3>\n","_postman_id":"800b5ecf-c06d-49a3-a533-4d5e302a85fe"},{"name":"Configurable Products","item":[{"name":"Get a Configurable Products","id":"9ba3fa32-7b2d-440c-b417-aa1c57640b08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/configurable-products??limit=10&page=1","urlObject":{"path":["api","v1","rest","configurable-products"],"host":["{{url}}"],"query":[{"key":"?limit","value":"10"},{"key":"page","value":"1"},{"disabled":true,"key":"filters","value":"{\"categories\":[{\"operator\":\"IN\",\"value\":[\"root\"]}], \"sku\":[{\"operator\":\"=\",\"value\": \"config-123\"}]}"}],"variable":[]}},"response":[],"_postman_id":"9ba3fa32-7b2d-440c-b417-aa1c57640b08"},{"name":"Get a Configurable Product","id":"e51289c7-e0c7-4381-8fa4-160c3377ca2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/configurable-products/Configurable-product","urlObject":{"path":["api","v1","rest","configurable-products","Configurable-product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e51289c7-e0c7-4381-8fa4-160c3377ca2d"},{"name":"Create a Configurable Product","id":"e13e73c8-a03b-4731-aaf0-84c1f2ad21b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n           \"sku\": \"Akeneo-product\",\n           \"parent\": null,\n           \"family\": \"accessories\",\n           \"type\": \"configurable\",\n           \"additional\": null,\n           \"created_at\": \"2024-07-12T07:41:29.000000Z\",\n           \"updated_at\": \"2024-07-24T11:17:13.000000Z\",\n           \"values\": {\n               \"common\": {\n                   \"sku\": \"Akeneo-product\",\n                   \"Name\": \"Akeneo Product\",\n                   \"size\": \"size4\",\n                   \"store\": \"mobile\",\n                   \"status\": \"false\",\n                   \"collection\": \"option3\",\n                   \"description\": \"<p>Akeneo product description</p>\",\n                   \"expire_date\": \"2024-07-12\",\n                   \"releasedate\": \"2024-07-12 12:00:00\",\n                   \"auto_exposure\": \"false\",\n                   \"short_description\": \"Akeneo Product\"\n               },\n               \"categories\": [\n                   \"master_men_blazers\",\n                   \"master_men_blazers_deals\"\n               ],\n               \"associations\": {\n                   \"up_sells\": [\n                       \"1111111304\"\n                   ],\n                   \"cross_sells\": [\n                       \"1111111304\"\n                   ],\n                   \"related_products\": [\n                       \"1111111304\"\n                   ]\n               }\n           },\n           \"super_attributes\": [\n               \"color\"\n           ]\n       }","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/configurable-products","urlObject":{"path":["api","v1","rest","configurable-products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e13e73c8-a03b-4731-aaf0-84c1f2ad21b9"},{"name":"Update a Configurable Product","id":"a22fd97b-b2cc-4fd8-b51f-1cacdebfed6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n           \"sku\": \"Akeneo-product\",\n           \"parent\": null,\n           \"family\": \"accessories\",\n           \"type\": \"Akeneo\",\n           \"additional\": null,\n           \"created_at\": \"2024-07-12T07:41:29.000000Z\",\n           \"updated_at\": \"2024-07-24T11:17:13.000000Z\",\n           \"values\": {\n               \"common\": {\n                   \"sku\": \"Akeneo-product\",\n                   \"Name\": \"Akeneo Product\",\n                   \"size\": \"size4\",\n                   \"store\": \"mobile\",\n                   \"status\": \"false\",\n                   \"collection\": \"option3\",\n                   \"description\": \"<p>Akeneo product description</p>\",\n                   \"expire_date\": \"2024-07-12\",\n                   \"releasedate\": \"2024-07-12 12:00:00\",\n                   \"auto_exposure\": \"false\",\n                   \"short_description\": \"Akeneo Product111\"\n               },\n               \"categories\": [\n                   \"master_men_blazers\",\n                   \"master_men_blazers_deals\"\n               ],\n               \"associations\": {\n                   \"up_sells\": [\n                       \"1111111304\"\n                   ],\n                   \"cross_sells\": [\n                       \"1111111304\"\n                   ],\n                   \"related_products\": [\n                       \"1111111304\"\n                   ]\n               }\n           },\n           \"super_attributes\": [\n               \"color\"\n           ],\n           \"variants\": [\n               {\n                   \"sku\": \"Akeneo-product-option1\",\n                   \"attributes\": {\n                       \"color\": \"option1\"\n                   }\n               },\n               {\n                   \"sku\": \"Akeneo-product-option2\",\n                   \"attributes\": {\n                       \"color\": \"option2\"\n                   }\n               }\n           ]\n       }","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/configurable-products/Akeneo-product","urlObject":{"path":["api","v1","rest","configurable-products","Akeneo-product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a22fd97b-b2cc-4fd8-b51f-1cacdebfed6f"},{"name":"Add New Varaint (Product childs)","id":"4523e40f-f333-4d1e-ba9b-fde4ae97ff42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n           \"parent\": \"Akeneo-product\",\n           \"family\": \"accessories\",\n           \"additional\": null,\n           \"created_at\": \"2024-07-12T07:41:29.000000Z\",\n           \"updated_at\": \"2024-07-24T11:17:13.000000Z\",\n           \"values\": {\n               \"common\": {\n                   \"sku\": \"Akeneo-product-option2\",\n                   \"Name\": \"Akeneo Product\",\n                   \"size\": \"size4\",\n                   \"store\": \"mobile\",\n                   \"status\": \"false\",\n                   \"collection\": \"option3\",\n                   \"description\": \"<p>Akeneo product description</p>\",\n                   \"expire_date\": \"2024-07-12\",\n                   \"releasedate\": \"2024-07-12 12:00:00\",\n                   \"auto_exposure\": \"false\",\n                   \"short_description\": \"Akeneo Product111\"\n               },\n               \"categories\": [\n                   \"master_men_blazers\",\n                   \"master_men_blazers_deals\"\n               ],\n               \"associations\": {\n                   \"up_sells\": [\n                       \"1111111304\"\n                   ],\n                   \"cross_sells\": [\n                       \"1111111304\"\n                   ],\n                   \"related_products\": [\n                       \"1111111304\"\n                   ]\n               }\n           },\n           \"variant\": {\n        \"attributes\": {\n            \"color\": \"option2\"\n        }\n       }}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/products","urlObject":{"path":["api","v1","rest","products"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4523e40f-f333-4d1e-ba9b-fde4ae97ff42"},{"name":"Upload & Generate Product Media File path","id":"d5b5841a-9d2b-4ca6-82c3-ab7d1ca5b4b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/home/users/deepak.kumar/Downloads/Image/mb01-blue-0.jpg"},{"key":"sku","value":"1111111304","type":"text"},{"key":"attribute","value":"image","type":"text"},{"key":"channel","value":"default","type":"text","disabled":true},{"key":"locale","value":"null","type":"text","disabled":true}]},"url":"{{url}}/api/v1/rest/media-files/product","urlObject":{"path":["api","v1","rest","media-files","product"],"host":["{{url}}"],"query":[{"disabled":true,"key":"file","value":""}],"variable":[]}},"response":[],"_postman_id":"d5b5841a-9d2b-4ca6-82c3-ab7d1ca5b4b5"},{"name":"Partial Update a Configurable Product","id":"697a747c-7e32-4ba7-a989-66a3a0c17a38","request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sku\": \"Akeneo-product\",\n    \"values\": {\n        \"common\": {\n            \"status\": true\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v1/rest/configurable-products/Akeneo-product","urlObject":{"path":["api","v1","rest","configurable-products","Akeneo-product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"697a747c-7e32-4ba7-a989-66a3a0c17a38"},{"name":"Delete a Configurable Product","id":"04178d2f-0c1c-4d22-9403-c39e3717720d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/configurable-products/Configurable-product","urlObject":{"path":["api","v1","rest","configurable-products","Configurable-product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04178d2f-0c1c-4d22-9403-c39e3717720d"}],"id":"19062bcd-5e3e-4c3f-b5b7-f388d02847e9","description":"<p>In this section, we will see all the APIs which are related to Configurable Products.</p>\n<h3 id></h3>\n","_postman_id":"19062bcd-5e3e-4c3f-b5b7-f388d02847e9"},{"name":"Delta Sync & Caching","item":[{"name":"Get Products Updated Since (Delta Sync)","id":"6ef27dbe-4196-472b-8826-78d913dc1595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/products?filters={\"updated_at\":[{\"operator\":\">\",\"value\":\"2026-01-01 00:00:00\"}]}&limit=100","description":"<p>Fetches only products changed after the given timestamp. Supported operators on updated_at/created_at: &gt;, &gt;=, &lt;, &lt;=, BETWEEN (BETWEEN takes an array of exactly two datetimes). Store the timestamp of your last successful sync and pass it here to avoid re-downloading the whole catalog.</p>\n","urlObject":{"path":["api","v1","rest","products"],"host":["{{url}}"],"query":[{"key":"filters","value":"{\"updated_at\":[{\"operator\":\">\",\"value\":\"2026-01-01 00:00:00\"}]}"},{"key":"limit","value":"100"}],"variable":[]}},"response":[],"_postman_id":"6ef27dbe-4196-472b-8826-78d913dc1595"},{"name":"Get Products Between Dates","id":"5de5d70f-109b-4662-846a-cb3f2e76dc49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/products?filters={\"updated_at\":[{\"operator\":\"BETWEEN\",\"value\":[\"2026-01-01 00:00:00\",\"2026-02-01 00:00:00\"]}]}&limit=100","urlObject":{"path":["api","v1","rest","products"],"host":["{{url}}"],"query":[{"key":"filters","value":"{\"updated_at\":[{\"operator\":\"BETWEEN\",\"value\":[\"2026-01-01 00:00:00\",\"2026-02-01 00:00:00\"]}]}"},{"key":"limit","value":"100"}],"variable":[]}},"response":[],"_postman_id":"5de5d70f-109b-4662-846a-cb3f2e76dc49"},{"name":"Get Products via Cursor (search_after)","id":"24cb046f-c5c1-493a-84d0-4d62748872ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/products?pagination_type=search_after&limit=100","description":"<p>Keyset pagination for large catalogs: constant cost at any depth, no total count. The response returns a search_after cursor and a links.next URL; keep following it until search_after is null. Combine freely with filters.</p>\n","urlObject":{"path":["api","v1","rest","products"],"host":["{{url}}"],"query":[{"key":"pagination_type","value":"search_after"},{"key":"limit","value":"100"}],"variable":[]}},"response":[],"_postman_id":"24cb046f-c5c1-493a-84d0-4d62748872ac"},{"name":"Conditional GET with ETag (304)","id":"03cb07af-4652-40af-9649-c8a4a5a8b0c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"If-None-Match","value":"\"<etag-from-previous-response>\"","type":"text"}],"url":"{{url}}/api/v1/rest/attributes","description":"<p>Every response carries an ETag header. Resend it via If-None-Match: the server answers 304 Not Modified with no body when nothing changed, so clients can cache responses and revalidate cheaply.</p>\n","urlObject":{"path":["api","v1","rest","attributes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"03cb07af-4652-40af-9649-c8a4a5a8b0c3"}],"id":"7f526fc7-44f6-4467-afc5-2f2d8bc99104","_postman_id":"7f526fc7-44f6-4467-afc5-2f2d8bc99104","description":""},{"name":"Product Passports","item":[{"name":"Get All Passports","id":"965cb0d8-3e03-4cda-90d6-0bcd4f1db74b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/passports","urlObject":{"path":["api","v1","rest","passports"],"host":["{{url}}"],"query":[{"disabled":true,"key":"sku","value":"1111111304"}],"variable":[]}},"response":[],"_postman_id":"965cb0d8-3e03-4cda-90d6-0bcd4f1db74b"},{"name":"Get Passport By SKU","id":"9172b2b1-d0dc-4839-9d68-dcd0bb9e060a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/passports/1111111304","urlObject":{"path":["api","v1","rest","passports","1111111304"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9172b2b1-d0dc-4839-9d68-dcd0bb9e060a"},{"name":"Publish a Passport","id":"d98938ff-eeb2-446a-be94-f43f74e6b438","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"channel_id\": 1,\n    \"locale_ids\": [\n        1\n    ]\n}"},"url":"{{url}}/api/v1/rest/passports/publish/1111111304","urlObject":{"path":["api","v1","rest","passports","publish","1111111304"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d98938ff-eeb2-446a-be94-f43f74e6b438"},{"name":"Withdraw a Publication","id":"ca162a79-f5b0-4ac9-ad7c-59db16dcc611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/passports/withdraw/1","urlObject":{"path":["api","v1","rest","passports","withdraw","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca162a79-f5b0-4ac9-ad7c-59db16dcc611"},{"name":"Reinstate a Publication","id":"1f2e89b6-1242-48cb-a460-331e14e9fabd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/passports/reinstate/1","urlObject":{"path":["api","v1","rest","passports","reinstate","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f2e89b6-1242-48cb-a460-331e14e9fabd"},{"name":"Redact a Publication","id":"d353e0b8-8b4a-43de-b77e-4e272f1f98a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Contains outdated safety information\"\n}"},"url":"{{url}}/api/v1/rest/passports/redact/1","urlObject":{"path":["api","v1","rest","passports","redact","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d353e0b8-8b4a-43de-b77e-4e272f1f98a9"}],"id":"3d17f079-575c-4cc4-aeea-63b9b1270a5f","_postman_id":"3d17f079-575c-4cc4-aeea-63b9b1270a5f","description":""},{"name":"Measurements","item":[{"name":"Get All Measurement Families","id":"4fbf0de6-55bc-400d-84ba-c8b86b68181c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/measurement","urlObject":{"path":["api","v1","rest","measurement"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fbf0de6-55bc-400d-84ba-c8b86b68181c"},{"name":"Get Measurement Family By Code","id":"7044bbaa-91c1-4e6b-9b5e-252c55e3587b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/measurement/weight","urlObject":{"path":["api","v1","rest","measurement","weight"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7044bbaa-91c1-4e6b-9b5e-252c55e3587b"},{"name":"Create a Measurement Family","id":"0fc94ee8-838c-4d63-8ab3-551d29499eb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"weight\",\n    \"name\": \"Weight\",\n    \"labels\": {\n        \"en_US\": \"Weight\"\n    },\n    \"standard_unit\": \"KILOGRAM\",\n    \"units\": [\n        {\n            \"code\": \"KILOGRAM\",\n            \"labels\": {\n                \"en_US\": \"Kilogram\"\n            },\n            \"symbol\": \"kg\"\n        },\n        {\n            \"code\": \"GRAM\",\n            \"labels\": {\n                \"en_US\": \"Gram\"\n            },\n            \"symbol\": \"g\",\n            \"convert_from_standard\": [\n                {\n                    \"operator\": \"mul\",\n                    \"value\": \"0.001\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v1/rest/measurement","urlObject":{"path":["api","v1","rest","measurement"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fc94ee8-838c-4d63-8ab3-551d29499eb5"},{"name":"Update a Measurement Family","id":"ab6e42ce-0e20-4459-ac71-71daf28a3efa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"en_US\": \"Weight\"\n    },\n    \"symbol\": \"kg\"\n}"},"url":"{{url}}/api/v1/rest/measurement/weight","urlObject":{"path":["api","v1","rest","measurement","weight"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab6e42ce-0e20-4459-ac71-71daf28a3efa"},{"name":"Delete a Measurement Family","id":"c439a62f-9c5d-4877-ac37-60defd726b76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/measurement/weight","urlObject":{"path":["api","v1","rest","measurement","weight"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c439a62f-9c5d-4877-ac37-60defd726b76"},{"name":"Get All Units of a Family","id":"4e715ee0-527c-416d-ad98-9908299c5e1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/units/weight","urlObject":{"path":["api","v1","rest","units","weight"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e715ee0-527c-416d-ad98-9908299c5e1f"},{"name":"Get a Unit By Code","id":"d8f78ecc-2ed1-409c-8fe1-1ee1b56a2897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/units/weight/GRAM","urlObject":{"path":["api","v1","rest","units","weight","GRAM"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8f78ecc-2ed1-409c-8fe1-1ee1b56a2897"},{"name":"Create a Unit","id":"1a1a83f0-53b8-4aab-a428-fc9c3c9fc7e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"MILLIGRAM\",\n    \"labels\": {\n        \"en_US\": \"Milligram\"\n    },\n    \"symbol\": \"mg\",\n    \"convert_from_standard\": [\n        {\n            \"operator\": \"mul\",\n            \"value\": \"0.000001\"\n        }\n    ]\n}"},"url":"{{url}}/api/v1/rest/units/weight","urlObject":{"path":["api","v1","rest","units","weight"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a1a83f0-53b8-4aab-a428-fc9c3c9fc7e7"},{"name":"Update a Unit","id":"a42746f6-aeeb-44be-b2da-a246861aa5f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"labels\": {\n        \"en_US\": \"Milligram\"\n    },\n    \"symbol\": \"mg\"\n}"},"url":"{{url}}/api/v1/rest/units/weight/MILLIGRAM","urlObject":{"path":["api","v1","rest","units","weight","MILLIGRAM"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a42746f6-aeeb-44be-b2da-a246861aa5f7"},{"name":"Delete a Unit","id":"830f154b-6814-4a51-9ebb-f818d04da696","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/units/weight/MILLIGRAM","urlObject":{"path":["api","v1","rest","units","weight","MILLIGRAM"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"830f154b-6814-4a51-9ebb-f818d04da696"},{"name":"Get Units For an Attribute Family","id":"b264edbe-342c-46c4-aa11-2e912b44880a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attribute-measurement/weight","urlObject":{"path":["api","v1","rest","attribute-measurement","weight"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b264edbe-342c-46c4-aa11-2e912b44880a"},{"name":"Get Attribute Measurement Config","id":"cfe43f0b-b94f-4e2e-ad68-62c011861e63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{url}}/api/v1/rest/attribute-measurement/config/weight_attr","urlObject":{"path":["api","v1","rest","attribute-measurement","config","weight_attr"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cfe43f0b-b94f-4e2e-ad68-62c011861e63"},{"name":"Set Attribute Measurement Config","id":"a1861d0a-3943-4918-b9de-2d8f819facfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"family_code\": \"weight\",\n    \"unit_code\": \"KILOGRAM\"\n}"},"url":"{{url}}/api/v1/rest/attribute-measurement/weight_attr","urlObject":{"path":["api","v1","rest","attribute-measurement","weight_attr"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1861d0a-3943-4918-b9de-2d8f819facfb"},{"name":"Update Attribute Measurement Config","id":"76201bc3-7be0-4c18-99bc-be2bc0223b09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"family_code\": \"weight\",\n    \"unit_code\": \"GRAM\"\n}"},"url":"{{url}}/api/v1/rest/attribute-measurement/weight_attr","urlObject":{"path":["api","v1","rest","attribute-measurement","weight_attr"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"76201bc3-7be0-4c18-99bc-be2bc0223b09"}],"id":"9276bf5d-8ae4-4c4f-aaef-98b70d569733","_postman_id":"9276bf5d-8ae4-4c4f-aaef-98b70d569733","description":""},{"name":"Authentication by Password","event":[{"listen":"prerequest","script":{"exec":["postman.setEnvironmentVariable(","    \"base64ClientIdSecret\", ","    btoa(postman.getEnvironmentVariable(\"clientId\") + ':' + postman.getEnvironmentVariable(\"secret\"))",");"],"type":"text/javascript","id":"b04ae715-48de-46b2-91bf-4bd3755b83ef"}},{"listen":"test","script":{"exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"token\", jsonData.access_token);","postman.setEnvironmentVariable(\"refreshToken\", jsonData.refresh_token);"],"type":"text/javascript","id":"9c508d25-86c8-476d-b7af-b10f3af2fb06"}}],"id":"47e20c19-ec26-4df7-ae49-28cbdd53364f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Basic {{base64ClientIdSecret}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\" : \"{{username}}\",\n    \"password\" : \"{{password}}\",\n    \"grant_type\": \"password\"\n }"},"url":"{{url}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47e20c19-ec26-4df7-ae49-28cbdd53364f"},{"name":"Authentication by Refresh Token","event":[{"listen":"prerequest","script":{"exec":["postman.setEnvironmentVariable(","    \"base64ClientIdSecret\", ","    btoa(postman.getEnvironmentVariable(\"clientId\") + ':' + postman.getEnvironmentVariable(\"secret\"))",");",""],"type":"text/javascript","id":"8e0fc133-540d-4b64-b8c6-e8fcbe40e17b"}},{"listen":"test","script":{"exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"token\", jsonData.access_token);","postman.setEnvironmentVariable(\"refreshToken\", jsonData.refresh_token);"],"type":"text/javascript","id":"ef3c16ea-944a-4e32-8799-2af1d8d73a95"}}],"id":"020651a7-0f73-4b99-98b5-8695a1f63965","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic {{base64ClientIdSecret}}"}],"body":{"mode":"raw","raw":"{\n    \"refresh_token\" : \"{{refreshToken}}\",\n    \"grant_type\": \"refresh_token\"\n }"},"url":"{{url}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"020651a7-0f73-4b99-98b5-8695a1f63965"}]}