{"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"}],"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"}],"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"}],"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":"87bc6aba-087d-4f63-9dad-2c69722d3721","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":"87bc6aba-087d-4f63-9dad-2c69722d3721"},{"name":"Partial Update a Category","id":"c2da3ffd-4f6f-4125-8b04-876576721ede","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":"c2da3ffd-4f6f-4125-8b04-876576721ede"}],"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"}],"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"}],"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"}],"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":"1d430c5f-02c8-4b9e-b597-19b30d2dd71c","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":"1d430c5f-02c8-4b9e-b597-19b30d2dd71c"}],"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"}],"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"}],"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":"f4487f81-d461-47ae-a9f4-ef9276e82648","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":"f4487f81-d461-47ae-a9f4-ef9276e82648"},{"name":"Partial Update a Product","id":"12492bcb-cb89-4fa9-97d8-eaa52294e92c","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":"12492bcb-cb89-4fa9-97d8-eaa52294e92c"}],"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/configrable-products??limit=10&page=1","urlObject":{"path":["api","v1","rest","configrable-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/configrable-products/Configurable-product","urlObject":{"path":["api","v1","rest","configrable-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/configrable-products","urlObject":{"path":["api","v1","rest","configrable-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/configrable-products/Akeneo-product","urlObject":{"path":["api","v1","rest","configrable-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":"62a1f7c8-64d0-496a-a41a-c3bac996baee","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/configrable-products/Akeneo-product","urlObject":{"path":["api","v1","rest","configrable-products","Akeneo-product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"62a1f7c8-64d0-496a-a41a-c3bac996baee"}],"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":"Authentification 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":"Authentification 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"}]}