From a80f51c892a06a0e15ddffc90052a3d805bd5d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Veloso=20S=C3=A1?= <77300325+Isabella-Veloso@users.noreply.github.com> Date: Tue, 3 Feb 2026 13:15:40 -0300 Subject: [PATCH 1/7] Update VTEX - Catalog API.json --- VTEX - Catalog API.json | 43 +++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/VTEX - Catalog API.json b/VTEX - Catalog API.json index e94dddb7f..731166020 100644 --- a/VTEX - Catalog API.json +++ b/VTEX - Catalog API.json @@ -5024,7 +5024,7 @@ "SKU file" ], "summary": "Create SKU file", - "description": "Creates a new image for an SKU based on its URL or on a form-data request body.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>\u2757 To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", + "description": "Creates a new SKU image file.\r\n\r\nThere are two request body options for this endpoint:\r\n- `application/json`: Use a JSON object to create an SKU file from an image URL.\r\n- `multipart/form-data`: Send the image file directly via form-data with the `File` and `Name` fields, enabling uploading binary assets together with image metadata in a single request.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>\u2757 To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", "parameters": [ { "$ref": "#/components/parameters/Content-Type" @@ -5048,9 +5048,16 @@ "application/json": { "schema": { "$ref": "#/components/schemas/SKUFileURL" + }, + "example": { + "IsMain": true, + "Label": "Main", + "Name": "Nike-Red-Janoski-1", + "Text": "Nike-Red-Janoski", + "Url": "https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg" } }, - "form-data": { + "multipart/form-data": { "schema": { "$ref": "#/components/schemas/SKUFile" } @@ -5121,7 +5128,7 @@ "SKU file" ], "summary": "Update SKU file", - "description": "Updates a new image on an SKU based on its URL or on a form-data request body.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>\u2757 To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", + "description": "Updates an existing SKU image file.\r\n\r\nThere are two request body options for this endpoint:\r\n- `application/json`: Use a JSON object to update an SKU file from an image URL.\r\n- `multipart/form-data`: Send the image file directly via form-data with the `File` and `Name` fields, enabling uploading binary assets together with image metadata in a single request.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>\u2757 To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", "parameters": [ { "$ref": "#/components/parameters/Content-Type" @@ -5155,9 +5162,16 @@ "application/json": { "schema": { "$ref": "#/components/schemas/SKUFileURL" + }, + "example": { + "IsMain": true, + "Label": "Main", + "Name": "Nike-Red-Janoski-1", + "Text": "Nike-Red-Janoski", + "Url": "https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg" } }, - "form-data": { + "multipart/form-data": { "schema": { "$ref": "#/components/schemas/SKUFile" } @@ -18484,10 +18498,23 @@ } }, "SKUFile": { - "type": "string", - "format": "binary", - "description": "A message about the image file size is displayed.", - "example": "The image file has a size limit of 3200 x 3200 pixels." + "type": "object", + "description": "SKU image file information sent via form-data.", + "required": [ + "File", + "Name" + ], + "properties": { + "File": { + "type": "string", + "format": "binary", + "description": "Image file to be uploaded. The accepted size limits and formats per image are:\r\n\r\n- Maximum size in pixels: 5,000 x 5,000 pixels\r\n- Minimum size in pixels: 600 x 600 pixels\r\n- Maximum size in MB: 4 MB\r\n- Minimum size in KB: 300 KB\r\r\nAllowed file extensions: JPG, PNG, GIF, ICO, SVG, WEBP" + }, + "Name": { + "type": "string", + "description": "SKU image name, limited to 200 characters." + } + } }, "GetCategoryTree": { "required": [ From 03e0c4dda6d0dbf87ecdc29f7f984e42152d7de4 Mon Sep 17 00:00:00 2001 From: Isabella-Veloso <> Date: Tue, 3 Feb 2026 16:17:39 +0000 Subject: [PATCH 2/7] chore: update postman files --- PostmanCollections/VTEX - Catalog API.json | 1394 ++++++++++---------- 1 file changed, 697 insertions(+), 697 deletions(-) diff --git a/PostmanCollections/VTEX - Catalog API.json b/PostmanCollections/VTEX - Catalog API.json index c4187a16e..8004bad2a 100644 --- a/PostmanCollections/VTEX - Catalog API.json +++ b/PostmanCollections/VTEX - Catalog API.json @@ -1,10 +1,10 @@ { "_": { - "postman_id": "6af559a7-7459-4615-8262-184bb15771ec" + "postman_id": "0b314d38-2e78-4d21-ab45-c73810d00148" }, "item": [ { - "id": "d21802dd-5134-4514-a2d0-70a38187cadc", + "id": "52d0d374-63a7-4887-8ebf-970e09cdf892", "name": "SKU service", "description": { "content": "", @@ -12,7 +12,7 @@ }, "item": [ { - "id": "6ed7185e-6489-4fb3-bd8a-7be34c12639e", + "id": "21462874-9683-4a62-926c-ef5b98bf2997", "name": "Get SKU service", "request": { "name": "Get SKU service", @@ -77,7 +77,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3f8247ff-b915-4f2b-83c0-e923c6c124fc", + "id": "ff353a2a-a07d-4dfb-9d8c-7eacceb6a46e", "name": "OK", "originalRequest": { "url": { @@ -145,7 +145,7 @@ { "listen": "test", "script": { - "id": "67682a36-629c-45d9-8fe3-0e781b446ae7", + "id": "8cc04253-0f7a-40e3-84e1-173dc5bcac97", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skuservice/:skuServiceId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -161,7 +161,7 @@ } }, { - "id": "47ec4949-a916-4019-8b09-6b9de503ec87", + "id": "124ece86-4b95-40e8-975c-331a1db3ff79", "name": "Update SKU service", "request": { "name": "Update SKU service", @@ -239,7 +239,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e721b1a8-cd4e-4417-a97c-2c7320931803", + "id": "52d4e731-4417-401b-b543-8a36766fab7f", "name": "OK", "originalRequest": { "url": { @@ -320,7 +320,7 @@ { "listen": "test", "script": { - "id": "35b3b638-0dfb-4899-93d1-77e7455b39f2", + "id": "07a46c36-43d3-4011-8395-577d2f72c287", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/skuservice/:skuServiceId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -336,7 +336,7 @@ } }, { - "id": "03c894e3-99da-4376-8ad8-5ecc745d181f", + "id": "f8f7da67-a958-4596-bb77-a4abd1f1f9bb", "name": "Dissociate SKU service", "request": { "name": "Dissociate SKU service", @@ -397,7 +397,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "227eb948-e788-4fde-a80f-9382bd025dda", + "id": "11d05f97-15ec-4556-b6cb-380d671164fa", "name": "OK", "originalRequest": { "url": { @@ -455,7 +455,7 @@ { "listen": "test", "script": { - "id": "1c2e0e51-5df2-4d88-a008-7bbc14bc8a84", + "id": "4d9fd703-88a6-48f0-ae69-da7ad46272cb", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuservice/:skuServiceId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -468,7 +468,7 @@ } }, { - "id": "f1b49c54-1b78-4b85-9722-c144f2547d4f", + "id": "39c6440d-0b18-4056-ad0a-6adcb32c598c", "name": "Associate SKU service", "request": { "name": "Associate SKU service", @@ -534,7 +534,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "1d7ae359-a7fd-43a1-9cf0-278f5c74d3b1", + "id": "2e82e423-3b19-4035-96c2-aa71a327ac10", "name": "OK", "originalRequest": { "url": { @@ -614,7 +614,7 @@ { "listen": "test", "script": { - "id": "273a3844-c78c-4dc0-8856-18b9d7449fda", + "id": "5f103df0-6624-4c8c-ba14-408af075bdf8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/skuservice - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -633,7 +633,7 @@ "event": [] }, { - "id": "c988bb42-cc6e-4366-861c-00c737995c80", + "id": "4fe55cb9-206a-4b62-9f02-23ef44863807", "name": "SKU service attachment", "description": { "content": "", @@ -641,7 +641,7 @@ }, "item": [ { - "id": "4f256517-50cf-4e38-b312-5a45a5a093d4", + "id": "14804747-b5e2-4b9e-90d5-9027ea164ecc", "name": "Associate SKU service attachment", "request": { "name": "Associate SKU service attachment", @@ -707,7 +707,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "ca3813fb-e03c-43b3-b6ae-67e82e72abdd", + "id": "872f9998-0ff7-4680-b143-eab38b6b6bc4", "name": "OK", "originalRequest": { "url": { @@ -787,7 +787,7 @@ { "listen": "test", "script": { - "id": "51e83f38-b237-4129-a5cf-c8c3ce864956", + "id": "419f4513-4106-4e7f-bf74-604dc49122ee", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/skuservicetypeattachment - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -803,7 +803,7 @@ } }, { - "id": "b06bb533-c40e-4382-873e-5453b86448a6", + "id": "e193b335-7725-4f27-93dc-61a274e5f441", "name": "Dissociate attachment by attachment ID or SKU service type ID", "request": { "name": "Dissociate attachment by attachment ID or SKU service type ID", @@ -871,7 +871,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "fe9b117f-f674-46f0-8ccd-62eb4615bb89", + "id": "3e309cbe-cf0c-47f6-ba2c-e167d9731514", "name": "OK", "originalRequest": { "url": { @@ -947,7 +947,7 @@ { "listen": "test", "script": { - "id": "7fec2eb4-86c7-4ffc-b2d7-c3d37e75241f", + "id": "a644ea80-6217-40b1-9d8f-d55157fed677", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuservicetypeattachment - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -960,7 +960,7 @@ } }, { - "id": "600be29f-df4f-4028-bcc6-a1fbe0a734cb", + "id": "e5625bdd-ea76-468b-a3ad-65648505e51a", "name": "Dissociate attachment from SKU service type", "request": { "name": "Dissociate attachment from SKU service type", @@ -1021,7 +1021,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "c34309e6-0ea7-423c-856f-7a1eba4fc95b", + "id": "f5047e44-f2ad-465a-ae5d-6512dba153ce", "name": "OK", "originalRequest": { "url": { @@ -1079,7 +1079,7 @@ { "listen": "test", "script": { - "id": "e71bc626-83c5-4cd9-9f1b-0be0414e2f99", + "id": "6a5fa324-3e53-4c51-a15c-0fbd91e79422", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuservicetypeattachment/:skuServiceTypeAttachmentId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -1095,7 +1095,7 @@ "event": [] }, { - "id": "539547da-03e9-406a-8dc9-25671f5aad8b", + "id": "5adbe462-a98b-40ee-a59a-ed4b69306c06", "name": "SKU service value", "description": { "content": "", @@ -1103,7 +1103,7 @@ }, "item": [ { - "id": "3f6e10fe-52ab-463f-8402-21de10e2e011", + "id": "eea588f9-305a-49cb-b84b-7dda1688a2c7", "name": "Create SKU service value", "request": { "name": "Create SKU service value", @@ -1169,7 +1169,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "0a901fe0-223e-402c-983b-6c0c183a4074", + "id": "e0dc2841-1c1e-49e3-9288-9787a6eb02dc", "name": "OK", "originalRequest": { "url": { @@ -1249,7 +1249,7 @@ { "listen": "test", "script": { - "id": "2583fe8f-ff03-4ee8-b78b-e0c66c201410", + "id": "03e5254c-b13c-415f-9f95-e02d714063d2", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/skuservicevalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -1265,7 +1265,7 @@ } }, { - "id": "db22f217-f75b-461e-97a7-eb8cfc68a63a", + "id": "39fe6b98-b4c0-4d20-b5f7-d80629d1c277", "name": "Get SKU service value", "request": { "name": "Get SKU service value", @@ -1330,7 +1330,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f660629a-0413-4abd-aa20-5804694ebdf3", + "id": "873f4f15-3a24-4fbd-99c7-fdddbbffba17", "name": "OK", "originalRequest": { "url": { @@ -1398,7 +1398,7 @@ { "listen": "test", "script": { - "id": "c71d05a7-f3d7-4de3-9fd5-efbf2533d6fc", + "id": "2ef4b119-0485-4136-bf09-74625c9f1fc6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skuservicevalue/:skuServiceValueId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -1414,7 +1414,7 @@ } }, { - "id": "f186cc66-4b92-4886-8417-25ad6d93cc30", + "id": "ee5600ea-a24d-4434-b117-70ad952ad6f5", "name": "Update SKU service value", "request": { "name": "Update SKU service value", @@ -1492,7 +1492,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "18c4cc80-8a26-45b4-9623-b19f3304d133", + "id": "6516600b-d54e-4b6e-9dd1-7c65b6f31331", "name": "OK", "originalRequest": { "url": { @@ -1573,7 +1573,7 @@ { "listen": "test", "script": { - "id": "edcbec1a-35fa-4429-a1c4-dfc647479523", + "id": "68c1803c-e7da-46cc-97fa-e017fa2a4108", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/skuservicevalue/:skuServiceValueId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -1589,7 +1589,7 @@ } }, { - "id": "c8466cf3-b9c3-4fc0-ad30-863184eafddb", + "id": "1403bd24-5331-4f37-823f-82e720f24712", "name": "Delete SKU service value", "request": { "name": "Delete SKU service value", @@ -1650,7 +1650,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "411f593e-574c-46e7-ae80-a9e886cd1760", + "id": "e8af00ec-af51-4439-857e-10ce2895215c", "name": "OK", "originalRequest": { "url": { @@ -1708,7 +1708,7 @@ { "listen": "test", "script": { - "id": "9961f283-ec81-4af0-9714-c1dbb54dca32", + "id": "72d39a88-9dee-46e7-a3a9-8000a61fdf8b", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuservicevalue/:skuServiceValueId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -1724,7 +1724,7 @@ "event": [] }, { - "id": "ae95003c-665d-4e17-a09c-437c2dd86c1a", + "id": "f202924e-26ca-45af-9cfd-60e7377f7191", "name": "SKU service type", "description": { "content": "", @@ -1732,7 +1732,7 @@ }, "item": [ { - "id": "9f1bf38c-60d8-4aee-96e1-379d65655a59", + "id": "12ca7a01-399d-4d88-933d-10c42b9d3d52", "name": "Create SKU service type", "request": { "name": "Create SKU service type", @@ -1798,7 +1798,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "7658778a-f692-43ad-ac68-6e3c6389fee9", + "id": "06e0eee6-5e58-471a-8893-eb3879256483", "name": "OK", "originalRequest": { "url": { @@ -1878,7 +1878,7 @@ { "listen": "test", "script": { - "id": "cb3242a7-6f60-4fcc-9426-3d9b1822d9e2", + "id": "e7552dd7-e4b9-451d-aa27-7d0b9597fdc3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/skuservicetype - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -1894,7 +1894,7 @@ } }, { - "id": "a4ac10ed-24be-422e-830d-ec406814b7af", + "id": "73bd993b-d961-4852-a0e4-4990fa5a6513", "name": "Get SKU service type", "request": { "name": "Get SKU service type", @@ -1959,7 +1959,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "890befb5-5dd1-446d-89f7-0f3ea567f70b", + "id": "8dec9ee7-219b-45f8-b7bb-9159d81e24e4", "name": "OK", "originalRequest": { "url": { @@ -2027,7 +2027,7 @@ { "listen": "test", "script": { - "id": "0fb7e5a6-3eb1-481a-b7a7-dfc0e28b6c84", + "id": "08803187-0072-4a41-83fc-7d8eb0043afb", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skuservicetype/:skuServiceTypeId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -2043,7 +2043,7 @@ } }, { - "id": "d718fb37-5db3-4fdd-968c-f9b6620abbcf", + "id": "d17361fe-3e09-49c8-89c7-6f7a06240658", "name": "Update SKU service type", "request": { "name": "Update SKU service type", @@ -2121,7 +2121,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d26e5910-23c3-4546-92c0-2ac9bf463201", + "id": "de2222dd-10f4-4d4b-b3d6-73c025c7a275", "name": "OK", "originalRequest": { "url": { @@ -2202,7 +2202,7 @@ { "listen": "test", "script": { - "id": "62cdc612-12b4-4b0f-bde2-7e37ba707f8b", + "id": "0ca6f595-60c3-4c87-8c80-7e4e1b0198af", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/skuservicetype/:skuServiceTypeId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -2218,7 +2218,7 @@ } }, { - "id": "8c23ca0f-85b9-4424-a594-e563df1a0e34", + "id": "729c3abe-7416-45e7-9097-79eadbe5b9b4", "name": "Delete SKU service type", "request": { "name": "Delete SKU service type", @@ -2279,7 +2279,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "a8ea3552-665d-49a8-aabe-48f756e0894a", + "id": "5f431d4d-4d27-41df-89b0-403eb4db28a9", "name": "OK", "originalRequest": { "url": { @@ -2337,7 +2337,7 @@ { "listen": "test", "script": { - "id": "17ee520b-f6bf-4798-a3f2-436dc103c3ce", + "id": "a9cd1127-77df-4939-a7a8-d0625dd3cdb9", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuservicetype/:skuServiceTypeId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -2353,7 +2353,7 @@ "event": [] }, { - "id": "38c5ae01-a82d-4aa4-8f1b-ddf422869d4b", + "id": "b6fdee62-799d-42f2-a27f-5bbe1be8e73f", "name": "Category", "description": { "content": "", @@ -2361,7 +2361,7 @@ }, "item": [ { - "id": "820316ab-48da-4a69-983c-f9f0e368871f", + "id": "6913e334-52a8-4035-b7cd-27246391cb24", "name": "Get category tree", "request": { "name": "Get category tree", @@ -2427,7 +2427,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "23c17089-2ca8-492a-8754-d7e0c57a5c6b", + "id": "74ceeb73-b0bf-4602-8776-feac2515428c", "name": "OK", "originalRequest": { "url": { @@ -2496,7 +2496,7 @@ { "listen": "test", "script": { - "id": "b1f741e4-ebe4-4fa6-bc8d-b0198651c1c2", + "id": "eaef7967-2d6e-4701-b68a-4049377844d8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/category/tree/:categoryLevels - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -2512,7 +2512,7 @@ } }, { - "id": "34913441-854d-4e04-ab39-b878be728f74", + "id": "1023ea32-f583-454c-ac74-7268ec59285b", "name": "Get category by ID", "request": { "name": "Get category by ID", @@ -2587,7 +2587,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "4b1bac55-bf4b-4af5-8a3e-0c8efd11757e", + "id": "f9e8a042-5c2a-4c1e-9f5a-e718bb9c08c8", "name": "OK", "originalRequest": { "url": { @@ -2665,7 +2665,7 @@ { "listen": "test", "script": { - "id": "3fac7e97-2052-4d95-bd2a-69e160ef48f5", + "id": "a5b00544-e1c6-4102-9b05-2961c63e83cf", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/category/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -2681,7 +2681,7 @@ } }, { - "id": "6065f196-6ebc-42a2-9518-09c6c04b4cfd", + "id": "25fd7b83-8401-4528-beb3-03a2fd5523e8", "name": "Update category", "request": { "name": "Update category", @@ -2759,7 +2759,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "445cae32-6ac1-4863-b035-fb477c71edbb", + "id": "16587ab7-251f-458b-b58a-413a06249cb5", "name": "OK", "originalRequest": { "url": { @@ -2840,7 +2840,7 @@ { "listen": "test", "script": { - "id": "0f9b9e11-2f3f-417e-a732-8da79fdb91db", + "id": "dafe7445-0ffa-4e22-b5bd-d95a878cf534", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/category/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -2856,7 +2856,7 @@ } }, { - "id": "297cae87-17f5-4020-bde0-6723388c3f4a", + "id": "eb61bcdd-edf4-40b6-b427-72ce119a7999", "name": "Create category", "request": { "name": "Create category", @@ -2922,7 +2922,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "0cb82f39-f88f-4993-b7d2-7b2e3eb570d6", + "id": "e794ce85-cabe-4f37-a4f0-f5dfbe432dc3", "name": "OK", "originalRequest": { "url": { @@ -3002,7 +3002,7 @@ { "listen": "test", "script": { - "id": "ac18105f-4363-401f-a8d4-7c33635a576d", + "id": "0f4de979-541a-4beb-9bb4-296982d569d0", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/category - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3021,7 +3021,7 @@ "event": [] }, { - "id": "47c9b05c-0398-474f-a8ca-f2c550fd8d18", + "id": "0700ea88-d7fe-4b93-942c-2bc6b9f8ab78", "name": "Brand", "description": { "content": "", @@ -3029,7 +3029,7 @@ }, "item": [ { - "id": "75d27ebe-4447-4b2d-9529-dc21f2e5093e", + "id": "925dc85a-eaa4-442a-8f57-5ef0667a1170", "name": "Get brand list", "request": { "name": "Get brand list", @@ -3083,7 +3083,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "6cfa67b4-3fdb-4dd0-9967-16396bab93fa", + "id": "9462ec6e-786b-4854-8f6e-5992367802bd", "name": "OK", "originalRequest": { "url": { @@ -3151,7 +3151,7 @@ { "listen": "test", "script": { - "id": "445416fe-8ba6-4aa9-b369-a039fcd502c0", + "id": "e9f0cc7e-633c-4dc2-9bb4-abee78176db8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/brand/list - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3167,7 +3167,7 @@ } }, { - "id": "28c4812a-6548-4ba4-bc92-92f3722d4c12", + "id": "c5ac4554-5752-4c68-a9d0-5380447ef2ee", "name": "Get paginated brand list", "request": { "name": "Get paginated brand list", @@ -3240,7 +3240,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "1fc245e3-4191-49b8-876d-bb9f69acb3b4", + "id": "1b219b40-ab1d-4848-9947-d2c5591bb731", "name": "OK", "originalRequest": { "url": { @@ -3327,7 +3327,7 @@ { "listen": "test", "script": { - "id": "2a09118c-b97a-4884-8471-1ff53d52d062", + "id": "a0a467cc-7236-4aa7-926b-b57580fe660e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/brand/pagedlist - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3343,7 +3343,7 @@ } }, { - "id": "d987db09-4819-4a15-ab40-8e0723ea1120", + "id": "b1fe2ddc-ce9b-44f0-97d5-12dc880526ad", "name": "Get brand by ID", "request": { "name": "Get brand by ID", @@ -3408,7 +3408,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "b1f8f152-9251-47fb-bc2c-d066a33b9095", + "id": "144d1329-2307-4b25-b83f-c4dbd10b32e4", "name": "OK", "originalRequest": { "url": { @@ -3476,7 +3476,7 @@ { "listen": "test", "script": { - "id": "fd7d000f-c383-424e-8121-a13871a13bb5", + "id": "76737280-512d-48c1-9f67-8842e3766fd6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/brand/:brandId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3492,7 +3492,7 @@ } }, { - "id": "e21d2deb-c0d6-4188-8ddb-ac2ffe62dd23", + "id": "5ce24d25-f4b8-4e4a-85a2-8d9160352129", "name": "Create brand", "request": { "name": "Create brand", @@ -3558,7 +3558,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "84127ade-ea1e-4977-ad7f-ad1d1c0da52d", + "id": "e018c850-e178-4e0c-8b51-dcea1a6b5abf", "name": "OK", "originalRequest": { "url": { @@ -3638,7 +3638,7 @@ { "listen": "test", "script": { - "id": "d26da0b8-edde-4d48-bd87-cceea854cdc4", + "id": "b0306491-8911-4900-8314-74709d78481b", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/brand - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3654,7 +3654,7 @@ } }, { - "id": "c32594d9-4875-404d-b4f8-00199bbb6b1b", + "id": "d8c98830-62bf-445f-9a09-1a3cdee2953c", "name": "Get brand and context", "request": { "name": "Get brand and context", @@ -3719,7 +3719,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3a47bfa8-e797-4a79-8f19-2333cb051862", + "id": "dd776538-de53-4921-922b-cf655ffefe44", "name": "OK", "originalRequest": { "url": { @@ -3787,7 +3787,7 @@ { "listen": "test", "script": { - "id": "4ef1350e-844a-4930-834d-b9437363178c", + "id": "b8c5fc90-a008-455f-9b3d-ad7bd0a7701a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/brand/:brandId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3803,7 +3803,7 @@ } }, { - "id": "c382f9e6-0cd2-480b-85ba-4c0e65d50d02", + "id": "593086db-e7d4-43dc-85fa-b8343a1ae618", "name": "Update brand", "request": { "name": "Update brand", @@ -3881,7 +3881,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f65d74b3-c029-4a8c-8149-43a1fa96dba2", + "id": "513ddee1-62e2-43dd-bfae-cc6d942d810a", "name": "OK", "originalRequest": { "url": { @@ -3962,7 +3962,7 @@ { "listen": "test", "script": { - "id": "a9418b2f-6283-499a-a0b4-fa7867ac6662", + "id": "6a0fd236-3996-48c1-8fd6-71a31f954d08", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/brand/:brandId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -3978,7 +3978,7 @@ } }, { - "id": "1eec7658-1eb6-4eff-8425-b44e1a6942e8", + "id": "5cfa79aa-d481-42da-9d79-1f16e6f33dbd", "name": "Delete brand", "request": { "name": "Delete brand", @@ -4039,7 +4039,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "bb0979ca-3df3-41db-a01d-6c2fb3c0b2a4", + "id": "4d28ee78-7b75-495c-81aa-356d3a05c1e9", "name": "OK", "originalRequest": { "url": { @@ -4097,7 +4097,7 @@ { "listen": "test", "script": { - "id": "177ee1db-d9ba-466b-827e-d5ff6552dc75", + "id": "a4b28a70-147a-4827-9faa-7c33758d19d8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/brand/:brandId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -4113,7 +4113,7 @@ "event": [] }, { - "id": "53bf1416-7682-419f-84d4-daa4778e3402", + "id": "a2cd5444-8614-49f3-bfa0-ca2ac69b0e36", "name": "Attachment", "description": { "content": "", @@ -4121,7 +4121,7 @@ }, "item": [ { - "id": "234fe1b7-bf44-4588-b9b0-45dc05a5fce7", + "id": "d0f1b8ea-06d4-4f45-96c1-716f8e624dc6", "name": "Get attachment by ID", "request": { "name": "Get attachment by ID", @@ -4186,7 +4186,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "5b6565f5-0418-41fd-b70b-c1bf40b76c06", + "id": "f2a4cfc1-bcb4-4bcd-96d4-f4a461605b27", "name": "OK", "originalRequest": { "url": { @@ -4254,7 +4254,7 @@ { "listen": "test", "script": { - "id": "d5ef2b72-af70-4885-a37a-f6ede727c2a1", + "id": "f81e653c-0fec-4e8e-99a7-9323e30d7aee", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/attachment/:attachmentid - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -4270,7 +4270,7 @@ } }, { - "id": "5aa04f9c-9d4c-48af-b01b-ff54096b8bca", + "id": "7b8b2e5e-0d70-4edf-aa58-d4f68bc46888", "name": "Update attachment", "request": { "name": "Update attachment", @@ -4348,7 +4348,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "ae5a9272-08c2-48e4-8e39-93ae1372e575", + "id": "ed31ad88-f0f5-48c5-ba8a-ac2e9e603a2e", "name": "OK", "originalRequest": { "url": { @@ -4429,7 +4429,7 @@ { "listen": "test", "script": { - "id": "55adbcbf-5a1b-4ff8-a550-c5651621d8d6", + "id": "f4c528fb-c060-4a79-a60b-69aa5b996c38", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/attachment/:attachmentid - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -4445,7 +4445,7 @@ } }, { - "id": "ebf2be46-ff97-41ab-bbdd-331694afe84a", + "id": "157de595-4c19-4cbe-a319-e1a5f743957e", "name": "Delete attachment", "request": { "name": "Delete attachment", @@ -4506,7 +4506,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "dd50dad3-cb28-4d26-85c1-28b7c1f761c6", + "id": "586b5e45-49d5-47b7-8066-31098be0f74c", "name": "OK", "originalRequest": { "url": { @@ -4564,7 +4564,7 @@ { "listen": "test", "script": { - "id": "5f6f8a98-73a4-4b25-a598-3b4027958ebd", + "id": "1d2143f2-1d36-411e-a831-2e1fb2d232f1", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/attachment/:attachmentid - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -4577,7 +4577,7 @@ } }, { - "id": "d7886f97-07cf-40d2-95b0-247aee6afa94", + "id": "85dbaf2e-7f98-4adc-b940-e9c219e66b88", "name": "Create attachment", "request": { "name": "Create attachment", @@ -4643,7 +4643,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "b0552dfa-c3ee-42c1-ba6c-504a73ad62fd", + "id": "deca8ebb-6ca2-4e38-9041-6a34f2428f7d", "name": "OK", "originalRequest": { "url": { @@ -4723,7 +4723,7 @@ { "listen": "test", "script": { - "id": "f994615f-3301-44b2-a23c-c2268477d34d", + "id": "84420324-a8bb-451e-9fb4-056161697df2", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/attachment - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -4739,7 +4739,7 @@ } }, { - "id": "c5ed4ed4-4df9-436b-b2bc-44d0608501cb", + "id": "7d3cfa79-93c7-4f26-8336-fe98e67dec90", "name": "Get all attachments", "request": { "name": "Get all attachments", @@ -4792,7 +4792,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "5ea1fd47-f495-4a8e-95e3-480c893d9949", + "id": "e14780b5-71ad-4dc0-87e5-9c0a5fdc4bbf", "name": "OK", "originalRequest": { "url": { @@ -4859,7 +4859,7 @@ { "listen": "test", "script": { - "id": "a781d575-5a4c-4265-9565-ef061d0188e9", + "id": "40f6dab7-8310-4259-9701-18b1f52e43c1", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/attachments - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -4878,7 +4878,7 @@ "event": [] }, { - "id": "f8a5c20b-c3f1-42b7-9e75-357832f28eb9", + "id": "79c70ffb-1483-4910-b32a-f7658f912c52", "name": "Product", "description": { "content": "", @@ -4886,7 +4886,7 @@ }, "item": [ { - "id": "eb191ad9-e2f0-4ca0-b34d-9dfed9680a4f", + "id": "bcd1ef56-c669-4b09-b410-28d3627728c5", "name": "Get product and SKU IDs", "request": { "name": "Get product and SKU IDs", @@ -4968,7 +4968,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "246f520a-14e2-470c-9455-709a54a03359", + "id": "a1698581-03e0-4daf-b1ff-53cb7f86f23c", "name": "OK", "originalRequest": { "url": { @@ -5064,7 +5064,7 @@ { "listen": "test", "script": { - "id": "8fe80189-b4ec-4194-b85d-f3fab277900b", + "id": "c56ca89f-c8d8-4feb-85e7-939d3b90fd09", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/products/GetProductAndSkuIds - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -5080,7 +5080,7 @@ } }, { - "id": "bbe9013a-cc26-481b-9a3f-39b238d76d91", + "id": "d0456e16-2f30-41e0-9d10-ed3887c000ff", "name": "Get product by ID", "request": { "name": "Get product by ID", @@ -5145,7 +5145,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "4ce28968-c36c-4697-bb8d-398c3af91b42", + "id": "907b61f0-e7d4-4894-ad7b-0394d366c7f3", "name": "OK", "originalRequest": { "url": { @@ -5213,7 +5213,7 @@ { "listen": "test", "script": { - "id": "777e5b87-14e9-480c-bf79-f815a196eb71", + "id": "f8bb5bb3-71d9-4427-a7a3-3b01d52fa583", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/product/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -5229,7 +5229,7 @@ } }, { - "id": "f831a74d-ee1c-45cd-86ae-9ca5f2dfe77b", + "id": "dc99d8c5-489e-47bd-b24d-ab3ba0c01870", "name": "Update product", "request": { "name": "Update product", @@ -5307,7 +5307,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "95457141-3fe8-4619-ac8e-cb6a0e1db450", + "id": "3b7d4fe9-daf2-4b23-99c6-3638144cdfd2", "name": "OK", "originalRequest": { "url": { @@ -5388,7 +5388,7 @@ { "listen": "test", "script": { - "id": "ae57e52c-69a4-4719-a5eb-23d16417dd4e", + "id": "3f6b6acd-17a0-4c1c-b010-e3b540029999", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/product/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -5404,7 +5404,7 @@ } }, { - "id": "26cc65bc-8284-46a6-9d3c-644f07f072e6", + "id": "2a467ac6-bff9-43ee-ac7c-23276c122249", "name": "Get product and its general context", "request": { "name": "Get product and its general context", @@ -5470,7 +5470,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "5e378403-1090-4461-83b4-e766472d7701", + "id": "bdd6a3c4-c20a-4bc4-a60c-47806455578e", "name": "OK", "originalRequest": { "url": { @@ -5539,7 +5539,7 @@ { "listen": "test", "script": { - "id": "42c89d70-7812-4f65-9b5d-217bf2ad2261", + "id": "170706f2-7ad1-4ff2-80f6-1c33ac08d8db", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/products/productget/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -5555,7 +5555,7 @@ } }, { - "id": "850afbe2-c5c8-4033-8e05-00cac25172ad", + "id": "4a10a3e2-b7a9-41b8-a445-e591b3b7c90d", "name": "Get product by reference ID", "request": { "name": "Get product by reference ID", @@ -5621,7 +5621,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f0520b3f-e975-4bba-a7fc-3fc27eff08e4", + "id": "1e6f161b-5607-4bb3-ad32-5895665f11d0", "name": "OK", "originalRequest": { "url": { @@ -5690,7 +5690,7 @@ { "listen": "test", "script": { - "id": "8a50ad4b-1245-43bd-b9c4-7a90a75bce45", + "id": "27adf08f-93ce-4a13-bd0d-108dbcb2b232", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/products/productgetbyrefid/:refId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -5706,7 +5706,7 @@ } }, { - "id": "9a874d39-443f-4871-bd97-0f8a5c2dcdea", + "id": "9c38534f-0c68-4f41-8a29-c6c41837fcb8", "name": "Get product's SKUs by product ID", "request": { "name": "Get product's SKUs by product ID", @@ -5772,7 +5772,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e41b5341-74e3-4655-ade1-945ef5ba9ef8", + "id": "59f49253-9d8b-4add-8200-05f725c65ce0", "name": "OK", "originalRequest": { "url": { @@ -5841,7 +5841,7 @@ { "listen": "test", "script": { - "id": "f9ca4ec4-8a7e-4615-80ab-4ff7815d781f", + "id": "0cf9c71d-a72d-4697-9d91-307a86c0dff1", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/products/variations/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -5857,7 +5857,7 @@ } }, { - "id": "50bae43c-8555-4340-becb-b4f129674363", + "id": "e4f78a2b-85e5-46be-bac2-5189348eeb4a", "name": "Get product review rate by product ID", "request": { "name": "Get product review rate by product ID", @@ -5923,7 +5923,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3da969e1-1783-4ffa-bdfc-37f36be18030", + "id": "7902fc07-997c-4b51-9cfb-7178d15c60aa", "name": "OK", "originalRequest": { "url": { @@ -5992,7 +5992,7 @@ { "listen": "test", "script": { - "id": "ed3a8f3e-0b3f-4b14-837b-297a7856dc9f", + "id": "e93446b2-574e-4798-b652-257e4827744c", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/addon/pvt/review/GetProductRate/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -6008,7 +6008,7 @@ } }, { - "id": "6d83768f-af3d-495f-996c-b8bdcf5aa0a0", + "id": "bfbf50ed-10d9-41ee-9494-50ec395c8c7c", "name": "Create product with category and brand", "request": { "name": "Create product with category and brand", @@ -6074,7 +6074,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "c297006c-c7a3-40dd-8149-72605ff298b9", + "id": "79ea9c5d-423e-4646-b639-b143c06533d0", "name": "New category and brand", "originalRequest": { "url": { @@ -6153,7 +6153,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "421d2015-cfbf-4f41-8370-730b6b04323d", + "id": "d584a226-1318-4475-861f-5e955eafad8a", "name": "Associating it to an existing category and brand", "originalRequest": { "url": { @@ -6233,7 +6233,7 @@ { "listen": "test", "script": { - "id": "8e049157-6874-4049-b0c3-96659e47fd1a", + "id": "01c0d4ca-6806-4ec2-87b7-c217da721705", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/product - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -6252,7 +6252,7 @@ "event": [] }, { - "id": "c15a4c97-0761-4d61-b713-aaf122b5c09a", + "id": "304fe9e7-148e-4c3d-869a-c1bdf3ce54d4", "name": "Product specification", "description": { "content": "", @@ -6260,7 +6260,7 @@ }, "item": [ { - "id": "71b6cf31-4644-426f-b8da-ffd7ddb3d349", + "id": "10b5fab8-38ef-49c9-b572-d615c505f0a1", "name": "Get product specifications by product ID", "request": { "name": "Get product specifications by product ID", @@ -6326,7 +6326,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "fd393800-35ac-4cf1-9e13-181acfce7654", + "id": "ba856962-ed75-4b9b-9025-c8dca6b3ab79", "name": "OK", "originalRequest": { "url": { @@ -6395,7 +6395,7 @@ { "listen": "test", "script": { - "id": "07b1464e-e131-4234-8aa8-b5c7a37b35ab", + "id": "42a3fe98-ef62-4add-bb59-cfb9147a81df", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/products/:productId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -6411,7 +6411,7 @@ } }, { - "id": "28209158-230c-41d0-89f2-4aaac08d8f02", + "id": "8aaef8c2-bd46-4baf-a1db-f6b194c920e8", "name": "Update product specification by product ID", "request": { "name": "Update product specification by product ID", @@ -6486,7 +6486,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "6be40acf-3b60-4d96-8028-9bf7310ff6d6", + "id": "5bd19ed7-3da6-4d52-b3b6-88f61c4197f7", "name": "OK", "originalRequest": { "url": { @@ -6558,7 +6558,7 @@ { "listen": "test", "script": { - "id": "e7464269-f72f-4c12-a904-fdec3fa015fd", + "id": "8905e73a-eea2-48f6-9700-bffba576b9e3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/products/:productId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -6571,7 +6571,7 @@ } }, { - "id": "f32cb362-c9db-46f5-9fa3-982bf20bfe2f", + "id": "e2a0d38e-3b2e-4215-b177-d0a0c6526c43", "name": "Get product specifications and their information by product ID", "request": { "name": "Get product specifications and their information by product ID", @@ -6637,7 +6637,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "7becf155-eab5-4e8f-a64f-4ce70059bec0", + "id": "8375caf5-dcd8-47ee-a85c-4301a0a5b830", "name": "OK", "originalRequest": { "url": { @@ -6706,7 +6706,7 @@ { "listen": "test", "script": { - "id": "0533d9ab-87e2-4ba4-87f4-aa213ac791d9", + "id": "82711fa1-86fb-44d0-bf88-a0464c8066d2", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/product/:productId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -6722,7 +6722,7 @@ } }, { - "id": "e77262da-8ec6-497f-96fa-68551fbe97fc", + "id": "47e88597-d710-4390-b0d7-c4cd35509cc8", "name": "Associate product specification", "request": { "name": "Associate product specification", @@ -6801,7 +6801,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e9fa8716-1229-4f1a-937c-46f9a16ba67f", + "id": "6d5ca9c4-bc65-4ca9-8a5e-9d061ffe28dd", "name": "OK", "originalRequest": { "url": { @@ -6883,7 +6883,7 @@ { "listen": "test", "script": { - "id": "2ce704bd-a6bc-45f2-b1e1-912621097cd3", + "id": "624045da-9777-4ec4-80d3-bf74189388f6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/product/:productId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -6899,7 +6899,7 @@ } }, { - "id": "3d6ff6c4-acdc-4cb0-9a7b-b076019d79fa", + "id": "4076b42d-0342-4504-9c87-ba18c744937b", "name": "Delete all product specifications by product ID", "request": { "name": "Delete all product specifications by product ID", @@ -6961,7 +6961,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "d62c7a59-a46b-4807-8868-4e688c3735f2", + "id": "c398c6d7-8bac-4484-ae86-59f137591e51", "name": "OK", "originalRequest": { "url": { @@ -7020,7 +7020,7 @@ { "listen": "test", "script": { - "id": "0b54755a-b0a2-4c8a-801e-7973364d5fe2", + "id": "0f7d4097-68ba-42b2-9f03-5813e05b6f50", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/product/:productId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -7033,7 +7033,7 @@ } }, { - "id": "d47ac2a2-0c39-4a67-92b9-c4bcab946369", + "id": "13b69257-5eef-4d1c-ae13-27a7f4610ef9", "name": "Delete a product specification", "request": { "name": "Delete a product specification", @@ -7110,7 +7110,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "5ada8558-99e9-41cc-a9d5-6a7ea3c29c36", + "id": "fd0ac94b-eeca-4c43-bfa2-d27054e893c4", "name": "OK", "originalRequest": { "url": { @@ -7169,7 +7169,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "40152acc-3432-4043-aa20-f18b36366100", + "id": "168d8885-1be5-46e3-a94a-c9d9a3a904f0", "name": "Not Found", "originalRequest": { "url": { @@ -7239,7 +7239,7 @@ { "listen": "test", "script": { - "id": "281edab8-cd29-429f-aff0-6823afbf34ec", + "id": "ecb39970-ad23-4f54-af5c-b524e11be800", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/product/:productId/specification/:specificationId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -7252,7 +7252,7 @@ } }, { - "id": "f3257c2a-9181-4153-b6e0-97c5ec7ae630", + "id": "8f36c637-ca43-4059-984c-9e46bf5fd152", "name": "Associate product specification using specification name and group name", "request": { "name": "Associate product specification using specification name and group name", @@ -7331,7 +7331,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3e997c88-8bdb-48db-bd07-b8d1e1a1945c", + "id": "3ecb5f41-25ea-4e8f-9bb6-588d51f28a8c", "name": "OK", "originalRequest": { "url": { @@ -7413,7 +7413,7 @@ { "listen": "test", "script": { - "id": "4f4d768a-a780-4ad8-82ee-1aa9db4f1bd7", + "id": "ce46716e-b7fb-4361-9806-21d2abe75380", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/product/:productId/specificationvalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -7432,7 +7432,7 @@ "event": [] }, { - "id": "b4e68557-4400-4928-b48b-9c30d6840c6f", + "id": "4c09809f-8662-48ae-a22f-720180fa2662", "name": "Trade policy", "description": { "content": "", @@ -7440,7 +7440,7 @@ }, "item": [ { - "id": "5cabeb6d-97e4-4f23-932d-d7f5b99099d7", + "id": "410026f8-393b-4a0b-99ec-5b776c2843a6", "name": "Get trade policies by product ID", "request": { "name": "Get trade policies by product ID", @@ -7506,7 +7506,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "36826348-aba7-46b6-8aff-3e2e9d5e7861", + "id": "f01f0f35-be74-40af-9f32-a8fd149fe861", "name": "OK", "originalRequest": { "url": { @@ -7575,7 +7575,7 @@ { "listen": "test", "script": { - "id": "34790567-c2b7-4337-b5e6-3c5390ff0b06", + "id": "2374466c-2825-4aad-8a59-41645e658d35", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/product/:productId/salespolicy - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -7591,7 +7591,7 @@ } }, { - "id": "66a0b107-6da7-4b02-ba8b-242db6439e50", + "id": "e42de6ba-003a-4d91-aa0f-f449921a3147", "name": "Associate product with trade policy", "request": { "name": "Associate product with trade policy", @@ -7664,7 +7664,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "547c743c-86b5-47e5-bfe5-fd4561c77310", + "id": "68f40e6f-7491-4c66-8206-88a342b09dc5", "name": "OK", "originalRequest": { "url": { @@ -7724,7 +7724,7 @@ { "listen": "test", "script": { - "id": "6af2be4b-ad8c-4d14-82da-b557c53aba62", + "id": "234dc97f-ff22-495e-9baf-3842d1cb18d3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/product/:productId/salespolicy/:tradepolicyId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -7737,7 +7737,7 @@ } }, { - "id": "4466fa47-c278-4a5c-99f9-0a8a64d80aa7", + "id": "e1e74aaa-b3eb-435f-bfe1-253dd322ebe4", "name": "Remove product from trade policy", "request": { "name": "Remove product from trade policy", @@ -7810,7 +7810,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "e14f5501-b0ce-4561-ac83-9e86cce849ba", + "id": "ee1044ef-057d-409c-9bc6-e25bf40b38d1", "name": "OK", "originalRequest": { "url": { @@ -7870,7 +7870,7 @@ { "listen": "test", "script": { - "id": "4582a3da-85f8-494d-bde5-2adbda5e95b4", + "id": "00365f91-76a6-469c-882f-d242aa84cdc9", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/product/:productId/salespolicy/:tradepolicyId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -7883,7 +7883,7 @@ } }, { - "id": "5bd02b1a-401e-449c-b631-a58061647945", + "id": "3ed21f08-6047-47b4-8db3-83e923972789", "name": "List all SKUs of a trade policy", "request": { "name": "List all SKUs of a trade policy", @@ -7974,7 +7974,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "1439f13c-5313-4684-b336-8b9d67e1fbc2", + "id": "ec108e78-da4e-417d-866d-4cee8c7f3337", "name": "OK", "originalRequest": { "url": { @@ -8079,7 +8079,7 @@ { "listen": "test", "script": { - "id": "b9baf8f8-caa1-47d1-bffb-535763c8f22e", + "id": "8942159a-5141-4790-a01c-c11d2ba1f3f1", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitidsbysaleschannel - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -8098,7 +8098,7 @@ "event": [] }, { - "id": "8f5291dd-0f93-4962-8102-dfe5a3a76950", + "id": "60ef3384-bff5-4c8c-b9ec-2e3f653b23cc", "name": "Similar category", "description": { "content": "", @@ -8106,7 +8106,7 @@ }, "item": [ { - "id": "4d89bb57-6b4a-40e6-af6d-0e6225b0ddca", + "id": "e35140cf-408d-499b-a6bf-6e842231599c", "name": "Get similar categories", "request": { "name": "Get similar categories", @@ -8172,7 +8172,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "c0d80673-f472-45a8-9d16-f93ba284a141", + "id": "75f47d29-bf3e-4d59-9396-9983c55705ed", "name": "OK", "originalRequest": { "url": { @@ -8241,7 +8241,7 @@ { "listen": "test", "script": { - "id": "05102166-12a4-47f1-9ca5-eff6520c8823", + "id": "0a5fb670-3e82-4580-8ce9-2381955b9f48", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/product/:productId/similarcategory - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -8257,7 +8257,7 @@ } }, { - "id": "94ddd340-0e89-4c3f-b2a7-35f93ca86a9c", + "id": "d75ff156-4c81-4a90-a747-d4244c9c13c0", "name": "Add similar category", "request": { "name": "Add similar category", @@ -8334,7 +8334,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "1fcf1611-cfe0-4d68-af2d-8d6006a495a6", + "id": "634b9e5a-23bb-4ac9-8d4d-dff50dc1e326", "name": "OK", "originalRequest": { "url": { @@ -8404,7 +8404,7 @@ { "listen": "test", "script": { - "id": "bf17b75c-0a30-4ee5-8d84-a9ff737c8c98", + "id": "c38c75c6-d0c3-4233-8934-c3ca4cb6c846", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/product/:productId/similarcategory/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -8420,7 +8420,7 @@ } }, { - "id": "d5279954-6aa6-44ff-a027-c5c74925aa89", + "id": "77153531-1fc5-4b26-b59b-f68676821c5e", "name": "Delete similar category", "request": { "name": "Delete similar category", @@ -8493,7 +8493,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "dc03413a-edcb-4dbd-b84d-fb0a1cf46210", + "id": "1d3aeec9-a056-4c70-ab6e-70fcd9e7ed2e", "name": "OK", "originalRequest": { "url": { @@ -8553,7 +8553,7 @@ { "listen": "test", "script": { - "id": "83e27cd9-6aff-4b2e-b379-e812de8ec5dd", + "id": "ec523251-7099-4540-9bc9-43ce12c82819", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/product/:productId/similarcategory/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -8569,7 +8569,7 @@ "event": [] }, { - "id": "fd1eacad-eb75-4368-b258-7807a0c0faa2", + "id": "b5a35721-2ddf-4735-8c03-78b3d60340d8", "name": "SKU", "description": { "content": "", @@ -8577,7 +8577,7 @@ }, "item": [ { - "id": "ed799630-6498-4030-b395-2acc73f9b818", + "id": "ceebabf4-4f82-436d-a9f9-0917454ae8ed", "name": "List all SKU IDs", "request": { "name": "List all SKU IDs", @@ -8650,7 +8650,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "b469d319-f135-43fb-8c1f-38745bd59b6c", + "id": "4988ad04-26d5-4202-98ea-353ac085a00c", "name": "OK", "originalRequest": { "url": { @@ -8737,7 +8737,7 @@ { "listen": "test", "script": { - "id": "38b2aa29-3596-41e5-9a07-2e152fc6c802", + "id": "09417cd6-dbbc-4d91-922e-a16f6ffa0ea7", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitids - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -8753,7 +8753,7 @@ } }, { - "id": "7929e2d4-e3b1-45f5-9288-96e5d8dd608a", + "id": "4f3246c1-185d-4f9c-b352-7392d87ae5b6", "name": "Get SKU and context", "request": { "name": "Get SKU and context", @@ -8829,7 +8829,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "98d8d667-ede1-48cb-8528-ffc1032ec0c0", + "id": "efb3e8bf-a410-4486-a2fd-0a84001a0325", "name": "OK", "originalRequest": { "url": { @@ -8908,7 +8908,7 @@ { "listen": "test", "script": { - "id": "6fc92278-75ec-4f7c-b1a5-cc7e392a931b", + "id": "f14a36db-d473-42f2-a447-bd15f92cb407", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitbyid/:skuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -8924,7 +8924,7 @@ } }, { - "id": "83c2cdd7-b724-4754-a40c-263be4283923", + "id": "57833bad-5f66-4245-8c5f-fe0dd7b731d5", "name": "Get SKU by reference ID", "request": { "name": "Get SKU by reference ID", @@ -8987,7 +8987,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "fe6961f6-1bcd-48a2-8d8b-39cfbd4d2fa2", + "id": "7c723f87-e525-4e8a-bb6d-7ebfeb23d3be", "name": "OK", "originalRequest": { "url": { @@ -9064,7 +9064,7 @@ { "listen": "test", "script": { - "id": "f4320d9e-6972-4180-8214-9ef5da269289", + "id": "11026c52-f014-491d-b377-28e6a3a2d3e5", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -9080,7 +9080,7 @@ } }, { - "id": "801937f6-bb33-4d8b-86eb-23a94a091e2a", + "id": "b57556e1-17ab-40ab-87b7-58047219d61e", "name": "Create SKU", "request": { "name": "Create SKU", @@ -9146,7 +9146,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "33442e74-3de9-4780-b9d9-a8996f4a2b54", + "id": "9052b59f-72d0-445b-8d16-f3653c7b0726", "name": "OK", "originalRequest": { "url": { @@ -9226,7 +9226,7 @@ { "listen": "test", "script": { - "id": "a84bee58-2d6c-4fe3-b71a-8be20a19c33e", + "id": "508b33ca-0c7c-4678-af62-0c96501fb646", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/stockkeepingunit - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -9242,7 +9242,7 @@ } }, { - "id": "cf04e04e-d766-4f94-a48c-58b87d756e54", + "id": "3630832d-373f-49dc-b722-ed0285c5ecd4", "name": "Get SKU ID by reference ID", "request": { "name": "Get SKU ID by reference ID", @@ -9308,7 +9308,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d1f78db9-946b-46e7-ac3d-b54e112e496d", + "id": "fbcd135a-3d57-42eb-a5a1-c776eb9f5080", "name": "OK", "originalRequest": { "url": { @@ -9377,7 +9377,7 @@ { "listen": "test", "script": { - "id": "87fd5dd0-3889-4fe4-87df-dd8164fca25f", + "id": "a0c84680-e478-4b6d-88da-19c029b9958d", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitidbyrefid/:refId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -9393,7 +9393,7 @@ } }, { - "id": "68804a33-78a2-4c29-93b1-828b98dd94bd", + "id": "37319677-327b-4f52-82dd-ed3638741e14", "name": "Get SKU by alternate ID", "request": { "name": "Get SKU by alternate ID", @@ -9459,7 +9459,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d61f7f71-aa1b-4a60-b88b-d6afc563c828", + "id": "a72b2e82-c996-4b35-8bd2-1e68daf0199f", "name": "OK", "originalRequest": { "url": { @@ -9528,7 +9528,7 @@ { "listen": "test", "script": { - "id": "e6fd383d-a835-40f8-8c7a-70034cfeed92", + "id": "e13b0eac-c192-4d85-947c-535d2e5ec1d4", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitbyalternateId/:alternateId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -9544,7 +9544,7 @@ } }, { - "id": "8305b208-dfe9-4ecc-9784-799f4148d32b", + "id": "0436cc58-12c8-43cc-bf42-5447f929897a", "name": "Get SKU list by product ID", "request": { "name": "Get SKU list by product ID", @@ -9610,7 +9610,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "16fc9764-c338-42f6-a741-c0a044b369be", + "id": "62dc0fd0-46eb-46c3-8d8b-e36d7397668e", "name": "OK", "originalRequest": { "url": { @@ -9679,7 +9679,7 @@ { "listen": "test", "script": { - "id": "a6192b26-2ab8-40ba-94ca-711344f1d981", + "id": "dc238507-d29e-4927-8f8d-66731690bafd", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitByProductId/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -9695,7 +9695,7 @@ } }, { - "id": "aacf95fe-1282-4d65-8fa3-829850418ee1", + "id": "d3a1171e-8b18-4550-9fb9-c49429e0ed1a", "name": "Retrieve SKU ID list by reference ID list", "request": { "name": "Retrieve SKU ID list by reference ID list", @@ -9762,7 +9762,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "c75a5468-d0c4-4c5c-95d5-b67dcf920c53", + "id": "74044d0a-7f03-4dbd-96e6-9160b73135cf", "name": "OK", "originalRequest": { "url": { @@ -9842,7 +9842,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "2ddaae33-0f10-4d59-b59b-70c6bc5886fc", + "id": "d4d1a38f-eb46-4014-ab47-f297bbd5a726", "name": "Internal Server Error", "originalRequest": { "url": { @@ -9913,7 +9913,7 @@ { "listen": "test", "script": { - "id": "2bb33f29-77ee-43e7-ab06-7edadd83a395", + "id": "c4be20d8-4079-4ea9-89ee-b2515806268e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pub/sku/stockkeepingunitidsbyrefids - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -9929,7 +9929,7 @@ } }, { - "id": "e4fbfbdb-dbad-4f0a-ae52-47ffb24e9cff", + "id": "da936d1d-f975-4dad-b69d-83bff7317b01", "name": "Get SKU", "request": { "name": "Get SKU", @@ -9994,7 +9994,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "43d3da21-e337-4493-ad32-d11eb9b5fb5b", + "id": "154507ae-c82f-47a6-a66a-91e39f15c965", "name": "OK", "originalRequest": { "url": { @@ -10062,7 +10062,7 @@ { "listen": "test", "script": { - "id": "d0e4d5f7-8f51-41a2-a498-888ed4aa8d4e", + "id": "feca6c8e-e438-4380-ad12-a5b4f0f25985", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -10078,7 +10078,7 @@ } }, { - "id": "7d5d4a17-88dc-422d-b188-522d68c15a30", + "id": "13d71cbc-f971-4717-a48a-e960b2dc1b0e", "name": "Update SKU", "request": { "name": "Update SKU", @@ -10156,7 +10156,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "8561d4c0-85c0-4392-8f7e-ac67653c11b6", + "id": "35c0b3fd-45e1-44c7-a571-78f072ea0d99", "name": "OK", "originalRequest": { "url": { @@ -10237,7 +10237,7 @@ { "listen": "test", "script": { - "id": "0c3504ca-ce9c-4e77-aa6d-664f3c1e161e", + "id": "855f5daa-bb3e-4dab-a58b-7228c549bdb1", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -10256,7 +10256,7 @@ "event": [] }, { - "id": "cbbd270b-f077-4551-b025-e5f5d30dfe35", + "id": "64ffd511-8382-4301-9057-9c7002e4a318", "name": "SKU EAN", "description": { "content": "", @@ -10264,7 +10264,7 @@ }, "item": [ { - "id": "d241a235-14ce-4079-8bef-26bfe125bdc3", + "id": "2b16ca07-e001-4b4c-b2ed-d27bdc19ef63", "name": "Get SKU by EAN", "request": { "name": "Get SKU by EAN", @@ -10330,7 +10330,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "6e57e607-e479-4378-91f4-f31820e62829", + "id": "a393f1f9-ddd3-44e8-b6ff-0eed6552263d", "name": "OK", "originalRequest": { "url": { @@ -10399,7 +10399,7 @@ { "listen": "test", "script": { - "id": "6e302bb3-8aee-4d23-8f50-e494e4db6ce6", + "id": "580ad238-dc04-4ed6-86aa-2f5c25059b62", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/stockkeepingunitbyean/:ean - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -10415,7 +10415,7 @@ } }, { - "id": "32dd2b39-fb0a-4fe2-aee9-953ca8e06261", + "id": "8040fe8f-ed1c-4b50-84c7-8d609c11f367", "name": "Get EAN by SKU ID", "request": { "name": "Get EAN by SKU ID", @@ -10481,7 +10481,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3a26eda8-0bf3-4008-b8c0-c21abf76fd96", + "id": "1eed61a3-0667-4d3d-942b-6457b267a755", "name": "OK", "originalRequest": { "url": { @@ -10550,7 +10550,7 @@ { "listen": "test", "script": { - "id": "6efc3c2c-aaec-44d8-97fa-60d68777adc2", + "id": "e7baefbc-fafa-4ea2-b05c-de76cd5caffe", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/ean - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -10566,7 +10566,7 @@ } }, { - "id": "c47becfe-f551-4681-b5cb-08ce72cfa3fd", + "id": "24044c52-101f-4a1e-ab5c-dd281275c23f", "name": "Delete all SKU EAN values", "request": { "name": "Delete all SKU EAN values", @@ -10628,7 +10628,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "3a39c55f-b518-405b-8107-1d01224cd269", + "id": "b94ca9fa-b569-40e8-bea3-008ba4453be5", "name": "OK", "originalRequest": { "url": { @@ -10687,7 +10687,7 @@ { "listen": "test", "script": { - "id": "39fc8096-4f34-4673-9459-c9ba36a96cdc", + "id": "b6029ac1-e7bd-4418-8732-2fe1c1244cea", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/:skuId/ean - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -10700,7 +10700,7 @@ } }, { - "id": "d05e720d-a1cb-4600-b1c3-30c6618fb39e", + "id": "a86e9d18-5b1a-4c75-aa72-f021cedfd3ec", "name": "Create SKU EAN", "request": { "name": "Create SKU EAN", @@ -10773,7 +10773,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "ffb06813-ba21-4aa5-a6df-858f84e21cfb", + "id": "59184578-408b-4e4f-becc-8233919b4df2", "name": "OK", "originalRequest": { "url": { @@ -10833,7 +10833,7 @@ { "listen": "test", "script": { - "id": "c661c07f-bfee-4305-934b-0a01e39ea649", + "id": "c2f797f8-0565-4bd7-b7ed-2a20494ddc32", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/stockkeepingunit/:skuId/ean/:ean - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -10846,7 +10846,7 @@ } }, { - "id": "4230c683-b864-4c4a-b25b-adbbfdf415c7", + "id": "59f915db-8e73-41dc-b843-fc84ce46db50", "name": "Delete SKU EAN", "request": { "name": "Delete SKU EAN", @@ -10919,7 +10919,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "84ce8fbf-f541-49f1-907d-12cb8e0c3ae7", + "id": "1ea3ffe0-f823-4c3a-a414-41749a498f7e", "name": "OK", "originalRequest": { "url": { @@ -10979,7 +10979,7 @@ { "listen": "test", "script": { - "id": "a1d0e867-66cb-4ffc-af0d-a2f289b2c2cc", + "id": "5d10556c-6e6c-478c-9e92-06385abc3e5d", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/:skuId/ean/:ean - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -10995,7 +10995,7 @@ "event": [] }, { - "id": "5736df31-df55-4032-88bd-74b24a8407ac", + "id": "935f7f03-0d83-406b-a5c7-442f33bdfec6", "name": "SKU file", "description": { "content": "", @@ -11003,7 +11003,7 @@ }, "item": [ { - "id": "5913f4b9-c9ed-4a59-84e5-3a8dca9b70b6", + "id": "f6f172bf-98af-4b09-9e0b-fa78bc4e54e5", "name": "Get SKU files", "request": { "name": "Get SKU files", @@ -11069,7 +11069,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "2b2b27fd-440c-49ce-b72b-a549e2c4b162", + "id": "ae0d7d78-d686-4019-b7b4-040d3df8ce8a", "name": "OK", "originalRequest": { "url": { @@ -11138,7 +11138,7 @@ { "listen": "test", "script": { - "id": "ff283578-044a-4e5e-b805-e44e0af84a0a", + "id": "0f38286a-a59e-46ae-8e9c-e387231e26fa", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/file - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -11154,12 +11154,12 @@ } }, { - "id": "fa64e083-0f5c-496a-91a4-1751b29bedb1", + "id": "c3fbb6e1-71d0-445c-bdd9-e32426795554", "name": "Create SKU file", "request": { "name": "Create SKU file", "description": { - "content": "Creates a new image for an SKU based on its URL or on a form-data request body.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>❗ To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", + "content": "Creates a new SKU image file.\r\n\r\nThere are two request body options for this endpoint:\r\n- `application/json`: Use a JSON object to create an SKU file from an image URL.\r\n- `multipart/form-data`: Send the image file directly via form-data with the `File` and `Name` fields, enabling uploading binary assets together with image metadata in a single request.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>❗ To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", "type": "text/plain" }, "url": { @@ -11219,7 +11219,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\",\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Position\": 0\n}", + "raw": "{\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11233,7 +11233,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "7f32222d-2889-4e3b-acba-5e691ecedabc", + "id": "f6f2604c-0669-4444-94be-1760ceb76b96", "name": "OK", "originalRequest": { "url": { @@ -11290,7 +11290,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\",\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Position\": 0\n}", + "raw": "{\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11315,7 +11315,7 @@ { "listen": "test", "script": { - "id": "037e41b8-64a8-47d0-89f7-f3a27f481c1a", + "id": "20dcacef-1889-4cd8-a096-a23212482d1c", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/stockkeepingunit/:skuId/file - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -11331,7 +11331,7 @@ } }, { - "id": "039db268-4aae-481a-88fb-7c2bbfc387ca", + "id": "ce229852-b5a5-4a58-b08f-dd1f6363ca93", "name": "Delete all SKU files", "request": { "name": "Delete all SKU files", @@ -11393,7 +11393,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "4645bbe6-e62f-452b-a0ba-797a3e374b49", + "id": "fae22750-1125-4e25-89bc-03a37aaab4c4", "name": "OK", "originalRequest": { "url": { @@ -11452,7 +11452,7 @@ { "listen": "test", "script": { - "id": "abfebe25-d1e5-498d-be62-17706e950abd", + "id": "ad69201c-c469-4490-a3e8-0d355e72d55a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/:skuId/file - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -11465,12 +11465,12 @@ } }, { - "id": "9107724d-9745-445d-ac32-3f777840a1bb", + "id": "b6e6fbd9-59ab-4efd-82ff-6372adae3ce5", "name": "Update SKU file", "request": { "name": "Update SKU file", "description": { - "content": "Updates a new image on an SKU based on its URL or on a form-data request body.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>❗ To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", + "content": "Updates an existing SKU image file.\r\n\r\nThere are two request body options for this endpoint:\r\n- `application/json`: Use a JSON object to update an SKU file from an image URL.\r\n- `multipart/form-data`: Send the image file directly via form-data with the `File` and `Name` fields, enabling uploading binary assets together with image metadata in a single request.\r\n\r\n## Permissions\r\n\r\nAny user or [API key](https://developers.vtex.com/docs/guides/api-authentication-using-api-keys) must have at least one of the appropriate [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3) to be able to successfully run this request. Otherwise they will receive a status code `403` error. These are the applicable resources for this endpoint:\r\n\r\n| **Product** | **Category** | **Resource** |\r\n| --------------- | ----------------- | ----------------- |\r\n| Catalog | Content | **SKUs** |\r\n\r\nThere are no applicable [predefined roles](https://help.vtex.com/en/tutorial/predefined-roles--jGDurZKJHvHJS13LnO7Dy) for this resource list. You must [create a custom role](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#creating-a-role) and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see [Authentication overview](https://developers.vtex.com/docs/guides/authentication).\r\n\r\n>❗ To prevent integrations from having excessive permissions, consider the [best practices for managing API keys](https://help.vtex.com/en/tutorial/best-practices-api-keys--7b6nD1VMHa49aI5brlOvJm) when assigning License Manager roles to integrations.", "type": "text/plain" }, "url": { @@ -11541,7 +11541,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\",\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Position\": 0\n}", + "raw": "{\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11555,7 +11555,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3539b437-847f-4f74-af5d-0f9972427387", + "id": "1504f9ca-fc46-448f-be35-c90eac268a9f", "name": "OK", "originalRequest": { "url": { @@ -11613,7 +11613,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\",\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Position\": 0\n}", + "raw": "{\n \"IsMain\": true,\n \"Label\": \"Main\",\n \"Name\": \"Nike-Red-Janoski-1\",\n \"Text\": \"Nike-Red-Janoski\",\n \"Url\": \"https://m.media-amazon.com/images/I/610G2-sJx5L._AC_UX695_.jpg\"\n}", "options": { "raw": { "headerFamily": "json", @@ -11638,7 +11638,7 @@ { "listen": "test", "script": { - "id": "150edece-8e76-4634-bd11-27dc9f6b8796", + "id": "cfaf71c4-c961-4e6d-a767-7ed304cea560", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/file/:skuFileId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -11654,7 +11654,7 @@ } }, { - "id": "3d14fc9b-03c4-452f-9ad0-bcdb73445e04", + "id": "41f4f994-2a1c-444c-b265-f64317afe1f6", "name": "Delete SKU image file", "request": { "name": "Delete SKU image file", @@ -11727,7 +11727,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "6899d8bb-4f6d-435a-8abb-d7df07059baf", + "id": "6f535457-0c8d-484a-a75e-c35f18aa6aaf", "name": "OK", "originalRequest": { "url": { @@ -11787,7 +11787,7 @@ { "listen": "test", "script": { - "id": "0732182d-9e11-41c1-80a2-5b7869587dc9", + "id": "e6eaa4f5-3e9b-447b-9c35-08b9365a832b", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/:skuId/file/:skuFileId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -11800,7 +11800,7 @@ } }, { - "id": "8a132a64-f67e-41fd-bd09-6aa4b40e1c0e", + "id": "c420ea91-9599-49c5-a587-56873100e7f9", "name": "Reorder SKU files", "request": { "name": "Reorder SKU files", @@ -11876,7 +11876,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "be2dcc68-f30e-4f6f-9776-9d05c2ed4b0a", + "id": "88eaf58d-0e33-4d12-bf5e-11cfe3f14ccc", "name": "OK.", "originalRequest": { "url": { @@ -11948,7 +11948,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "17df6e42-1520-489c-9e29-22f59e52fc86", + "id": "267aa67b-3ecc-4699-827f-325736fe210d", "name": "Bad request. All files are required.", "originalRequest": { "url": { @@ -12021,7 +12021,7 @@ { "listen": "test", "script": { - "id": "09e40f2f-1bc6-49cb-a04e-b117717773ef", + "id": "99ed6de3-823a-43c6-8633-c1da45f3e094", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/file/reorder - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -12034,7 +12034,7 @@ } }, { - "id": "0d12f908-9c04-4f5a-a6b4-2c84edf96244", + "id": "aaaade42-3259-4020-9ef1-d83433cd6114", "name": "Copy files from an SKU to another SKU", "request": { "name": "Copy files from an SKU to another SKU", @@ -12112,7 +12112,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "6f91fda6-cdee-4b4a-aac5-8da48ab24730", + "id": "87d175a3-f925-40cc-b0c2-4f51e3b272e5", "name": "OK", "originalRequest": { "url": { @@ -12183,7 +12183,7 @@ { "listen": "test", "script": { - "id": "6314588b-3a18-40f9-beb5-240807e052d0", + "id": "425645bf-abc0-463f-b12d-4037b8d55b0e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/copy/:skuIdfrom/:skuIdto/file - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -12199,7 +12199,7 @@ } }, { - "id": "5a5e35a4-edbd-4159-8a04-311764d4a631", + "id": "2092c4fc-b928-4564-b2c4-0415c5ef81fd", "name": "Disassociate SKU file", "request": { "name": "Disassociate SKU file", @@ -12273,7 +12273,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "f7e2e5a1-29eb-4445-a181-01b4eeb81da6", + "id": "0fbdd328-f6e2-400e-a0e5-e14a78841c47", "name": "OK", "originalRequest": { "url": { @@ -12334,7 +12334,7 @@ { "listen": "test", "script": { - "id": "0c068f60-5bbb-4982-83da-e4f82b6deb70", + "id": "3bc08ef4-5a48-4b30-a350-41b6f1c91464", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/disassociate/:skuId/file/:skuFileId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -12350,7 +12350,7 @@ "event": [] }, { - "id": "4e3e2f2b-2a87-4070-9ac5-a2ec45d35b3d", + "id": "f766b399-55f8-4e1d-aa39-3ef4ce78f2f9", "name": "SKU kit", "description": { "content": "", @@ -12358,7 +12358,7 @@ }, "item": [ { - "id": "99f0c939-8851-4b7f-9d6f-a1218019cff5", + "id": "dc30c26c-6281-42b4-8cf8-c3e53dc252b2", "name": "Get SKU kit by SKU ID or parent SKU ID", "request": { "name": "Get SKU kit by SKU ID or parent SKU ID", @@ -12430,7 +12430,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "5128b690-acd6-4c7e-8de7-ad08b6cf85de", + "id": "b9c7261e-4f98-4e82-b20d-6a0160b8a689", "name": "OK", "originalRequest": { "url": { @@ -12516,7 +12516,7 @@ { "listen": "test", "script": { - "id": "6a37e978-48c1-495b-aefe-6163e5001f65", + "id": "166981a9-e3c2-450e-8d65-393299e629ab", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunitkit - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -12532,7 +12532,7 @@ } }, { - "id": "be405363-13e1-4e2e-9194-25bf8890ae5f", + "id": "edf4b52d-8ca4-49c2-b5c2-c2e833e4870f", "name": "Create SKU kit", "request": { "name": "Create SKU kit", @@ -12598,7 +12598,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f299b026-1caa-4eb0-9b81-197d19ad0863", + "id": "c57cebb2-fa6d-4eac-9371-af0aafc2e50d", "name": "OK", "originalRequest": { "url": { @@ -12678,7 +12678,7 @@ { "listen": "test", "script": { - "id": "bd49ee54-1de5-4bc5-b85d-3dbd9a4fa3cb", + "id": "9c37a725-bc66-4b11-9cd7-4f78236a397d", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/stockkeepingunitkit - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -12694,7 +12694,7 @@ } }, { - "id": "0bbf6b7a-ef4a-4cc7-8b04-bf3bfac6a0a2", + "id": "efd0d46b-f14e-4f8f-b59d-06a3d8a5d01e", "name": "Delete SKU kit by SKU ID or parent SKU ID", "request": { "name": "Delete SKU kit by SKU ID or parent SKU ID", @@ -12762,7 +12762,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "29a6f523-ebbf-496a-bac5-b390fc3c3c18", + "id": "3c2f0579-b5e0-4f5d-ad5a-e199ed99f175", "name": "OK", "originalRequest": { "url": { @@ -12838,7 +12838,7 @@ { "listen": "test", "script": { - "id": "3e806d20-2f9f-4ace-a91d-f31e190d20e0", + "id": "d26b5e76-385e-40c9-99b7-46eb6d5a9bd6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunitkit - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -12851,7 +12851,7 @@ } }, { - "id": "8b2460f9-64c5-472e-80ab-60e95188a985", + "id": "56d76546-80ea-4cef-8732-05e7627ea02e", "name": "Get SKU kit", "request": { "name": "Get SKU kit", @@ -12916,7 +12916,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "720703af-ada1-4486-9d13-d641a8a78c31", + "id": "fb47d5da-30d1-4d39-bb78-a786d5a594cf", "name": "OK", "originalRequest": { "url": { @@ -12984,7 +12984,7 @@ { "listen": "test", "script": { - "id": "af4aeeac-a9ff-4441-bffa-ae22d5c296b2", + "id": "ac079e19-193b-4ed2-b0cb-1d96493378bd", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunitkit/:kitId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -13000,7 +13000,7 @@ } }, { - "id": "745f07cc-e21b-4986-b6de-cb7298814e6c", + "id": "96c0272e-9df3-49f6-93de-25fc63940795", "name": "Delete SKU kit by kit ID", "request": { "name": "Delete SKU kit by kit ID", @@ -13061,7 +13061,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "f3266478-80ec-4f1b-9acc-5e31226d15e3", + "id": "ada3f33a-6cd4-48d3-9ea2-0077aa82d640", "name": "OK", "originalRequest": { "url": { @@ -13119,7 +13119,7 @@ { "listen": "test", "script": { - "id": "b87c1e9d-9994-4f6b-a054-e9d2ec254ccb", + "id": "dd83b03e-286b-41e7-864f-6648e18c0a30", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunitkit/:kitId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -13135,7 +13135,7 @@ "event": [] }, { - "id": "f5bd4875-4a22-4e2d-86b7-a0da6f0d8dd0", + "id": "264042df-be7a-4f5e-b4d4-1148cc9ce641", "name": "SKU specification", "description": { "content": "", @@ -13143,7 +13143,7 @@ }, "item": [ { - "id": "bed81bf9-d7c6-4de5-91ca-0e1556e9c5c8", + "id": "269d4d5b-bdc1-4b4c-bb13-dd97a0031781", "name": "Get SKU specifications", "request": { "name": "Get SKU specifications", @@ -13209,7 +13209,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "671416e7-ace6-4d7c-8594-c00662a6a71d", + "id": "4f1005f7-73df-4730-9233-1953383c0f34", "name": "OK", "originalRequest": { "url": { @@ -13278,7 +13278,7 @@ { "listen": "test", "script": { - "id": "a9d484b3-117f-4979-ae91-e64c13f2cb13", + "id": "fe0fcc5e-77b3-418b-8fbe-18c7e71431d3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -13294,7 +13294,7 @@ } }, { - "id": "2c4a0da3-0c3a-40ff-9182-3e33c8295e79", + "id": "43180de0-6878-43ac-a759-cd8066ec2cec", "name": "Associate SKU specification", "request": { "name": "Associate SKU specification", @@ -13373,7 +13373,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "7fa8e64c-4b23-4b9c-a749-8b6c74bdeebd", + "id": "f25cc75c-9ec5-428d-a6e9-a530eb0531b5", "name": "OK", "originalRequest": { "url": { @@ -13455,7 +13455,7 @@ { "listen": "test", "script": { - "id": "bcec8290-6230-4c09-bbe4-f40e6dd7187c", + "id": "41268c87-34d5-419f-9e1f-7c52422968c5", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/stockkeepingunit/:skuId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -13471,7 +13471,7 @@ } }, { - "id": "f3e5209e-382d-4318-ac29-2ffddfa0ee8c", + "id": "09c3e4e4-ac06-468f-a445-4667df92a712", "name": "Update SKU specification", "request": { "name": "Update SKU specification", @@ -13550,7 +13550,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e5574ab3-aec8-4179-bc36-8fecfeebbc4f", + "id": "547de563-c3a7-44d5-83f0-83b4484f11a1", "name": "OK", "originalRequest": { "url": { @@ -13632,7 +13632,7 @@ { "listen": "test", "script": { - "id": "1e0638ca-c299-4dc4-bb8a-f9f5935f79be", + "id": "714a2638-c128-4983-b5b2-5f774ca2b3e4", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -13648,7 +13648,7 @@ } }, { - "id": "16bdcb4d-7142-4663-9122-6a4c7a3642db", + "id": "adb3e7d3-b31f-4ca0-9d88-79dc1176b697", "name": "Delete all SKU specifications", "request": { "name": "Delete all SKU specifications", @@ -13710,7 +13710,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "f4530b7a-bdb1-45e4-a8b4-c8c43626e25f", + "id": "eed31f5e-36bd-4d3d-a49b-d6849ffa3939", "name": "OK", "originalRequest": { "url": { @@ -13769,7 +13769,7 @@ { "listen": "test", "script": { - "id": "45af2115-7237-4e45-8cc7-edabfe3822a9", + "id": "da91c291-45f6-4f20-9708-10848694bf6c", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/:skuId/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -13782,7 +13782,7 @@ } }, { - "id": "ad35d8b6-3cf8-415a-9d95-be2d8c22dfe9", + "id": "ccca0c56-61a8-492b-b78a-d041fed0f7e5", "name": "Delete SKU specification", "request": { "name": "Delete SKU specification", @@ -13855,7 +13855,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "26819f6f-bd0f-4b3c-b289-ea021450fdc0", + "id": "757772cc-6852-4937-a440-ea30bf782a5f", "name": "OK", "originalRequest": { "url": { @@ -13915,7 +13915,7 @@ { "listen": "test", "script": { - "id": "b2f20941-181c-4b48-b486-458301205c69", + "id": "56573b37-9a06-4e41-8c97-033238f2aebe", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/stockkeepingunit/:skuId/specification/:specificationId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -13928,7 +13928,7 @@ } }, { - "id": "2a703f33-9d84-43c8-981e-7024b248d464", + "id": "3d30ad23-384c-452d-ba75-e7fee51b38e6", "name": "Associate SKU specification using specification name and group name", "request": { "name": "Associate SKU specification using specification name and group name", @@ -14007,7 +14007,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "53cd8b64-d303-4878-a2b6-471e5e5b467d", + "id": "5e2649f3-fb0d-4582-ac0d-a82910891a71", "name": "OK", "originalRequest": { "url": { @@ -14089,7 +14089,7 @@ { "listen": "test", "script": { - "id": "1b9e3d83-0846-4eb8-9349-a992abf5ad39", + "id": "82a742c0-edcf-4270-b467-32e1f6d2c6e6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/specificationvalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -14108,7 +14108,7 @@ "event": [] }, { - "id": "695bcaa2-1d80-40c6-b4d6-ab973c121981", + "id": "2954d0ad-bdf9-4c4f-a1e3-a042ddc2fd88", "name": "SKU attachment", "description": { "content": "", @@ -14116,7 +14116,7 @@ }, "item": [ { - "id": "703c435d-bce3-4db1-aad0-be53c631988c", + "id": "9dd55b4c-fbb8-4c89-8fe0-a614df7bb1cf", "name": "Associate SKU attachment", "request": { "name": "Associate SKU attachment", @@ -14182,7 +14182,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f52d25e3-0c5d-4392-9eb6-843c7197bda1", + "id": "8d24a6c6-78a6-43f5-ab77-8b24c877269c", "name": "OK", "originalRequest": { "url": { @@ -14262,7 +14262,7 @@ { "listen": "test", "script": { - "id": "50cc3157-6081-4291-9be5-39df2ff2911a", + "id": "69730b18-12b0-49ef-a8e1-3421bdadd3cc", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/skuattachment - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -14278,7 +14278,7 @@ } }, { - "id": "6c2e7b1d-6735-46f0-a29d-051777d528c4", + "id": "014b8fd6-82fa-4821-b3c3-c3b0f313a26d", "name": "Dissociate attachments and SKUs", "request": { "name": "Dissociate attachments and SKUs", @@ -14346,7 +14346,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "1cc5fee0-58b1-47a6-9576-eb2e4492e8be", + "id": "f84c59be-238f-43cc-8616-3286190df76e", "name": "OK", "originalRequest": { "url": { @@ -14422,7 +14422,7 @@ { "listen": "test", "script": { - "id": "53357e12-b29a-471c-a193-27c6841e8baf", + "id": "0538f334-3127-46ea-8eb8-7d0686187c44", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuattachment - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -14435,7 +14435,7 @@ } }, { - "id": "23b7fe4d-2e30-46bf-a0c0-be0935d1361e", + "id": "1cb1c51c-2b7a-45b0-be78-a8d205ab5761", "name": "Get SKU attachments by SKU ID", "request": { "name": "Get SKU attachments by SKU ID", @@ -14501,7 +14501,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "c7b0951b-ecf4-44dd-966b-74df2902c6cf", + "id": "868db1a2-c928-47f5-8c94-872988563944", "name": "OK", "originalRequest": { "url": { @@ -14570,7 +14570,7 @@ { "listen": "test", "script": { - "id": "ddff3e9f-1049-4bd5-869a-782ad2b2f27a", + "id": "5b81e6c1-e70b-43ec-b558-52368db60611", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/attachment - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -14586,7 +14586,7 @@ } }, { - "id": "d1481abc-7de9-4038-a3df-9a7664f582b8", + "id": "7c9d62ef-fa3b-46a8-a113-67337a62f179", "name": "Delete SKU attachment by attachment association ID", "request": { "name": "Delete SKU attachment by attachment association ID", @@ -14647,7 +14647,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "58b829e5-98e6-404f-a73a-3a9ddcab13aa", + "id": "381d5320-4422-42ee-98c0-03477ef8f666", "name": "OK", "originalRequest": { "url": { @@ -14705,7 +14705,7 @@ { "listen": "test", "script": { - "id": "344d66c9-eaa0-4616-ac77-e3675d9cc89e", + "id": "cf3fdaf5-f1dd-4052-8587-adb5ce10a94d", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skuattachment/:skuAttachmentAssociationId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -14718,7 +14718,7 @@ } }, { - "id": "a5c2e073-4b39-417c-9444-eca59dbbc028", + "id": "151c96e9-5a2b-41cb-98b0-9b265f999c85", "name": "Associate attachments to an SKU", "request": { "name": "Associate attachments to an SKU", @@ -14781,7 +14781,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "2ab8febd-1041-4fec-bd5e-117c983d5f0f", + "id": "7b8522ae-d14c-4f46-943b-9fdc35090afb", "name": "OK", "originalRequest": { "url": { @@ -14852,7 +14852,7 @@ { "listen": "test", "script": { - "id": "61b7639f-dda7-44a6-a02a-e7226a586152", + "id": "0ac491d5-9058-43d7-aee8-0b9e3ea9a5b8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/sku/associateattachments - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -14868,7 +14868,7 @@ "event": [] }, { - "id": "9ff6ba58-d93c-4e9f-b351-b7d91faa1f23", + "id": "719af649-b6f2-4e98-b2f9-dc9f0f983cd8", "name": "SKU complement", "description": { "content": "", @@ -14876,7 +14876,7 @@ }, "item": [ { - "id": "1053f10f-55ee-4f17-9ff5-a705ab3543f4", + "id": "3e09de5c-5c4c-4b06-b25d-65d4977237a1", "name": "Get SKU complement by SKU ID", "request": { "name": "Get SKU complement by SKU ID", @@ -14942,7 +14942,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e2279c6b-5330-4b66-b79f-f2bec0849406", + "id": "38a31c89-0405-4587-aa62-aae45d412a75", "name": "OK", "originalRequest": { "url": { @@ -15011,7 +15011,7 @@ { "listen": "test", "script": { - "id": "abcab7a1-dc84-4d62-9e45-563fc9e62fec", + "id": "4a193142-9892-4f7c-b9b3-d12579b61368", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/complement - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -15027,7 +15027,7 @@ } }, { - "id": "18fa558e-0a0b-4f61-ba1e-dca5bd9bd86f", + "id": "e1b22ede-9bf5-45b9-b675-b102f566c611", "name": "Get SKU complements by complement type ID", "request": { "name": "Get SKU complements by complement type ID", @@ -15104,7 +15104,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d248d565-6a38-43ef-b1a0-9b54cb74b800", + "id": "f1bd39b4-5bc4-4a40-9a96-d7fcbaecd099", "name": "OK", "originalRequest": { "url": { @@ -15174,7 +15174,7 @@ { "listen": "test", "script": { - "id": "6f9b706e-287c-45fa-afd0-9f6f6777e874", + "id": "a9e9856a-8f92-4015-8c24-41086a695ec8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/complement/:complementTypeId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -15190,7 +15190,7 @@ } }, { - "id": "06303e23-dbec-4dac-bb17-34b8131e692c", + "id": "49972efd-50c6-4172-8b33-cdc38e49a352", "name": "Get SKU complements by type", "request": { "name": "Get SKU complements by type", @@ -15267,7 +15267,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "0d0465c6-f163-43bd-aa7a-8ca76e43e524", + "id": "e20d156a-de21-428b-baca-731d6eda0b84", "name": "OK", "originalRequest": { "url": { @@ -15337,7 +15337,7 @@ { "listen": "test", "script": { - "id": "c504f466-bbcc-4ea0-8c07-33e7aa802dd9", + "id": "20606312-4b81-4903-8f71-969fe23e0e52", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sku/complements/:parentSkuId/:type - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -15353,7 +15353,7 @@ } }, { - "id": "1ee37131-bd81-45aa-ab54-8ef0ea3621eb", + "id": "252336a0-6c32-4a49-91a9-13c9a2100ffa", "name": "Create SKU complement", "request": { "name": "Create SKU complement", @@ -15419,7 +15419,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "b14af72b-3e25-46ac-ae02-4c8cbe9ca41e", + "id": "4c0cc286-0410-48be-bd5b-4e4e180a20ee", "name": "OK", "originalRequest": { "url": { @@ -15499,7 +15499,7 @@ { "listen": "test", "script": { - "id": "7cb89123-9799-4eee-ac52-ec89a6baa24b", + "id": "eef4761c-4453-418a-8c39-308421280f23", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/skucomplement - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -15515,7 +15515,7 @@ } }, { - "id": "71b63828-3f4f-4f9e-a7c4-cbde7495d20b", + "id": "3707c62a-ab15-476a-8f74-26c56064e12d", "name": "Get SKU complement by SKU complement ID", "request": { "name": "Get SKU complement by SKU complement ID", @@ -15580,7 +15580,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "9515c392-8db5-44af-b30a-ffbe73d7deb1", + "id": "f810dcdd-d8c4-4b8d-908f-8fb3d4559e38", "name": "OK", "originalRequest": { "url": { @@ -15648,7 +15648,7 @@ { "listen": "test", "script": { - "id": "0757c1f8-7790-471a-915c-f1831bd831fc", + "id": "b59f6cd8-637e-4397-ae2f-8e96c494d925", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skucomplement/:skuComplementId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -15664,7 +15664,7 @@ } }, { - "id": "8df935ed-21a6-47c8-991d-09f68f1e9402", + "id": "fba1ef50-fe56-4513-b8de-26422c4b1768", "name": "Delete SKU complement by SKU complement ID", "request": { "name": "Delete SKU complement by SKU complement ID", @@ -15725,7 +15725,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "5b0b4607-f213-48fe-abbf-6254e3245d0a", + "id": "c92130c4-472a-49c1-bee7-23eceb8bcf40", "name": "OK", "originalRequest": { "url": { @@ -15783,7 +15783,7 @@ { "listen": "test", "script": { - "id": "5e67e320-0b05-4970-9fbf-b42269bafda4", + "id": "27072ba8-402d-40c5-bab9-02a371f056f8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/skucomplement/:skuComplementId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -15799,7 +15799,7 @@ "event": [] }, { - "id": "53833674-a9ef-4fa9-8578-2ffb2018fed0", + "id": "4501fba0-4901-4b0d-8b2b-446fbafd4ad1", "name": "Non-structured specification", "description": { "content": "", @@ -15807,7 +15807,7 @@ }, "item": [ { - "id": "2cd1221d-d297-4270-8f5c-79f9d2369fa7", + "id": "1218bade-b332-454c-811f-83ebd3c21929", "name": "Get non-structured specification by ID", "request": { "name": "Get non-structured specification by ID", @@ -15873,7 +15873,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f2896155-44d7-4140-ac83-2af22c70213c", + "id": "b31d97f1-6644-490a-b019-2b43e0faeec7", "name": "OK", "originalRequest": { "url": { @@ -15942,7 +15942,7 @@ { "listen": "test", "script": { - "id": "4cdf6aab-bc0c-4874-8572-1b98c61026fd", + "id": "a1656407-8ce9-41ca-8ee3-a88d2e45fa12", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specification/nonstructured/:Id - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -15958,7 +15958,7 @@ } }, { - "id": "d09a57d5-85e9-4749-b131-34ad514c1988", + "id": "54feb491-fcc9-48bf-b1cd-a30d2d6401bf", "name": "Delete non-structured specification", "request": { "name": "Delete non-structured specification", @@ -16020,7 +16020,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "d5c92d8a-8265-45b9-b977-4a0e659c9d79", + "id": "0274a167-880d-4186-885f-3ab5baae31d5", "name": "OK", "originalRequest": { "url": { @@ -16079,7 +16079,7 @@ { "listen": "test", "script": { - "id": "de54aa7e-2332-409f-9bfb-1457855be978", + "id": "7e0ffe32-269c-4be8-87ca-eb1638e4da23", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/specification/nonstructured/:Id - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -16092,7 +16092,7 @@ } }, { - "id": "600be90b-1caf-4230-9d57-1f3623731783", + "id": "341675b8-78a7-4086-999f-ad6d6ce0aa15", "name": "Get non-structured specification by SKU ID", "request": { "name": "Get non-structured specification by SKU ID", @@ -16156,7 +16156,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "90592f15-566a-4640-8d11-dcd6338f2e2e", + "id": "8cd89adc-2892-4e8d-832d-5115bcdf1307", "name": "OK", "originalRequest": { "url": { @@ -16234,7 +16234,7 @@ { "listen": "test", "script": { - "id": "5c98cbe2-53e0-4126-91fd-3f623a49ab91", + "id": "02926c4e-1815-4af4-b964-83c8d8e43a93", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specification/nonstructured - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -16250,7 +16250,7 @@ } }, { - "id": "df20aeaf-1667-4e42-a214-1e37e51e2ac3", + "id": "04d4266e-1caf-4696-a8d3-b6db8a6cfe10", "name": "Delete non-structured specification by SKU ID", "request": { "name": "Delete non-structured specification by SKU ID", @@ -16310,7 +16310,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "15531e57-9fdc-4e56-845c-bd2b541d299b", + "id": "a356c805-ca03-459a-a611-4ba401dab3a4", "name": "OK", "originalRequest": { "url": { @@ -16378,7 +16378,7 @@ { "listen": "test", "script": { - "id": "f52ef388-5d55-4a72-9a2a-6d871000ea08", + "id": "40a65612-bcba-474c-868f-dc1778e6f090", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/specification/nonstructured - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -16394,7 +16394,7 @@ "event": [] }, { - "id": "f8a32c4a-372e-47c8-a004-2f1b605b09bb", + "id": "73368ead-c58b-4143-ba61-78a94865fdcf", "name": "Specification field", "description": { "content": "", @@ -16402,7 +16402,7 @@ }, "item": [ { - "id": "56b2ed1d-1bf3-4664-b9d8-e52273f55ee0", + "id": "70b49ef1-352c-494b-a165-8d1e07621301", "name": "Get specification field", "request": { "name": "Get specification field", @@ -16468,7 +16468,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "934b3c76-1596-408d-b616-3552ab068d00", + "id": "9f6374cd-455c-47f0-8710-ca5c2f80b3df", "name": "OK", "originalRequest": { "url": { @@ -16537,7 +16537,7 @@ { "listen": "test", "script": { - "id": "e6e2492f-52cb-4fee-abcc-22e0cca03fb4", + "id": "6724789b-f53d-411b-94d6-d1dbd437041e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/specification/fieldGet/:fieldId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -16553,7 +16553,7 @@ } }, { - "id": "277a117f-58d3-40ae-a905-229e9d3e5605", + "id": "8afb7724-8b8a-4148-8cab-0a4ddfde1b06", "name": "Create specification field", "request": { "name": "Create specification field", @@ -16620,7 +16620,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3bd513eb-00a2-400c-a81e-f521c545bdd3", + "id": "c8a2ce5b-6c7b-4f4d-a6db-bea9886d81ee", "name": "OK", "originalRequest": { "url": { @@ -16701,7 +16701,7 @@ { "listen": "test", "script": { - "id": "13173473-0e3b-4554-9f33-d3d955d79479", + "id": "d68ae539-319e-4147-9b7a-b320f05b2508", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/specification/field - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -16717,7 +16717,7 @@ } }, { - "id": "50af8b5e-a5ec-481d-8ab0-8564282cee62", + "id": "96270b84-57a3-4266-8f9c-ef58b0d35f6f", "name": "Update specification field", "request": { "name": "Update specification field", @@ -16784,7 +16784,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "35cc9ae5-5666-41df-8d6c-e84724e2eddf", + "id": "3a2bb739-bd85-4568-a31f-629efbca1b6c", "name": "OK", "originalRequest": { "url": { @@ -16865,7 +16865,7 @@ { "listen": "test", "script": { - "id": "e224a8b3-2bae-472a-b5f9-e606ad216d36", + "id": "27e82873-ee40-410f-a320-41653cb35df8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog_system/pvt/specification/field - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -16884,7 +16884,7 @@ "event": [] }, { - "id": "22a02ffc-f734-4f29-a814-32dc4fbf682d", + "id": "311ab396-e445-4e9a-aed7-1bd216f2f32d", "name": "Specification group", "description": { "content": "", @@ -16892,7 +16892,7 @@ }, "item": [ { - "id": "3b7b189e-727a-4a89-a368-82a0e9c5a9ca", + "id": "6b859425-555f-4c34-a0e6-17c04234cbf9", "name": "List specification group by category", "request": { "name": "List specification group by category", @@ -16958,7 +16958,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "2d4b9909-01a3-45d0-a3e8-4108b43d0f05", + "id": "dc9d759b-e78a-4db7-a1a7-769f9d9393fc", "name": "OK", "originalRequest": { "url": { @@ -17027,7 +17027,7 @@ { "listen": "test", "script": { - "id": "759c0eb8-6837-40c4-8486-60240432f2ce", + "id": "aa97dfee-085e-4cc8-a6fc-850bca7829f3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/specification/groupbycategory/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -17043,7 +17043,7 @@ } }, { - "id": "567bd3f3-afb5-4537-a3af-99ac2c9725c1", + "id": "9fe82ee0-c974-4baf-bc87-66c24ab54e11", "name": "Get specification group", "request": { "name": "Get specification group", @@ -17109,7 +17109,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3f16e703-de98-4954-8e6f-66b738b86c92", + "id": "64be98a4-e1ad-4ddc-93b5-a9eca2f96547", "name": "OK", "originalRequest": { "url": { @@ -17178,7 +17178,7 @@ { "listen": "test", "script": { - "id": "a25190b7-8b51-4437-8f12-362c42d17cfe", + "id": "1c1d0977-9de5-4d4e-b2ba-511c9ae14ac9", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/specification/groupGet/:groupId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -17194,7 +17194,7 @@ } }, { - "id": "5aec6ada-304a-4411-89df-83b2bc950ef3", + "id": "bf040bca-7479-4acf-a618-68533df28905", "name": "Create specification group", "request": { "name": "Create specification group", @@ -17260,7 +17260,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3f2f0fef-63d6-4eff-924c-2c1280f780dc", + "id": "67112283-1dc4-492d-86b0-fbda82f0f7c2", "name": "OK", "originalRequest": { "url": { @@ -17340,7 +17340,7 @@ { "listen": "test", "script": { - "id": "6aecd2b8-9c54-4754-bdc4-7c85e61b7788", + "id": "e08eb7b2-7422-4677-96a3-b6f6c0938c47", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/specificationgroup - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -17356,7 +17356,7 @@ } }, { - "id": "e5ba3496-b901-415f-af6f-39935cc81600", + "id": "57001e79-0bf8-49ab-9f80-df8b07e3e071", "name": "Update specification group", "request": { "name": "Update specification group", @@ -17434,7 +17434,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "7f3f9662-9dbd-47d1-8777-8d7bc1756df9", + "id": "9af74b90-d369-4201-b73b-68da46a52c3a", "name": "OK", "originalRequest": { "url": { @@ -17515,7 +17515,7 @@ { "listen": "test", "script": { - "id": "d483ceec-e26e-42fd-a958-d63157650acf", + "id": "0c70d292-1ea3-4a23-8ffa-3f109fdf55b8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/specificationgroup/:groupId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -17534,7 +17534,7 @@ "event": [] }, { - "id": "44eb4c87-3514-437f-a5d9-5412b4e5e3a3", + "id": "b64631a8-89c2-43a1-a71b-66861d1c8db0", "name": "Specification value", "description": { "content": "", @@ -17542,7 +17542,7 @@ }, "item": [ { - "id": "400f6c2c-1752-4f9d-b309-65c08831df71", + "id": "c31e30a2-2ee7-44b2-8021-e0d28f0ef86b", "name": "Get specification value", "request": { "name": "Get specification value", @@ -17607,7 +17607,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "940fce16-ef75-4476-a245-f5ff5c119096", + "id": "ca23dff6-9e1a-45c4-9d7a-09a4324f7e8b", "name": "OK", "originalRequest": { "url": { @@ -17675,7 +17675,7 @@ { "listen": "test", "script": { - "id": "467b39e6-29cb-450d-9443-3591703636ac", + "id": "579df2e6-b744-4a24-9944-0044957562b3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specificationvalue/:specificationValueId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -17691,7 +17691,7 @@ } }, { - "id": "1fc778e2-7745-411f-97fc-b15063cf01dc", + "id": "b81df0e5-6ad4-4fbc-9c94-3bbc7447abe8", "name": "Update specification value", "request": { "name": "Update specification value", @@ -17769,7 +17769,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e4988e2f-1a8d-476c-95be-db9a083688a8", + "id": "387587c4-ea82-46f8-8a9c-f93462d737de", "name": "OK", "originalRequest": { "url": { @@ -17850,7 +17850,7 @@ { "listen": "test", "script": { - "id": "aa501861-5fd6-40b2-958c-c2b08b32917e", + "id": "dc8434cf-4f8e-4422-8107-418627f38539", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/specificationvalue/:specificationValueId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -17866,7 +17866,7 @@ } }, { - "id": "7449067a-825c-42f9-b931-b0ab9f113cab", + "id": "29e32856-3e29-4a68-9b34-8462463e0612", "name": "Create specification value", "request": { "name": "Create specification value", @@ -17932,7 +17932,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d0f1a7c8-f502-445d-b32f-f7cf5cc4105c", + "id": "0c3e1133-07f4-4ff3-b0a9-b76fa2c2db27", "name": "OK", "originalRequest": { "url": { @@ -18012,7 +18012,7 @@ { "listen": "test", "script": { - "id": "97481533-6f67-48ce-a4b5-50b82e1c755d", + "id": "335ef762-e120-4f8b-a29a-9df9d9a5b561", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/specificationvalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18031,7 +18031,7 @@ "event": [] }, { - "id": "a870439a-a36b-4d27-8d54-d9b2c2b1000f", + "id": "bacb1d19-5893-4d55-9104-3606da112c7c", "name": "Specification field value", "description": { "content": "", @@ -18039,7 +18039,7 @@ }, "item": [ { - "id": "f269442e-2a8d-4ab0-8b56-5a109bca518b", + "id": "e2c186b5-6a28-49b0-b95d-9aca5d020f98", "name": "Get specification field value", "request": { "name": "Get specification field value", @@ -18105,7 +18105,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "c5fbc014-d324-47ee-b7ff-89a57261f478", + "id": "916a96a7-9ecd-4e8d-8f90-52392c4096f7", "name": "OK", "originalRequest": { "url": { @@ -18174,7 +18174,7 @@ { "listen": "test", "script": { - "id": "39bfd417-05f2-4fbf-818e-f80619fa3ff5", + "id": "58795def-588a-4b9b-a89d-8a559fa93d78", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/specification/fieldValue/:fieldValueId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18190,7 +18190,7 @@ } }, { - "id": "b3b0fad1-d381-4f15-a160-cdccb8f1ef6f", + "id": "acbecff3-07d7-4309-bdc3-b9f9cb2c8cd8", "name": "Get specification values by specification field ID", "request": { "name": "Get specification values by specification field ID", @@ -18256,7 +18256,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "2287a867-a757-4d91-b06b-862b90fc4dac", + "id": "25ad41d0-7da6-48d8-8f38-49b3dd7abb69", "name": "OK", "originalRequest": { "url": { @@ -18325,7 +18325,7 @@ { "listen": "test", "script": { - "id": "5a43d602-7cd0-49d8-8744-76d47da950d0", + "id": "6b07d622-cb5a-4a54-853a-c9115db01559", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/specification/fieldvalue/:fieldId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18341,7 +18341,7 @@ } }, { - "id": "9e61f148-f9be-4955-9931-986a97e3bfcf", + "id": "d2f19388-cbed-45cd-8d0c-706542c8c6bd", "name": "Create specification field value", "request": { "name": "Create specification field value", @@ -18408,7 +18408,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "a7de1d9a-a4be-47a9-b0e1-488915ddaf32", + "id": "c34936cc-72c8-4c9e-8cb5-ec112773fc58", "name": "OK", "originalRequest": { "url": { @@ -18489,7 +18489,7 @@ { "listen": "test", "script": { - "id": "964cc318-ef9d-4b81-8386-8db99a30ac2b", + "id": "1fe78e28-5baf-4f50-94c6-7dc135ed544b", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/specification/fieldValue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18505,7 +18505,7 @@ } }, { - "id": "136a20e2-5362-4360-8ebd-a468692559f7", + "id": "7369f909-1a73-424d-bd5b-fd7028c25d4e", "name": "Update specification field value", "request": { "name": "Update specification field value", @@ -18572,7 +18572,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d6fa78a7-b439-4bc4-8533-4f2a47b4aff4", + "id": "8700429f-c0bd-4267-915a-be14f99606ec", "name": "OK", "originalRequest": { "url": { @@ -18653,7 +18653,7 @@ { "listen": "test", "script": { - "id": "231e19b0-3f7b-4243-a86c-40e9ac175c4a", + "id": "3074b857-e9e3-49b3-b5fc-946937cdf3cc", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog_system/pvt/specification/fieldValue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18672,7 +18672,7 @@ "event": [] }, { - "id": "950b72f8-12fe-4d80-9100-076962c32a65", + "id": "ee7eea80-cae7-45e3-90dc-ff0b7d274a7a", "name": "Category specification", "description": { "content": "", @@ -18680,7 +18680,7 @@ }, "item": [ { - "id": "8346d156-155e-4d90-b1ab-9de2e6b9b2b9", + "id": "733a3f4f-f45f-4cc5-add1-5963b6b04612", "name": "Get specifications by category ID", "request": { "name": "Get specifications by category ID", @@ -18747,7 +18747,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "6f1df00c-6893-4cb7-b0d3-05c69bd13044", + "id": "e23a6a0d-9fd9-45e5-8435-cd634f07afba", "name": "OK", "originalRequest": { "url": { @@ -18817,7 +18817,7 @@ { "listen": "test", "script": { - "id": "9aa55783-e107-453a-a639-4be9a65b9249", + "id": "b22c53cd-e579-41ab-988f-9cd99b28412f", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/specification/field/listByCategoryId/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18833,7 +18833,7 @@ } }, { - "id": "7c90fb3a-87fd-4d2c-bab7-9e1af590d00d", + "id": "dca16a74-d872-4afc-b962-78857b628dba", "name": "Get specifications tree by category ID", "request": { "name": "Get specifications tree by category ID", @@ -18900,7 +18900,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "4daddd9f-800a-4378-84a6-5363ca96b8b4", + "id": "97133d00-b687-4acd-b1b7-f88d189d604d", "name": "OK", "originalRequest": { "url": { @@ -18970,7 +18970,7 @@ { "listen": "test", "script": { - "id": "3da30c37-d51a-4531-a03f-e736174a9e09", + "id": "d1fb87a4-d62e-45db-a0cd-16bb30f155d6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/specification/field/listTreeByCategoryId/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -18989,7 +18989,7 @@ "event": [] }, { - "id": "38c8eab8-b8b6-43f8-8df6-e1cafe9a4204", + "id": "28362f7b-215c-48e1-b3e0-124e7ca18e84", "name": "Specification", "description": { "content": "", @@ -18997,7 +18997,7 @@ }, "item": [ { - "id": "01e70d50-2e6d-40fd-91cb-c43e42e6ee8e", + "id": "eba25a9c-a486-45a9-8e06-78283ea7bf44", "name": "Get specification by specification ID", "request": { "name": "Get specification by specification ID", @@ -19062,7 +19062,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "84e16c0f-5a62-4b88-95d6-35e14db28062", + "id": "9d51ba95-6aec-4cb3-8809-32654c56d222", "name": "OK", "originalRequest": { "url": { @@ -19130,7 +19130,7 @@ { "listen": "test", "script": { - "id": "f6f6e404-5eb0-4f49-94ff-cdf5c3b7e565", + "id": "7541e73d-ec42-4045-a106-fcc8caa87630", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specification/:specificationId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -19146,7 +19146,7 @@ } }, { - "id": "44bd9e7e-c7f3-47c5-8c16-87a22da1b7ed", + "id": "c7144e6b-f114-4e92-9417-4c77b1915a8b", "name": "Update specification", "request": { "name": "Update specification", @@ -19224,7 +19224,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "426e872b-6851-4098-a943-332bf58c4c3a", + "id": "b0740700-06c2-4da4-a84f-d1acadd29710", "name": "OK", "originalRequest": { "url": { @@ -19305,7 +19305,7 @@ { "listen": "test", "script": { - "id": "e28db9f5-a671-4638-b1e4-4c473e8e4aa0", + "id": "4df0a6e5-3602-45ef-b7ab-fac28ecc1f0f", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/specification/:specificationId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -19321,7 +19321,7 @@ } }, { - "id": "08df2a90-78cb-4313-880f-419ea5b79f1a", + "id": "3a2b1564-640a-409b-a9a8-294f9dbf99b2", "name": "Create specification", "request": { "name": "Create specification", @@ -19387,7 +19387,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "b33ec605-d687-4f8b-8fd3-d33686afdec7", + "id": "d0ca571b-b071-463f-a094-14fe5d21f45f", "name": "OK", "originalRequest": { "url": { @@ -19467,7 +19467,7 @@ { "listen": "test", "script": { - "id": "5c46b9cd-005d-4eb9-9013-97cdbe969b1c", + "id": "a2e9da55-1272-46a9-9577-87362acfe4b4", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/specification - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -19486,7 +19486,7 @@ "event": [] }, { - "id": "2843466c-0856-4ea8-94e0-2f90adcf8227", + "id": "31ec515c-dc38-443f-b472-653efeb45e54", "name": "Subcollection", "description": { "content": "", @@ -19494,7 +19494,7 @@ }, "item": [ { - "id": "50e8628a-293f-43bf-be17-fde731986359", + "id": "aef75c3b-75e9-4e46-978b-bdcd8be4e41c", "name": "Add SKU to subcollection", "request": { "name": "Add SKU to subcollection", @@ -19573,7 +19573,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "dc676a2e-e032-4555-9e5b-c6bd1d1ae71b", + "id": "a6e59fe9-b3cd-401a-90bd-1990cec8c101", "name": "OK", "originalRequest": { "url": { @@ -19655,7 +19655,7 @@ { "listen": "test", "script": { - "id": "5258c4ed-e184-4fc1-869f-36d1fbe2019b", + "id": "cab17fed-1cb8-413d-b6d4-fa17d0d7349b", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/subcollection/:subCollectionId/stockkeepingunit - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -19671,7 +19671,7 @@ } }, { - "id": "4450d24f-03b2-4cb2-b404-b47a475a27c9", + "id": "1f1b41f1-8036-43e2-bedb-9ab245605a00", "name": "Delete SKU from subcollection", "request": { "name": "Delete SKU from subcollection", @@ -19744,7 +19744,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "3596da4f-7b54-4077-9c1c-a7f6c2e5b7d2", + "id": "075a027e-7260-42b7-ae6a-98f9c06cc1ab", "name": "OK", "originalRequest": { "url": { @@ -19804,7 +19804,7 @@ { "listen": "test", "script": { - "id": "6a2b2351-e56b-4530-8810-a92e86470fbd", + "id": "e22a4b4a-5d21-4509-b154-a2d0dc2ff494", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/subcollection/:subCollectionId/stockkeepingunit/:skuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -19817,7 +19817,7 @@ } }, { - "id": "8b0de4eb-d71a-46bc-8a3d-e84d4c87d582", + "id": "67090bc5-e92e-422e-aaa3-82e0a4f767ff", "name": "Associate category to subcollection", "request": { "name": "Associate category to subcollection", @@ -19896,7 +19896,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e29e1e6a-c6a2-42a6-a04a-45df443a1034", + "id": "5f92af79-7c19-4057-97cf-f2860627334d", "name": "OK", "originalRequest": { "url": { @@ -19978,7 +19978,7 @@ { "listen": "test", "script": { - "id": "ec819ffa-2c3b-4015-983e-cabf338422b4", + "id": "2cdece99-9276-4aa0-a489-34c8ea73ae43", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/subcollection/:subCollectionId/category - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -19994,7 +19994,7 @@ } }, { - "id": "593a8f7e-051a-4a6d-a9f0-88f566c5bb7a", + "id": "145f1a12-cd9d-4e56-8d43-5f0c21cfa14c", "name": "Delete category from subcollection", "request": { "name": "Delete category from subcollection", @@ -20067,7 +20067,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "6e1791c6-62d9-4495-baf4-c2f23774a410", + "id": "ea7380ce-0738-45cc-aba7-e059d909e849", "name": "OK", "originalRequest": { "url": { @@ -20127,7 +20127,7 @@ { "listen": "test", "script": { - "id": "22ea664a-f936-40f4-8fc4-16547e6c90b5", + "id": "054de808-cc32-41e6-850c-d4995f6ac928", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/subcollection/:subCollectionId/category/:categoryId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -20140,7 +20140,7 @@ } }, { - "id": "5c8a0033-0b72-4df2-8d41-6387ec47a44e", + "id": "1a3c35c3-ba03-472d-acfa-cf9547a049a0", "name": "Associate brand to subcollection", "request": { "name": "Associate brand to subcollection", @@ -20219,7 +20219,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "ace33039-c78f-445c-b8c1-c15f12d82744", + "id": "0282e3d6-7d5b-4dcc-b912-0b55f22aff70", "name": "OK", "originalRequest": { "url": { @@ -20301,7 +20301,7 @@ { "listen": "test", "script": { - "id": "7debde52-ee34-407c-a32a-01fc43ef5bec", + "id": "70fbce2b-088b-4a60-bae1-041738ec2ca5", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/subcollection/:subCollectionId/brand - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -20317,7 +20317,7 @@ } }, { - "id": "8d41c1ce-7ced-4063-bbf3-3ed01b8cafb7", + "id": "17b66e88-6b74-4d32-bc8a-3462e99937a8", "name": "Delete brand from subcollection", "request": { "name": "Delete brand from subcollection", @@ -20390,7 +20390,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "072eccdb-6acc-4f5b-acad-214026a6f07b", + "id": "97bbc3cb-eb20-4d3a-b25d-f75f0ec6cedd", "name": "OK", "originalRequest": { "url": { @@ -20450,7 +20450,7 @@ { "listen": "test", "script": { - "id": "e2bcbcae-5f19-4c00-af9e-6798fede449a", + "id": "74124a53-5fb2-406c-a24e-d765270eb99e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/subcollection/:subCollectionId/brand/:brandId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -20463,7 +20463,7 @@ } }, { - "id": "c48b5b6d-c28f-4908-8ab8-143e668db668", + "id": "36473e99-e986-407f-8c8c-528b0623d062", "name": "Get subcollection by collection ID", "request": { "name": "Get subcollection by collection ID", @@ -20529,7 +20529,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "589f65e4-5c05-4aeb-b4d4-34f69842608c", + "id": "39062dc6-33bf-4c35-89a0-833b0a49740c", "name": "OK", "originalRequest": { "url": { @@ -20598,7 +20598,7 @@ { "listen": "test", "script": { - "id": "33071a81-8e7d-4dff-837b-f01bb765a0eb", + "id": "db26034b-e67a-4a2d-9cc2-e774ab20c6b7", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/collection/:collectionId/subcollection - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -20614,7 +20614,7 @@ } }, { - "id": "60107c32-cd7e-42af-a3f3-ee5ee02138c7", + "id": "2168a2db-a99e-4756-a949-9e74193d6eb4", "name": "Get subcollection by subcollection ID", "request": { "name": "Get subcollection by subcollection ID", @@ -20679,7 +20679,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "aee315e6-2a5f-41cc-9d8a-cd8fe5682b66", + "id": "1dd2e24a-9418-4aa1-b32a-c014a50172c4", "name": "OK", "originalRequest": { "url": { @@ -20747,7 +20747,7 @@ { "listen": "test", "script": { - "id": "0e6b8885-2fca-44f4-bf5b-b94201a74cb8", + "id": "9c86e15e-670b-4834-8ede-397be830594f", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/subcollection/:subCollectionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -20763,7 +20763,7 @@ } }, { - "id": "f054d818-932c-4270-b64b-0896096a1e2a", + "id": "8d1db33a-6256-47db-9369-9ff0bc488380", "name": "Update subcollection", "request": { "name": "Update subcollection", @@ -20841,7 +20841,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "8717eb8b-fadd-4283-8b8d-186eca33d6f9", + "id": "07b4139e-73eb-45c5-a74b-74ec5201bb13", "name": "OK", "originalRequest": { "url": { @@ -20922,7 +20922,7 @@ { "listen": "test", "script": { - "id": "5ba8fd65-d44b-40ea-9507-4bcabfc08b13", + "id": "5f0223d9-058d-4e53-9287-967868f49ff8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/subcollection/:subCollectionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -20938,7 +20938,7 @@ } }, { - "id": "8eb0f1e0-2775-44f3-9b87-b92186e9da6b", + "id": "634dc674-6001-4ab1-92e3-fac90f3a3156", "name": "Delete subcollection", "request": { "name": "Delete subcollection", @@ -20999,7 +20999,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "9b076652-9534-47ca-9fc6-b55a05bd567f", + "id": "bbfffaa3-0080-42f3-9a8b-0764672a0f47", "name": "OK", "originalRequest": { "url": { @@ -21057,7 +21057,7 @@ { "listen": "test", "script": { - "id": "71d73744-f068-440d-97ba-04dac7252712", + "id": "2f282d51-616c-40c9-a828-c54f412f1709", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/subcollection/:subCollectionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -21070,7 +21070,7 @@ } }, { - "id": "e246a691-2f39-4c11-a42a-eaf9c4fdb052", + "id": "28eb6a9b-1058-4046-bd98-dc2337773f0f", "name": "Create subcollection", "request": { "name": "Create subcollection", @@ -21136,7 +21136,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e7abea30-1f8d-43f8-aa52-06363b7eb309", + "id": "3feacdab-5387-47a5-92e5-bc39f6a8458d", "name": "OK", "originalRequest": { "url": { @@ -21216,7 +21216,7 @@ { "listen": "test", "script": { - "id": "59d656fa-b649-4eca-bf0c-be5044c11cd0", + "id": "b7fb0797-6a84-40b5-8ca0-ac680b21f0af", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/subcollection - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -21232,7 +21232,7 @@ } }, { - "id": "f4c46a6d-ed72-4f4d-bec7-3d69ec7ed5be", + "id": "34097a54-0181-42a5-ad15-2d9462def9ed", "name": "Reposition SKU on the subcollection", "request": { "name": "Reposition SKU on the subcollection", @@ -21307,7 +21307,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "af2ba11e-b186-45c8-901d-37e8dfd13655", + "id": "f86389fb-602b-4456-a2b4-72ac1727ea42", "name": "OK", "originalRequest": { "url": { @@ -21379,7 +21379,7 @@ { "listen": "test", "script": { - "id": "45b823ff-3490-4343-a8b1-11af1d0e8af0", + "id": "8e797846-ba6b-478a-b66f-1e4dbfa402a4", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/collection/:collectionId/position - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -21392,7 +21392,7 @@ } }, { - "id": "a3da627d-5666-4645-a7fa-e35c0e61550d", + "id": "9eb5e129-17f7-40aa-8bdb-0b3fd6b3b0de", "name": "Get specification values by subcollection ID", "request": { "name": "Get specification values by subcollection ID", @@ -21458,7 +21458,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "9a66104c-717c-4681-a084-205647690e65", + "id": "43aef50c-b6b2-412a-8bfa-df77a67e17b3", "name": "OK", "originalRequest": { "url": { @@ -21527,7 +21527,7 @@ { "listen": "test", "script": { - "id": "8bb8707d-2083-4e32-b5ff-85738c8bddf6", + "id": "d1c7cb08-9c30-4283-a967-218f96fed9d1", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/subcollection/:subCollectionId/specificationvalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -21543,7 +21543,7 @@ } }, { - "id": "a4a06b8e-781e-4b69-8453-25d11a336617", + "id": "060c59ad-266c-4d2b-876a-52257ae09745", "name": "Use specification value in subcollection by ID", "request": { "name": "Use specification value in subcollection by ID", @@ -21622,7 +21622,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "83be6b88-95cb-4294-974f-7400323d40b5", + "id": "a32ecbf5-a007-450f-9a34-d4023929486a", "name": "OK", "originalRequest": { "url": { @@ -21704,7 +21704,7 @@ { "listen": "test", "script": { - "id": "27220ec2-0470-4261-900f-4be548b3c95a", + "id": "1e8ef842-6b73-4a23-bb69-93afafad5896", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/subcollection/:subCollectionId/specificationvalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -21720,7 +21720,7 @@ } }, { - "id": "2a709b9e-9bc2-4348-ac12-cf09512ed185", + "id": "4749c69a-dbc9-4942-aaf9-d4531d3692a6", "name": "Delete specification value from subcollection by ID", "request": { "name": "Delete specification value from subcollection by ID", @@ -21782,7 +21782,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "6db2fd10-9457-477e-92b8-f32fb488343c", + "id": "94a3befa-05e7-4325-b19c-bb33b0a6fea2", "name": "OK", "originalRequest": { "url": { @@ -21841,7 +21841,7 @@ { "listen": "test", "script": { - "id": "3a794eda-1a9c-400b-b2f4-1be99bf63588", + "id": "76652149-34b9-47d6-bf30-e38e11bc7b74", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/subcollection/:subCollectionId/specificationvalue - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -21857,7 +21857,7 @@ "event": [] }, { - "id": "86617eab-9287-4dfa-9cdb-1ef5dd1c48a0", + "id": "019fa382-835e-4081-a426-269f533d288c", "name": "Collection", "description": { "content": "", @@ -21865,7 +21865,7 @@ }, "item": [ { - "id": "44bcba94-5a5c-42ff-8389-6de339f10f53", + "id": "e5306022-bb06-4ea7-ba49-9ea066ab1997", "name": "Get all inactive collections", "request": { "name": "Get all inactive collections", @@ -21919,7 +21919,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "de31ce7e-f7f9-45b2-9096-88250ad2673e", + "id": "40374e86-3b18-4c71-a3d2-cae740f64212", "name": "OK", "originalRequest": { "url": { @@ -21987,7 +21987,7 @@ { "listen": "test", "script": { - "id": "5d08679c-801a-496e-b910-ed5b3543eda7", + "id": "de113539-36c3-4ff9-8214-949bde41f1bf", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/collection/inactive - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -22003,7 +22003,7 @@ } }, { - "id": "b43c31cc-eb37-4fdb-8d06-fd72ed4585b8", + "id": "049cf968-23b3-4c45-a7ee-88b9c1b45c28", "name": "Create collection", "request": { "name": "Create collection", @@ -22055,7 +22055,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"Name\": \"Halloween costumes\",\n \"Description\": \"HomeHalloween\",\n \"Searchable\": false,\n \"Highlight\": false,\n \"DateFrom\": \"2025-11-26T15:23:00\",\n \"DateTo\": \"2069-11-26T15:23:00\",\n \"TotalProducts\": 42128996,\n \"Type\": 10092134.666972324\n}", + "raw": "{\n \"Name\": \"Halloween costumes\",\n \"Description\": \"HomeHalloween\",\n \"Searchable\": false,\n \"Highlight\": false,\n \"DateFrom\": \"2025-11-26T15:23:00\",\n \"DateTo\": \"2069-11-26T15:23:00\",\n \"TotalProducts\": \"magna\",\n \"Type\": \"laborum Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -22069,7 +22069,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "446e86af-a488-4387-95a3-abde57cd2a3c", + "id": "9e32a219-1edf-4642-9404-efc7fc45722e", "name": "OK", "originalRequest": { "url": { @@ -22124,7 +22124,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"Name\": \"Halloween costumes\",\n \"Description\": \"HomeHalloween\",\n \"Searchable\": false,\n \"Highlight\": false,\n \"DateFrom\": \"2025-11-26T15:23:00\",\n \"DateTo\": \"2069-11-26T15:23:00\",\n \"TotalProducts\": 42128996,\n \"Type\": 10092134.666972324\n}", + "raw": "{\n \"Name\": \"Halloween costumes\",\n \"Description\": \"HomeHalloween\",\n \"Searchable\": false,\n \"Highlight\": false,\n \"DateFrom\": \"2025-11-26T15:23:00\",\n \"DateTo\": \"2069-11-26T15:23:00\",\n \"TotalProducts\": \"magna\",\n \"Type\": \"laborum Duis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -22149,7 +22149,7 @@ { "listen": "test", "script": { - "id": "2b8eb298-7538-4a87-ad02-f18dc796047a", + "id": "e408e841-61bd-4052-8f42-03e207c0773d", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/collection - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -22165,7 +22165,7 @@ } }, { - "id": "e1fbb072-576d-4d4d-8fe9-dbce55870b88", + "id": "c9d742e9-76b1-42dc-b282-627cab11591a", "name": "Import collection file example", "request": { "name": "Import collection file example", @@ -22211,7 +22211,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "e4e89947-7a73-4e75-b7e9-aefeb353b1ad", + "id": "c1b05e2e-9db9-46a0-abdc-b6e816f7acb4", "name": "OK", "originalRequest": { "url": { @@ -22271,7 +22271,7 @@ { "listen": "test", "script": { - "id": "47089b35-318d-48db-93bb-c2a83d90d459", + "id": "5c0325d0-7220-41e7-8e40-5ffd300050b0", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/collection/stockkeepingunit/importfileexample - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -22285,7 +22285,7 @@ } }, { - "id": "2c08430a-1190-42a4-b154-8b18a3168b7a", + "id": "52dd129d-0201-4aff-995b-1e846350d951", "name": "Add products to collection by imported file", "request": { "name": "Add products to collection by imported file", @@ -22365,7 +22365,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "c2b1578a-300f-40a6-9aa4-3c08b1dbbb3c", + "id": "e035cbbd-06cf-4388-a23f-82620699dde4", "name": "OK", "originalRequest": { "url": { @@ -22442,7 +22442,7 @@ { "listen": "test", "script": { - "id": "a964a2c1-1c81-4381-b660-4da093662f9c", + "id": "78035ad3-351b-4641-b310-e120a98baba5", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/collection/:collectionId/stockkeepingunit/importinsert - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -22455,7 +22455,7 @@ } }, { - "id": "42a9f424-6e34-4d23-b00b-99ac7ed69c57", + "id": "74d28d40-7f68-4d11-b9aa-1b6c43223afe", "name": "Remove products from collection by imported file", "request": { "name": "Remove products from collection by imported file", @@ -22535,7 +22535,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "1bfc6e40-4070-4009-892a-736cbd411fad", + "id": "1bb12f7e-afee-4d1b-9209-34dadb8adb25", "name": "OK", "originalRequest": { "url": { @@ -22612,7 +22612,7 @@ { "listen": "test", "script": { - "id": "08f05fda-ee0d-4bec-b20d-6aaee7d8a336", + "id": "e6e459ca-58c3-4075-8587-51b502c461a3", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/collection/:collectionId/stockkeepingunit/importexclude - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -22625,7 +22625,7 @@ } }, { - "id": "3e0a808f-599f-4ebd-8ca3-ee5ee3b5685d", + "id": "085d447c-dd41-4199-b4b8-6c18c173fca3", "name": "Get products from a collection", "request": { "name": "Get products from a collection", @@ -22809,7 +22809,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "48f6dada-1e27-45f2-bc89-8c7ee105d64f", + "id": "f0f09f3b-2411-4f8c-b383-7db021a9453c", "name": "OK", "originalRequest": { "url": { @@ -22996,7 +22996,7 @@ { "listen": "test", "script": { - "id": "a4fe265f-eb85-4909-9c6e-1e4e69280b25", + "id": "8697a2d4-8665-4e31-bfbc-81f903b96761", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/collection/:collectionId/products - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -23012,7 +23012,7 @@ } }, { - "id": "eedbbed5-fe7b-4329-a464-bc2f5a4eab2f", + "id": "34ac5fed-1a97-44fa-865f-e52709d50b6b", "name": "Get collection by ID", "request": { "name": "Get collection by ID", @@ -23077,7 +23077,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "6e541197-229a-40a2-aff8-68490835e7ca", + "id": "d3110f4a-e22d-4d57-aadc-9226e2c12aa6", "name": "OK", "originalRequest": { "url": { @@ -23145,7 +23145,7 @@ { "listen": "test", "script": { - "id": "704ef40b-1ced-4d17-908e-8992f4352e28", + "id": "a0dd0117-d457-441f-a331-0ca0b667cbf6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/collection/:collectionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -23161,7 +23161,7 @@ } }, { - "id": "94b8b850-0d82-4fa2-a076-53a24c807859", + "id": "99dcb76d-f315-4f8b-adeb-e889c73ef360", "name": "Update collection", "request": { "name": "Update collection", @@ -23239,7 +23239,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "599fed3e-c39c-4dbf-a1f1-e6ec98b3ab68", + "id": "bf16dc70-ae44-4532-802b-9bc913e95087", "name": "OK", "originalRequest": { "url": { @@ -23320,7 +23320,7 @@ { "listen": "test", "script": { - "id": "e3c020bc-e327-49bc-a96a-dffbc17be83f", + "id": "82f7b5c1-91fb-40ed-8155-fb20aa0af34a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/collection/:collectionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -23336,7 +23336,7 @@ } }, { - "id": "74e36fdf-82b7-4908-ad72-7095f6945f81", + "id": "5145b683-3ed5-4b5b-b7f3-dbd009b23949", "name": "Delete collection", "request": { "name": "Delete collection", @@ -23397,7 +23397,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "505cb0bf-85ee-4e2c-8d25-ea5d98a36959", + "id": "1327f7e4-a370-4fc8-8092-7b637fc0f46c", "name": "OK", "originalRequest": { "url": { @@ -23455,7 +23455,7 @@ { "listen": "test", "script": { - "id": "7007aa8e-c583-4a31-a490-236a0e08695c", + "id": "ff546e69-1eb9-48ab-b2f0-6bd6d4414376", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/collection/:collectionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -23471,7 +23471,7 @@ "event": [] }, { - "id": "94d8a0bf-ca98-4992-b853-3232e851804d", + "id": "01de7984-9ea3-4ed1-83e6-26b034e6c429", "name": "Supplier", "description": { "content": "", @@ -23479,7 +23479,7 @@ }, "item": [ { - "id": "413cdd0b-04e9-432e-b77d-f57338d33fc6", + "id": "ca449582-59c6-498e-96cf-897002830411", "name": "Create supplier", "request": { "name": "Create supplier", @@ -23545,7 +23545,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "a2fe4a49-0491-46a7-b212-4ea418d64235", + "id": "946d7a5f-4133-4e50-bc9f-15d69f637ae0", "name": "OK", "originalRequest": { "url": { @@ -23625,7 +23625,7 @@ { "listen": "test", "script": { - "id": "10d7e639-386c-4152-966d-6d98ef848a6d", + "id": "4aaf1d8d-8d38-44b9-9156-335f178c9d21", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog/pvt/supplier - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -23641,7 +23641,7 @@ } }, { - "id": "15d09944-ea84-4852-b82d-1515eb7c89b7", + "id": "a6adf5f9-bdd2-455f-8056-ac5ece643d8f", "name": "Update supplier", "request": { "name": "Update supplier", @@ -23719,7 +23719,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "46ff8e01-59af-4c80-a390-872a5acc3269", + "id": "a09890d6-4637-4d73-8339-422b73f96df7", "name": "OK", "originalRequest": { "url": { @@ -23800,7 +23800,7 @@ { "listen": "test", "script": { - "id": "112a7eed-cf4c-4821-80ca-29cd639e6d4f", + "id": "fa0b3477-c4de-43f7-87b0-e871bd9d207e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/supplier/:supplierId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -23816,7 +23816,7 @@ } }, { - "id": "ded2bab7-1e6b-441b-885a-f3fe8a2126aa", + "id": "575a8a4e-1029-4cf1-9fe4-09f414004741", "name": "Delete supplier", "request": { "name": "Delete supplier", @@ -23877,7 +23877,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "a5774270-f643-408a-abc8-7c9d8b299105", + "id": "f6f62a95-d487-4222-8799-7ffa24c22a6e", "name": "OK", "originalRequest": { "url": { @@ -23935,7 +23935,7 @@ { "listen": "test", "script": { - "id": "049acdeb-c146-4f87-93eb-11d2e373d255", + "id": "cdee46bc-469c-4ef8-bde9-9d3cf69b2f78", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[DELETE]::/api/catalog/pvt/supplier/:supplierId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -23951,7 +23951,7 @@ "event": [] }, { - "id": "9e366260-cbc5-4e2d-9d33-2a0d535e5133", + "id": "3d852876-3d20-4f31-9fb9-36e7c488df2d", "name": "Sales channel", "description": { "content": "", @@ -23959,7 +23959,7 @@ }, "item": [ { - "id": "6bea20a8-8220-4f29-a548-4ac3a580509a", + "id": "5af24f00-f082-4239-80cd-992b00d0e039", "name": "Get sales channel list", "request": { "name": "Get sales channel list", @@ -24013,7 +24013,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "8ab89831-c006-452a-85ae-03cc9dad60e8", + "id": "e3d7e4c6-f30a-47d6-8386-670912c6db87", "name": "OK", "originalRequest": { "url": { @@ -24081,7 +24081,7 @@ { "listen": "test", "script": { - "id": "68a68166-a6fd-4afd-985a-9dd453d7735a", + "id": "bba94bc9-f7e1-4dd0-ba6a-3f53bf95f23e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/saleschannel/list - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -24097,7 +24097,7 @@ } }, { - "id": "c00fb3b7-552f-472f-8078-da4cefe70692", + "id": "fdbc5019-6d2f-40f6-81e6-7e9fa2f57c5c", "name": "Get sales channel by ID", "request": { "name": "Get sales channel by ID", @@ -24162,7 +24162,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "71f74006-5aff-4fba-9f79-d2114bf76c50", + "id": "7a7806cb-e8f7-4c0f-99aa-748f6cc1b572", "name": "OK", "originalRequest": { "url": { @@ -24230,7 +24230,7 @@ { "listen": "test", "script": { - "id": "760a8635-6664-40cd-b244-d287c5868e0d", + "id": "9d91c299-1825-4083-b9ff-495445017de7", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pub/saleschannel/:salesChannelId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -24249,7 +24249,7 @@ "event": [] }, { - "id": "2610e33a-c2f7-4fc1-a246-e9a9ec618c96", + "id": "e946a508-63fa-4c7f-aa27-fcd32a0a1306", "name": "Seller", "description": { "content": "", @@ -24257,7 +24257,7 @@ }, "item": [ { - "id": "a9694e60-b6ff-4210-a3bc-d74af1175f91", + "id": "6891eb93-92e9-44e1-b8d8-dad3408a8d70", "name": "Get seller list", "request": { "name": "Get seller list", @@ -24339,7 +24339,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "a722a8e9-409f-4898-a15e-dfff90e45c29", + "id": "507d590a-de2a-4d80-be98-7f0b7c883f65", "name": "OK", "originalRequest": { "url": { @@ -24435,7 +24435,7 @@ { "listen": "test", "script": { - "id": "1b76a49e-c7a6-49e0-817e-47f2dfb99b45", + "id": "bae4784c-f553-4629-ae6e-c7d5e4cc0b29", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/seller/list - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -24451,7 +24451,7 @@ } }, { - "id": "ff2d9d78-8dc4-43b2-a9ca-15acb02c0925", + "id": "aaea0baf-dfd7-447e-8461-b50f6cb61b22", "name": "Get seller by ID", "request": { "name": "Get seller by ID", @@ -24516,7 +24516,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "7869863c-089e-4361-bec0-beade62f7b29", + "id": "033c6818-ec2e-4a3d-b541-261832b630c2", "name": "OK", "originalRequest": { "url": { @@ -24584,7 +24584,7 @@ { "listen": "test", "script": { - "id": "e637ec84-8056-4860-9d96-13e40badd8df", + "id": "e5311532-1131-4b7f-b267-87b0971c4a68", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/seller/:sellerId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -24600,7 +24600,7 @@ } }, { - "id": "f206a9b7-a3b6-4286-b236-25760c33ff5f", + "id": "3dbde316-29aa-447b-a3cf-79e0dcf41688", "name": "Update seller", "request": { "name": "Update seller", @@ -24666,7 +24666,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f0a4ddf2-dbd5-4365-a1e9-741c6fa7f19e", + "id": "6692fb7c-c33f-4334-a546-1b1365561ed4", "name": "OK", "originalRequest": { "url": { @@ -24746,7 +24746,7 @@ { "listen": "test", "script": { - "id": "6a70ef7d-9e9a-4a5d-a8ac-d6cb0da4ee05", + "id": "38a88516-c98e-40b5-8442-dab90581e6df", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog_system/pvt/seller - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -24762,7 +24762,7 @@ } }, { - "id": "7fcdcf97-a37f-42c2-ba83-057749b4359b", + "id": "8eacd03a-2763-4785-98c5-5c636b7f8c8f", "name": "Create seller", "request": { "name": "Create seller", @@ -24828,7 +24828,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e74a70d3-1eda-470f-aaca-9b855c497aff", + "id": "57b095fb-040f-4652-982d-cd9b482fa720", "name": "OK", "originalRequest": { "url": { @@ -24908,7 +24908,7 @@ { "listen": "test", "script": { - "id": "c2a35088-3a38-41af-851f-577ed9576fa2", + "id": "9e11e9fd-2506-4396-b89c-d926dee45ea6", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/seller - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -24924,7 +24924,7 @@ } }, { - "id": "61a26018-aa6a-4510-9e6b-79012165889e", + "id": "603ff659-6a0c-408b-b071-04be20b69f1b", "name": "Get seller by ID", "request": { "name": "Get seller by ID", @@ -24989,7 +24989,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "32a2a231-32e6-43b5-a9a3-bf47c9513f7e", + "id": "d22f632a-4f22-4280-969a-623ae87c3263", "name": "OK", "originalRequest": { "url": { @@ -25057,7 +25057,7 @@ { "listen": "test", "script": { - "id": "45640602-61a7-4bc9-a876-7bd26c6b225b", + "id": "6de67682-bdfe-45fd-a9a4-7d3a9ad0416a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/sellers/:sellerId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -25076,7 +25076,7 @@ "event": [] }, { - "id": "0e0d948e-80d1-4868-8ce8-a1afb11c9c57", + "id": "ef2eb31d-d1f0-425c-b06e-fafd3e96f75b", "name": "SKU seller", "description": { "content": "", @@ -25084,7 +25084,7 @@ }, "item": [ { - "id": "41ba37d7-a77d-463b-9a80-6316d955ed7c", + "id": "b051bd78-5fb5-480f-813b-b92db69092b7", "name": "Get details of a seller's SKU", "request": { "name": "Get details of a seller's SKU", @@ -25160,7 +25160,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "ff1b7f2d-ebaf-422b-8019-a5865e0d5b20", + "id": "14d52e13-9f3d-4405-a1a8-b8691c10d0f5", "name": "OK", "originalRequest": { "url": { @@ -25229,7 +25229,7 @@ { "listen": "test", "script": { - "id": "4892beba-e08a-405a-a713-9e6de6bba14a", + "id": "f222537e-c036-4ff4-9cd3-a0f84e01780a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/skuseller/:sellerId/:sellerSkuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -25245,7 +25245,7 @@ } }, { - "id": "2e51ea46-9878-4f11-a7be-34b39194ac14", + "id": "6397ad41-defe-4da4-96fa-7aff6330bfc3", "name": "Remove a seller's SKU binding", "request": { "name": "Remove a seller's SKU binding", @@ -25318,7 +25318,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "6f50ba3e-9a9c-40d8-b762-38c10a8db723", + "id": "de8acf39-45fa-410b-9229-78b978aaec95", "name": "OK", "originalRequest": { "url": { @@ -25378,7 +25378,7 @@ { "listen": "test", "script": { - "id": "b1a4bb5c-5a1f-4682-ae10-55bfefcde277", + "id": "5a8b5ada-af37-4409-8011-f7f49807cd2a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/skuseller/remove/:sellerId/:sellerSkuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -25391,7 +25391,7 @@ } }, { - "id": "f9c828ff-72e7-4991-a0c2-54e24cfdf685", + "id": "9412334e-accd-463e-8a45-6fefcef0fd87", "name": "Change notification with seller ID and seller SKU ID", "request": { "name": "Change notification with seller ID and seller SKU ID", @@ -25464,7 +25464,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "4df06944-9a2f-4465-9e50-2c45a490006d", + "id": "44b7cf1c-f5dc-46c7-9ee3-f80e4c722f50", "name": "No Content", "originalRequest": { "url": { @@ -25524,7 +25524,7 @@ { "listen": "test", "script": { - "id": "39172541-2a92-4e08-a5a4-81904bf8cbb3", + "id": "39b46344-f0aa-4c19-858d-2a4339d49dfc", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/skuseller/changenotification/:sellerId/:sellerSkuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -25538,7 +25538,7 @@ } }, { - "id": "68de7a63-a93d-48a2-a917-b9015d9c8b44", + "id": "5728977d-d46a-42f3-b325-5ffe5f80e43e", "name": "Change notification with SKU ID", "request": { "name": "Change notification with SKU ID", @@ -25604,7 +25604,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "0dacb219-405d-4122-a4a5-7398f161ac2b", + "id": "c8fd69c8-8868-4529-9cac-56e6b5c00f2f", "name": "OK", "originalRequest": { "url": { @@ -25662,7 +25662,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "11437e81-80d0-4280-b057-ece22b33e1f4", + "id": "e955ec8f-4608-4d95-8075-4ebf54840ec4", "name": "Forbidden", "originalRequest": { "url": { @@ -25720,7 +25720,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "446d5773-6a7f-4700-8b47-5d09be397ebb", + "id": "4f9679ad-e7bf-416d-a7d1-03f79f550156", "name": "Not found", "originalRequest": { "url": { @@ -25788,7 +25788,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "c8401f1c-77af-48a3-a7b5-a10e8ce01459", + "id": "54b1bafb-395f-4f64-abdf-24fb732824ab", "name": "Too many requests", "originalRequest": { "url": { @@ -25847,7 +25847,7 @@ { "listen": "test", "script": { - "id": "503169ff-4208-4790-9d9a-96d9fca1dd8c", + "id": "5d0f8b6c-2154-4fbf-b560-3d857aadf723", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[POST]::/api/catalog_system/pvt/skuseller/changenotification/:skuId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -25863,7 +25863,7 @@ "event": [] }, { - "id": "42e7af52-7b09-4efe-a609-60fcedbda766", + "id": "3899385f-0383-4193-963a-f139659e19e7", "name": "Multi-language beta", "description": { "content": "", @@ -25871,7 +25871,7 @@ }, "item": [ { - "id": "18534b7d-74b4-4fd7-b9ee-d44612b95b53", + "id": "5c68454b-e4ce-4a61-a652-5d0fbe45657d", "name": "Get product translation by product ID", "request": { "name": "Get product translation by product ID", @@ -25947,7 +25947,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "ea3f6677-1b10-450e-9474-011df6d70b6f", + "id": "29be9e3c-67bf-44ab-88af-a0568004b4d2", "name": "OK", "originalRequest": { "url": { @@ -26025,7 +26025,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "8b9bb753-fc76-4646-ac8e-73bb3c3a35b5", + "id": "34c33cc0-78e2-4a6d-94e3-848cf2a0e2e3", "name": "Not Found", "originalRequest": { "url": { @@ -26094,7 +26094,7 @@ { "listen": "test", "script": { - "id": "6e7b8504-14a4-4ab3-b1b5-c1f49e067251", + "id": "dd341d9e-5f85-47af-a967-62d245f8c2f9", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/product/:productId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -26110,7 +26110,7 @@ } }, { - "id": "1668fa34-8bd9-42b2-a3d9-cd9e50eed5d5", + "id": "e681abd2-b71d-4430-9552-4c9d39aafd07", "name": "Create or update product translation by product ID", "request": { "name": "Create or update product translation by product ID", @@ -26185,7 +26185,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "d6c50468-e2ab-408f-8adb-98e9857d873f", + "id": "13e8c1f8-7bf5-486e-a8b3-ed99b61f9837", "name": "Created", "originalRequest": { "url": { @@ -26256,7 +26256,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "cd07e353-6b62-42c3-9103-e4b578623682", + "id": "426f8bfc-ed9c-4f69-a2a3-3e37b065bafb", "name": "Bad Request", "originalRequest": { "url": { @@ -26327,7 +26327,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "338f56e4-b4d0-417f-917b-84a58cd3bb43", + "id": "45f2886f-378b-46c4-a91b-2ee73a6e7312", "name": "Not Found", "originalRequest": { "url": { @@ -26398,7 +26398,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "6b30494a-1441-41f0-90ba-3460915fe958", + "id": "9d092daa-3fb7-4e43-b2d5-0bd37d3c5963", "name": "Conflict", "originalRequest": { "url": { @@ -26470,7 +26470,7 @@ { "listen": "test", "script": { - "id": "b5601ffa-8936-483d-a728-53106ce0f1c9", + "id": "8b86b764-97b6-4a98-9733-ac00cd9164a2", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/product/:productId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -26483,7 +26483,7 @@ } }, { - "id": "8b74dace-dba7-4988-92ac-484ce0d9eaa4", + "id": "02307fc2-109b-4cd6-a4dc-f2ead657aeb7", "name": "Get product specification translation by product ID", "request": { "name": "Get product specification translation by product ID", @@ -26571,7 +26571,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "2b98e766-c863-4609-9b15-ce2896720b1f", + "id": "37fcbf21-f5d0-4cd3-8676-1687bd34dc7d", "name": "OK", "originalRequest": { "url": { @@ -26651,7 +26651,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "4cbe561d-5549-4d09-a054-f8ec34ee8754", + "id": "fcf644b2-4018-4e02-ae67-0cd427f1a537", "name": "Not Found", "originalRequest": { "url": { @@ -26722,7 +26722,7 @@ { "listen": "test", "script": { - "id": "cec108d6-c8a7-4f2d-8967-e72e2640214a", + "id": "24418331-f503-4fc6-bc1a-8c571653aa6b", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/products/:productId/specification/:specificationId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -26738,7 +26738,7 @@ } }, { - "id": "dd9357a2-beb5-4ee0-9503-e450220388cd", + "id": "7175ddee-66d7-41cb-9466-650b34ea99c0", "name": "Create or update product specification translation by product ID", "request": { "name": "Create or update product specification translation by product ID", @@ -26825,7 +26825,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "7ce9be8e-e0db-4117-945d-28e034b0b7e8", + "id": "249b5ece-d9b8-496c-ac3e-f3a48381302b", "name": "Created", "originalRequest": { "url": { @@ -26898,7 +26898,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "f29fdd11-2e66-4ff5-8789-28531e00a163", + "id": "56f9a445-75d1-49ee-a90a-93e622209f10", "name": "Bad Request", "originalRequest": { "url": { @@ -26971,7 +26971,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "33cfc1ad-c537-43fb-bb5c-19ec02ccea51", + "id": "944927fe-377d-4a64-9ce3-0cf8ff50bc7d", "name": "Not Found", "originalRequest": { "url": { @@ -27044,7 +27044,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "5f63a8e3-cde0-4fa4-9611-5f5ff7e415b6", + "id": "5dd4db00-08a0-406f-937f-028d64fb77b4", "name": "Conflict", "originalRequest": { "url": { @@ -27118,7 +27118,7 @@ { "listen": "test", "script": { - "id": "947cb1b4-6106-40db-ae90-ceae13ee0a65", + "id": "087c1ced-c2fc-457a-ba4c-57f63b98988c", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/products/:productId/specification/:specificationId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -27134,7 +27134,7 @@ "event": [] }, { - "id": "f87ab4cc-2952-4ebf-b3bc-91a8cc7a63b7", + "id": "014b6644-7164-463d-a918-c20be41c0387", "name": "Multi-language SKU beta", "description": { "content": "", @@ -27142,7 +27142,7 @@ }, "item": [ { - "id": "d7304ae4-2628-48f6-b724-508becca0d89", + "id": "ac465fd9-9f12-4a3e-ba53-7a08afe6c553", "name": "Get SKU translation by SKU ID", "request": { "name": "Get SKU translation by SKU ID", @@ -27218,7 +27218,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "aa69cdea-ba54-4fa8-9a50-5a2a1c82ee85", + "id": "1942db46-bf07-4e15-b875-0e2bac850dca", "name": "OK", "originalRequest": { "url": { @@ -27296,7 +27296,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "0be05f83-854a-411f-b63e-8a14bdd64733", + "id": "46510daa-7991-4070-b5fe-b8521bc89394", "name": "Not Found", "originalRequest": { "url": { @@ -27365,7 +27365,7 @@ { "listen": "test", "script": { - "id": "0ed3cd87-c02a-4a4c-8076-59843fba8474", + "id": "62749bde-3f01-459e-94e9-42bac34be6cc", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -27381,7 +27381,7 @@ } }, { - "id": "a6581139-8c70-4b94-8426-614893aacbce", + "id": "1bec6e26-80d8-418e-941c-f805a59bbd8e", "name": "Create or update SKU translation by SKU ID", "request": { "name": "Create or update SKU translation by SKU ID", @@ -27456,7 +27456,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "c0fdd965-7aa9-483a-8c2e-33834aa64fce", + "id": "acbcc90c-b214-49dc-9f5b-abb070d9d2db", "name": "Created", "originalRequest": { "url": { @@ -27527,7 +27527,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "820e4dae-3ca8-4adc-b7c1-be2b6f509141", + "id": "5389b4ea-64bc-4309-8327-4baebe735471", "name": "Bad Request", "originalRequest": { "url": { @@ -27598,7 +27598,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "96184046-5279-4578-8b4c-e39984a568a5", + "id": "e09b7ae6-95c9-492d-8ac2-8b04ffe6be4b", "name": "Not Found", "originalRequest": { "url": { @@ -27669,7 +27669,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "075abb14-2b6f-48be-be02-190ef22f97f3", + "id": "f3bf6a7e-06b8-47de-82d0-74d8898616d4", "name": "Conflict", "originalRequest": { "url": { @@ -27741,7 +27741,7 @@ { "listen": "test", "script": { - "id": "42e66d4e-8b33-4db1-8c06-3e5ad18d9977", + "id": "0afd3e1a-2ff5-4fd9-bf1a-abb5ac0a0b5e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -27754,7 +27754,7 @@ } }, { - "id": "e4d25098-c02b-4e0b-99ef-f0032d596bee", + "id": "17cf0c58-a6c6-40cc-bcc0-967f5f15fa6c", "name": "Get SKU attribute translation by SKU ID", "request": { "name": "Get SKU attribute translation by SKU ID", @@ -27842,7 +27842,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "afe68fef-55aa-4fee-8dca-4b3d9082ef1f", + "id": "cbbc55d5-27f3-457b-aa93-83d49dd23411", "name": "OK", "originalRequest": { "url": { @@ -27922,7 +27922,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "82a6b0d9-4dc8-45f2-98ee-d43c081b71f0", + "id": "3c68ef39-0af7-44d1-8189-45b8ee59985c", "name": "Not Found", "originalRequest": { "url": { @@ -27993,7 +27993,7 @@ { "listen": "test", "script": { - "id": "230c3663-2453-4fcf-b73c-b2e4804b24f5", + "id": "65c5adbc-fe24-4cef-b03a-905d463a4359", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/attribute/:skuAttributeId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -28009,7 +28009,7 @@ } }, { - "id": "623d4b1e-3f68-4c5f-86f0-48f812d0ea82", + "id": "2ea7b3be-6a37-4f20-92e5-bf015c83984a", "name": "Create or update SKU attribute translation by SKU ID", "request": { "name": "Create or update SKU attribute translation by SKU ID", @@ -28096,7 +28096,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "a23de6d4-9ba2-426e-83fc-c45417c6560a", + "id": "efab33c6-64d0-4c77-8add-cbb5dd8d1238", "name": "Created", "originalRequest": { "url": { @@ -28169,7 +28169,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "9b569fb2-2292-47e1-ab12-05de8b128f9f", + "id": "b4ea6bff-5dbb-470c-b39d-67b75ae77ff5", "name": "Bad Request", "originalRequest": { "url": { @@ -28242,7 +28242,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "69c2943f-563d-4c6f-ac06-343992706d19", + "id": "fd62ad21-9dc3-4e1f-b105-2ccfc4c57825", "name": "Not Found", "originalRequest": { "url": { @@ -28315,7 +28315,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "d49ce5a3-5bf9-42c4-9d63-17710a3c0933", + "id": "e8655278-6ae7-44b7-8c52-e6cc68f3812a", "name": "Conflict", "originalRequest": { "url": { @@ -28389,7 +28389,7 @@ { "listen": "test", "script": { - "id": "4502e1ab-fb2f-4149-b52e-8a7f5f42dbf9", + "id": "81ffc726-25a9-4a57-ba55-d80e84461647", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/attribute/:skuAttributeId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -28402,7 +28402,7 @@ } }, { - "id": "d06dde47-6830-477a-96c1-5def1770b5ad", + "id": "c106d228-7887-440e-9d89-7a506e478978", "name": "Get SKU file translation by SKU ID", "request": { "name": "Get SKU file translation by SKU ID", @@ -28490,7 +28490,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "708437e4-aeb4-4b07-b6d6-7a65d270d860", + "id": "39434a42-1d38-4768-9cb5-ff1bc0c5c021", "name": "OK", "originalRequest": { "url": { @@ -28570,7 +28570,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "33730d64-35cd-46eb-a5d3-cd98206a3500", + "id": "1882eb4e-aca8-42d0-8ed8-255428924083", "name": "Not Found", "originalRequest": { "url": { @@ -28641,7 +28641,7 @@ { "listen": "test", "script": { - "id": "a6b893b4-178c-4bac-9123-1d30abd803ae", + "id": "5627f44a-5ab8-4ded-bd14-43f5acf5b69c", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/stockkeepingunit/:skuId/file/:skuFileId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -28657,7 +28657,7 @@ } }, { - "id": "e66a42ce-d501-4684-a132-f1fb826134e1", + "id": "89d7b23b-6cb6-40cb-b2b8-5748d1e620b9", "name": "Create or update SKU file translation by SKU ID", "request": { "name": "Create or update SKU file translation by SKU ID", @@ -28744,7 +28744,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "de7d3f1e-a6d5-4a1c-970f-e016ac9fcb97", + "id": "b9cfbf6a-373d-4511-8628-ce7a128fb49e", "name": "Created", "originalRequest": { "url": { @@ -28817,7 +28817,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "444adf10-6bea-4337-b5e9-0daf70f750df", + "id": "e1758d2f-c90a-4087-a59d-780fa22a81f2", "name": "Bad Request", "originalRequest": { "url": { @@ -28890,7 +28890,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "c65cc33a-0007-4288-a058-cf981f65ebb7", + "id": "5dfb236c-727f-4d92-8049-529878fbd32c", "name": "Not Found", "originalRequest": { "url": { @@ -28963,7 +28963,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "413234de-0994-4f62-ba41-f2365107fe22", + "id": "dccf3b3d-ba5c-4708-a966-ecb8d1de1dd3", "name": "Conflict", "originalRequest": { "url": { @@ -29037,7 +29037,7 @@ { "listen": "test", "script": { - "id": "226d2d06-fb4f-4b23-87e9-76eab6d76132", + "id": "007575a5-18b3-4bf8-8f8e-4a7d8574e25d", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/stockkeepingunit/:skuId/file/:skuFileId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -29053,7 +29053,7 @@ "event": [] }, { - "id": "42059fa0-ab2b-4856-8885-9ed2eaf3c655", + "id": "096cad0d-c12b-4a40-8c0c-6186bbd5d7ca", "name": "Multi-language specification beta", "description": { "content": "", @@ -29061,7 +29061,7 @@ }, "item": [ { - "id": "ee53bcf8-7029-43a8-91b6-2d9a43141ba0", + "id": "e3116efd-8701-4b29-bcb9-50c2c5d2da45", "name": "Get specification group translation", "request": { "name": "Get specification group translation", @@ -29137,7 +29137,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "787e2d7a-d41b-423a-92bb-65efb26adcca", + "id": "dc4e8d99-4665-4ace-be5b-2cf504cf706c", "name": "OK", "originalRequest": { "url": { @@ -29215,7 +29215,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "9e7aa5d7-4b95-4eb6-8ab0-10800f6cbb8c", + "id": "c59aac98-895c-4160-9f73-94f5c123bfb3", "name": "Not Found", "originalRequest": { "url": { @@ -29284,7 +29284,7 @@ { "listen": "test", "script": { - "id": "95cac7a3-1d21-4ad6-9df9-86edd9b44942", + "id": "6c6326eb-8ba5-4625-b90e-d871066bf758", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specificationgroup/:specificationGroupId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -29300,7 +29300,7 @@ } }, { - "id": "1cb0869d-968b-4e37-a803-4362979d4fe0", + "id": "1ae92141-c3a0-4c3b-9ca6-80d6834e30c5", "name": "Create or update specification group translation", "request": { "name": "Create or update specification group translation", @@ -29375,7 +29375,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "fbb58e01-a7cd-40a6-843a-60ccadef9111", + "id": "4917fd1c-fc54-4283-b5a9-61db4e71206d", "name": "Created", "originalRequest": { "url": { @@ -29446,7 +29446,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "d10aa67a-a27b-4d41-ad2f-96dba99393b4", + "id": "c00d197e-a070-4ef9-b85a-94beef8e4a2f", "name": "Bad Request", "originalRequest": { "url": { @@ -29517,7 +29517,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "089b8092-60bb-40b3-be20-88c71ece9d57", + "id": "75fa6d4b-55cd-4037-bc04-c5b23e72b19b", "name": "Not Found", "originalRequest": { "url": { @@ -29588,7 +29588,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "1bf37ee6-eccd-4206-98c5-fed69be49769", + "id": "3e2d7f82-f864-4e3c-955e-9039f2b53f8c", "name": "Conflict", "originalRequest": { "url": { @@ -29660,7 +29660,7 @@ { "listen": "test", "script": { - "id": "1b3fc780-cf01-4bd0-bd48-590076fb35e2", + "id": "439ca62d-524f-49e4-a108-04fe767af6ec", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/specificationgroup/:specificationGroupId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -29673,7 +29673,7 @@ } }, { - "id": "49092183-4220-4e89-9bf0-c9079993e190", + "id": "2ea44a6d-72a7-452c-a574-603c5a3210c5", "name": "Get specification translation", "request": { "name": "Get specification translation", @@ -29749,7 +29749,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "d1fd6956-1d35-40d4-8c45-0bf9fa4d35c4", + "id": "b59dba2d-4e4c-4d49-9cc0-f54a399b69d9", "name": "OK", "originalRequest": { "url": { @@ -29827,7 +29827,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "7fb501f0-638d-4caf-b6df-755785a83a67", + "id": "04d7c4ea-5924-4129-b97c-032d355352e9", "name": "Not Found", "originalRequest": { "url": { @@ -29896,7 +29896,7 @@ { "listen": "test", "script": { - "id": "673e2e8b-914d-4d6b-977b-7fa4457a833e", + "id": "fba09ee8-cf59-42a0-9721-891f433202ce", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specification/:specificationId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -29912,7 +29912,7 @@ } }, { - "id": "2f0b0ae3-1f70-40ca-ab08-9781ac7f86e4", + "id": "f4e5d6aa-1332-4c1c-86ac-a2b76b568c54", "name": "Create or update specification translation", "request": { "name": "Create or update specification translation", @@ -29987,7 +29987,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "66bd2ce1-a9c5-4e00-9b9d-ed10edc6c451", + "id": "509a9d2d-44ff-46d2-a074-d89f8293a141", "name": "Created", "originalRequest": { "url": { @@ -30058,7 +30058,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "1c68c6c8-7ec2-4f13-b9a9-0024c45510d0", + "id": "db0c54ba-63c4-4c0a-a6ca-330dd32c41ba", "name": "Bad Request", "originalRequest": { "url": { @@ -30129,7 +30129,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "8078f4a9-d8ac-4bc5-b40b-15713476604f", + "id": "1591590b-d035-407b-825a-43107eff36bb", "name": "Not Found", "originalRequest": { "url": { @@ -30200,7 +30200,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "fc2040cb-b293-4d52-904d-ac1be4b1abd3", + "id": "52c8f5df-80f2-440a-a683-4268845e3e91", "name": "Conflict", "originalRequest": { "url": { @@ -30272,7 +30272,7 @@ { "listen": "test", "script": { - "id": "e1b82be0-8174-4fdb-9733-94966c48d8c1", + "id": "7a2fa2a2-20d8-4308-b672-b3a4a59c56f4", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/specification/:specificationId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -30285,7 +30285,7 @@ } }, { - "id": "72cc2db8-7ccb-4168-8591-5a922f46a6d2", + "id": "544a52b7-3f27-4316-9046-6fd6ca00b206", "name": "Get specification value translation", "request": { "name": "Get specification value translation", @@ -30361,7 +30361,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "194410e0-e0da-46ef-be22-abfcc32ae5ff", + "id": "f25519dc-1e0d-4aee-9985-02b3127e73d2", "name": "OK", "originalRequest": { "url": { @@ -30439,7 +30439,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "ec96e3c6-9398-4474-8953-b0a74e48bf69", + "id": "54592980-11ad-4339-8750-15fd32c9549c", "name": "Not Found", "originalRequest": { "url": { @@ -30508,7 +30508,7 @@ { "listen": "test", "script": { - "id": "7d1c3b5d-1579-4f72-a874-b44fc9c30da8", + "id": "f07c78e7-b1f4-4480-8e56-bdffef3fb0ae", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/specificationvalue/:valueId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -30524,7 +30524,7 @@ } }, { - "id": "5e18a5df-c9e1-4cd2-b876-884d3d7e8c2e", + "id": "37966343-1648-4862-a6d6-3fc0112db7d4", "name": "Create or update specification value translation", "request": { "name": "Create or update specification value translation", @@ -30599,7 +30599,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "e416fcae-43bc-4a8c-a752-1150962e7d76", + "id": "2a82644f-4a92-4cfc-986c-8db77cec88a9", "name": "Created", "originalRequest": { "url": { @@ -30670,7 +30670,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "79d70046-9f41-43aa-a890-32048ab13fb1", + "id": "f08820ff-c193-48c9-9eb6-3e8157b64bb0", "name": "Bad Request", "originalRequest": { "url": { @@ -30741,7 +30741,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "a3a17308-eb1e-44e4-af12-e55faaa4bfae", + "id": "b12b9b48-008b-4c7b-ba1d-85bf9607afbc", "name": "Not Found", "originalRequest": { "url": { @@ -30812,7 +30812,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "b2bb7d5d-0755-42c5-b3f4-45ba86613656", + "id": "f502395b-469f-4e89-8be7-227c248449ff", "name": "Conflict", "originalRequest": { "url": { @@ -30884,7 +30884,7 @@ { "listen": "test", "script": { - "id": "421896f1-5553-4b10-911c-54a874d28fae", + "id": "b7a28b39-4a36-44f4-ba83-80aa9f200a9e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/specificationvalue/:valueId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -30900,7 +30900,7 @@ "event": [] }, { - "id": "d5290d84-3843-43de-acae-a5cc2af08959", + "id": "451c2a98-6b01-4070-a49f-bd5a0038d55f", "name": "Multi-language category beta", "description": { "content": "", @@ -30908,7 +30908,7 @@ }, "item": [ { - "id": "5ad2d1b7-6b0f-4ca8-af4e-314f06073393", + "id": "7b2b9fc6-1c6d-43f0-a633-4673ae31d9a8", "name": "Get category translation", "request": { "name": "Get category translation", @@ -30984,7 +30984,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "9bd21c3f-300d-4424-b503-e476fd9810a9", + "id": "1425eb87-f9c3-4267-bc0f-31ef9bac71f5", "name": "OK", "originalRequest": { "url": { @@ -31062,7 +31062,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "46ade145-3ce1-4bae-99a0-61b7c876f00c", + "id": "29f0ec37-77c5-41a1-b622-955a51d5d46b", "name": "Not Found", "originalRequest": { "url": { @@ -31131,7 +31131,7 @@ { "listen": "test", "script": { - "id": "7ef61e36-5147-4173-a509-987963d11376", + "id": "207897f6-a8d7-4b64-9673-a0d8c4823232", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/category/:categoryId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -31147,7 +31147,7 @@ } }, { - "id": "a6678122-866f-4be0-960f-d7477c446cbf", + "id": "89185135-a806-413b-bfed-e9ae923489f9", "name": "Create or update category translation", "request": { "name": "Create or update category translation", @@ -31222,7 +31222,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "a5e5f7e0-0a25-4e7a-8659-be9d2f1d3464", + "id": "cffa7230-961b-46b9-ac2e-3d41ffd90ef6", "name": "Created", "originalRequest": { "url": { @@ -31293,7 +31293,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "86b2dde5-61e7-4c98-a08c-8be9fca1a29b", + "id": "2122665e-8dd2-49f5-9e07-6a37863b6030", "name": "Bad Request", "originalRequest": { "url": { @@ -31364,7 +31364,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "e27b1ea7-b17a-4161-ae65-55d913789eaa", + "id": "6d507e84-e8a9-45c9-9ba1-579a439b180e", "name": "Not Found", "originalRequest": { "url": { @@ -31435,7 +31435,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "59068940-5f47-4ba1-be5f-9730a4e6408b", + "id": "a0359460-a635-41e6-9bd2-cc66e11f34f4", "name": "Conflict", "originalRequest": { "url": { @@ -31507,7 +31507,7 @@ { "listen": "test", "script": { - "id": "398c4f76-2c62-4a71-a8c3-19697b932e2d", + "id": "7b97350c-6cb4-4e65-af74-dcb0914fd249", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/category/:categoryId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -31523,7 +31523,7 @@ "event": [] }, { - "id": "1eba1006-b1f6-4104-8b6a-3e59f289c1ec", + "id": "4b01073f-c02d-4357-bdbe-6843320bbcad", "name": "Multi-language brand beta", "description": { "content": "", @@ -31531,7 +31531,7 @@ }, "item": [ { - "id": "6372b704-6c3a-45c6-8144-1f96ec792c62", + "id": "9a4b2e9a-5c96-4ecc-b42b-b1b81bc03b41", "name": "Get brand translation", "request": { "name": "Get brand translation", @@ -31607,7 +31607,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3db82dce-9afe-4b69-aa92-e964b310d8ed", + "id": "ca8463ab-4c82-448d-b87a-ee63f5630b4d", "name": "OK", "originalRequest": { "url": { @@ -31685,7 +31685,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "dc04de14-5289-4d98-baaa-43c17ad7418c", + "id": "00745e8a-68e9-4f4f-965b-58fdb1045d60", "name": "Not Found", "originalRequest": { "url": { @@ -31754,7 +31754,7 @@ { "listen": "test", "script": { - "id": "3f119f2a-963c-4b57-8105-c1f56ed38c0f", + "id": "39564685-6556-4ccd-b6a5-3c60e9b91bd9", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/brand/:brandId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -31770,7 +31770,7 @@ } }, { - "id": "54155631-48b6-43b2-b51d-0aa8966254bc", + "id": "717ef3de-bcee-40d4-bd00-cefe70d05334", "name": "Create or update brand translation", "request": { "name": "Create or update brand translation", @@ -31845,7 +31845,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "dd7ea2f7-3f3a-456c-bd36-c7fc5f3e8cf0", + "id": "30f52988-9f11-4f30-9f99-dbf06c46db57", "name": "Created", "originalRequest": { "url": { @@ -31916,7 +31916,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "78d0d6b2-7e14-4840-9577-ee7f903b982a", + "id": "106f4c72-09c3-436f-9db6-03953a87c99f", "name": "Bad Request", "originalRequest": { "url": { @@ -31987,7 +31987,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "d3259a1d-8be9-4920-83b8-f4d102271f16", + "id": "53809ac9-791b-4763-9bc0-ec48a9504d51", "name": "Not Found", "originalRequest": { "url": { @@ -32058,7 +32058,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "29dfb07b-769b-4070-a250-a83bf3eacf55", + "id": "260f5303-bd27-4453-ad5e-c1cfa12cb2f9", "name": "Conflict", "originalRequest": { "url": { @@ -32130,7 +32130,7 @@ { "listen": "test", "script": { - "id": "2812f5b3-bf08-43fe-a20e-b45a819fcb27", + "id": "881f0007-f0db-4861-9569-07708a6d9694", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/brand/:brandId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -32146,7 +32146,7 @@ "event": [] }, { - "id": "3e5e3701-c778-40dd-9b39-94688b4c19aa", + "id": "0a8385a6-b7b5-475c-a9c8-90d00fdffc03", "name": "Multi-language attachment and service beta", "description": { "content": "", @@ -32154,7 +32154,7 @@ }, "item": [ { - "id": "248a7684-16e7-46c1-a1fb-9e4613f0db14", + "id": "320670df-b9f6-4ded-b93b-94fa7fad9d3f", "name": "Get attachment translation", "request": { "name": "Get attachment translation", @@ -32230,7 +32230,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "fc9f4b47-fc3d-4640-b9e5-36726bde8949", + "id": "843ccbd5-6053-45f3-b627-290e506ceb45", "name": "OK", "originalRequest": { "url": { @@ -32308,7 +32308,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "584ccf8c-61d1-4ed9-aedc-dcb0ec9240c4", + "id": "51dd9bc1-309f-4980-b84f-a0bb2ee9224b", "name": "Not Found", "originalRequest": { "url": { @@ -32377,7 +32377,7 @@ { "listen": "test", "script": { - "id": "4d58dd78-44d9-41ac-ba2d-64e0e467179c", + "id": "7f118b3a-f8aa-4bbe-8c21-556071618154", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/attachment/:attachmentId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -32393,7 +32393,7 @@ } }, { - "id": "967079ae-f973-4d5e-8797-b0357195f97a", + "id": "7b6d6a32-264e-49fb-843a-e13476d63c1d", "name": "Create or update attachment translation", "request": { "name": "Create or update attachment translation", @@ -32468,7 +32468,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "09a5a784-aa78-45f2-9fed-df1a854ce51c", + "id": "6ae673f0-5a36-495c-876c-297d7d1e1d11", "name": "Created", "originalRequest": { "url": { @@ -32539,7 +32539,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "bf1f04fd-ae72-49c0-9ae9-88805b56db21", + "id": "52d10926-e8c9-493b-b63e-083eaad664a7", "name": "Bad Request", "originalRequest": { "url": { @@ -32610,7 +32610,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "4faf4288-725c-4e6f-b136-7161cf18d3dc", + "id": "7356666d-3f1d-4c7a-9ef1-0d17deb2c373", "name": "Not Found", "originalRequest": { "url": { @@ -32681,7 +32681,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "220fa277-0281-4ea3-b45e-4741b459d0da", + "id": "c2a2d560-c4c2-458d-ba1a-fd0a54a2a641", "name": "Conflict", "originalRequest": { "url": { @@ -32753,7 +32753,7 @@ { "listen": "test", "script": { - "id": "8f53e088-5826-49e4-a02e-6470c541f9de", + "id": "29b3a5d5-74a1-42e7-8746-0a1770c41907", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/attachment/:attachmentId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -32766,7 +32766,7 @@ } }, { - "id": "5e9fe59d-4b53-4f1f-8de9-950ad1dada27", + "id": "de936cd3-6734-4951-8a33-41a8d61ae2b1", "name": "Get SKU service type translation", "request": { "name": "Get SKU service type translation", @@ -32842,7 +32842,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "37f2da7d-826a-4f3a-af78-0a9145967862", + "id": "6b12d1d3-cefe-4df3-b04b-7d1537e1fd97", "name": "OK", "originalRequest": { "url": { @@ -32920,7 +32920,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "a47be600-2339-4c02-b3f9-3afa99b20320", + "id": "a8f66123-30db-4f93-b446-4b3318755bf4", "name": "Not Found", "originalRequest": { "url": { @@ -32989,7 +32989,7 @@ { "listen": "test", "script": { - "id": "7ccd0d56-c8ef-4278-9740-d5afe19d087c", + "id": "d39b6dce-e901-4bb3-afce-c3905cac61ba", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skuservicetype/:skuServiceTypeId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -33005,7 +33005,7 @@ } }, { - "id": "80b94c1a-0068-423b-a9a6-d37c1dd1145f", + "id": "8cd2460d-4add-4067-9a1a-e8a5250e17d4", "name": "Create or update SKU service type translation", "request": { "name": "Create or update SKU service type translation", @@ -33080,7 +33080,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "8f9a5a19-3483-4695-add5-18dbb8007742", + "id": "dbaca803-f7eb-43a5-844a-d83c546fd539", "name": "Created", "originalRequest": { "url": { @@ -33151,7 +33151,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "f21fc0f8-9c0b-4a19-8cb4-6eb584b44825", + "id": "b8cc00c9-0d5a-4b30-921a-0ba0114f18bf", "name": "Bad Request", "originalRequest": { "url": { @@ -33222,7 +33222,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "8d3411f0-8e5a-4bfa-a054-4375a3fbcf9c", + "id": "bbe5b74b-125b-480e-8a1c-8845dfe7110c", "name": "Not Found", "originalRequest": { "url": { @@ -33293,7 +33293,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "5908ba67-0c27-4ef3-973f-86a618d5f02c", + "id": "eb705f64-372e-4b54-841b-4fe0fb4346c3", "name": "Conflict", "originalRequest": { "url": { @@ -33365,7 +33365,7 @@ { "listen": "test", "script": { - "id": "5c75e775-81fd-4329-82e6-c04a0813dd64", + "id": "5d89c7c0-2f43-4e75-bea8-f1e358f235d4", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/skuservicetype/:skuServiceTypeId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -33378,7 +33378,7 @@ } }, { - "id": "98f3f76e-8a2c-4853-bd88-8a7455e8b868", + "id": "49218fd2-1af8-4d20-a8b5-3f18fb0de546", "name": "Get SKU service translation", "request": { "name": "Get SKU service translation", @@ -33454,7 +33454,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "f242b91c-fa52-4d77-a9c8-dd57fbd4d37f", + "id": "87e8d3e8-361f-4385-b0d6-2c308f554004", "name": "OK", "originalRequest": { "url": { @@ -33532,7 +33532,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "575100cc-5f35-4042-be65-c863871f707f", + "id": "7c1f0bc8-33fc-4005-b9c1-1aaa453b2f65", "name": "Not Found", "originalRequest": { "url": { @@ -33601,7 +33601,7 @@ { "listen": "test", "script": { - "id": "7795fa7a-55a0-4817-b040-e39c16dc2463", + "id": "856363a1-5f57-4008-888e-3babea687b74", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skuservice/:skuserviceId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -33617,7 +33617,7 @@ } }, { - "id": "41c98d8c-c4b4-4be9-9dc9-8d395c636630", + "id": "0176141f-e8bf-4cba-9586-5621df9add3b", "name": "Create or update SKU service translation", "request": { "name": "Create or update SKU service translation", @@ -33692,7 +33692,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "18f3feed-da19-4e36-b192-cc4aaa1f557c", + "id": "af407ae6-e67c-4b82-8d3e-aa4ffe58f7d4", "name": "Created", "originalRequest": { "url": { @@ -33763,7 +33763,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "476cc80c-bf93-470c-82f6-d60d1170f90e", + "id": "48a228bb-b3bb-4a20-8ac6-a2f80bd94ee9", "name": "Bad Request", "originalRequest": { "url": { @@ -33834,7 +33834,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "2ef151ee-0fd5-4cab-aca7-32a0c9930736", + "id": "407978a6-8c8c-4465-958b-34eadb56a1c8", "name": "Not Found", "originalRequest": { "url": { @@ -33905,7 +33905,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "48ae0a12-f974-4ff9-9b69-b77ef2a71afc", + "id": "840768cc-93f9-4129-80cf-81ebe65a8355", "name": "Conflict", "originalRequest": { "url": { @@ -33977,7 +33977,7 @@ { "listen": "test", "script": { - "id": "79ca9519-0058-4289-8e91-d00396c57278", + "id": "61539653-54e8-4c7e-b949-d2e825d99c38", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/skuservice/:skuserviceId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -33990,7 +33990,7 @@ } }, { - "id": "bdef1df6-1c91-4410-bc16-eb017391c488", + "id": "136eb418-0e12-41e1-a386-fa1055e48043", "name": "Get SKU service value translation", "request": { "name": "Get SKU service value translation", @@ -34066,7 +34066,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "8775f2c0-db13-4db7-9ba2-1d6ada2ba801", + "id": "f7f0d2ca-7bd5-4d37-9cb8-83dc2c585d3c", "name": "OK", "originalRequest": { "url": { @@ -34144,7 +34144,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "ff62afe2-aa4a-4183-a6ab-6a5a6db81167", + "id": "34818f5c-2a76-453b-8314-f7a48f03ac11", "name": "Not Found", "originalRequest": { "url": { @@ -34213,7 +34213,7 @@ { "listen": "test", "script": { - "id": "a905bef3-478b-41a3-92e1-9ecbe846b9e0", + "id": "929dc271-d416-42fa-bcbd-bb73cc33b0c8", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/skuservicevalue/:skuServiceValueId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -34229,7 +34229,7 @@ } }, { - "id": "a2cb0ca7-6d96-47c6-a30a-0effcf7ad059", + "id": "4c9eb5c3-3554-42f5-ae34-b741d8b2a238", "name": "Create or update SKU service value translation", "request": { "name": "Create or update SKU service value translation", @@ -34304,7 +34304,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "870a3a51-bd36-46a7-8e0d-740e6dff9754", + "id": "88afe350-5364-4989-a75d-79ff86885d8b", "name": "Created", "originalRequest": { "url": { @@ -34375,7 +34375,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "5434afa4-4f2e-4d9e-a1a7-dfdbc9a542da", + "id": "4589a49a-ff01-486a-8b7d-52a57a398533", "name": "Bad Request", "originalRequest": { "url": { @@ -34446,7 +34446,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "1ba17f94-3f94-4009-adc1-f0c05c65f0e0", + "id": "3bcae17f-ab1e-4bd0-948b-bf72b8207a90", "name": "Not Found", "originalRequest": { "url": { @@ -34517,7 +34517,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "5154201e-48ce-4875-baf1-7ee02e3c6847", + "id": "e9898776-1b9f-4d0c-9783-36aad9635be2", "name": "Conflict", "originalRequest": { "url": { @@ -34589,7 +34589,7 @@ { "listen": "test", "script": { - "id": "d308b035-8e1e-4285-b532-3cd2675629a1", + "id": "fdc7029e-8652-4f00-b087-b85bf04a447a", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/skuservicevalue/:skuServiceValueId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -34605,7 +34605,7 @@ "event": [] }, { - "id": "eabd92a4-d402-42aa-8b48-a5697422caac", + "id": "4f23268e-b599-4fcc-af00-bc859809ecc1", "name": "Multi-language collection beta", "description": { "content": "", @@ -34613,7 +34613,7 @@ }, "item": [ { - "id": "cfefbb54-e286-4aac-89cf-2c82bc3ec8bc", + "id": "c256aeac-4aec-418c-ab3c-eafc89deaaff", "name": "Get collection translation", "request": { "name": "Get collection translation", @@ -34689,7 +34689,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "3da39c8a-285a-42e3-aed0-185e6602adf7", + "id": "14f3ba25-8c6a-40d4-9f17-9134e7375dc3", "name": "OK", "originalRequest": { "url": { @@ -34767,7 +34767,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "e66fe35a-b119-46ac-a71c-b4f97358ead2", + "id": "0ddc239d-b44e-4c01-ba1d-2bccaf24f33e", "name": "Not Found", "originalRequest": { "url": { @@ -34836,7 +34836,7 @@ { "listen": "test", "script": { - "id": "699daf68-a6fb-427d-bc74-634aa6499fb3", + "id": "845b3433-c7d5-4882-812e-47cfed35f960", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog/pvt/collection/:collectionId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -34852,7 +34852,7 @@ } }, { - "id": "18a19552-8c58-4258-9dac-c303703f1abe", + "id": "7e9433a0-3eb8-480f-a2f3-0511a2cbf0b4", "name": "Create or update collection translation", "request": { "name": "Create or update collection translation", @@ -34927,7 +34927,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "7c32b67d-562a-485b-8916-e09383a7d5e7", + "id": "46c63467-844d-45ed-9503-dfddb063b532", "name": "Created", "originalRequest": { "url": { @@ -34998,7 +34998,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "fd2e7a35-4d50-4549-9596-7abf32aa684c", + "id": "db101819-590a-4add-8701-45175c458c67", "name": "Bad Request", "originalRequest": { "url": { @@ -35069,7 +35069,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "9bafe48e-5572-441c-910a-33a31c841c85", + "id": "14674869-10a1-416c-a27d-9fedcdff0799", "name": "Not Found", "originalRequest": { "url": { @@ -35140,7 +35140,7 @@ "_": { "postman_previewlanguage": "text" }, - "id": "430aab9b-2a7c-48a4-a7a9-c91938085d6a", + "id": "fbc1728e-4b15-4df0-971b-d61f2f4c743b", "name": "Conflict", "originalRequest": { "url": { @@ -35212,7 +35212,7 @@ { "listen": "test", "script": { - "id": "361ee983-5157-4285-9e36-67d0cc1d4f9f", + "id": "a40bfb91-1463-4b08-b265-22f5ff5019ba", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[PUT]::/api/catalog/pvt/collection/:collectionId/language - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n" @@ -35228,7 +35228,7 @@ "event": [] }, { - "id": "857e5568-a5cd-4e36-9181-14561e1c846b", + "id": "b1db9033-c15b-4837-b4f2-bbfad5a19204", "name": "Product indexing", "description": { "content": "", @@ -35236,7 +35236,7 @@ }, "item": [ { - "id": "ad1759d3-7f3a-43cc-8742-7d094b3e32cf", + "id": "7cbb255e-98a3-4bcf-8656-17a3913387e9", "name": "Get product indexed information", "request": { "name": "Get product indexed information", @@ -35302,7 +35302,7 @@ "_": { "postman_previewlanguage": "xml" }, - "id": "97a3a5ab-634e-49b0-ab6e-aa0a67bf6f15", + "id": "a1321af0-486f-47d8-b7b5-b0e32b8f113c", "name": "OK", "originalRequest": { "url": { @@ -35371,7 +35371,7 @@ { "listen": "test", "script": { - "id": "90a04a9f-cc28-4465-92c9-8d10263af733", + "id": "7664de0e-1d17-418d-9302-a20cdb7685eb", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/products/GetIndexedInfo/:productId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -35388,7 +35388,7 @@ "event": [] }, { - "id": "fdcb3adf-22b8-4edf-8faa-0daf0b3ea0e2", + "id": "4f319505-d094-47d4-9adf-5a782aabcd73", "name": "Commercial conditions", "description": { "content": "", @@ -35396,7 +35396,7 @@ }, "item": [ { - "id": "9c3c0097-91d8-4aea-91a1-20722048def5", + "id": "c4cd7652-be61-4383-82d8-4331b3f1d123", "name": "Get all commercial conditions", "request": { "name": "Get all commercial conditions", @@ -35450,7 +35450,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "45f99381-0abd-4108-9d25-af6aad74c0dc", + "id": "f08e49f6-cacf-4b5a-a37b-e66ddd2d36c2", "name": "OK", "originalRequest": { "url": { @@ -35518,7 +35518,7 @@ { "listen": "test", "script": { - "id": "9018b71d-e74b-4907-810e-2d91e4b2b6bd", + "id": "e987eaf4-2f42-443f-a598-bce1b94e2d3e", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/commercialcondition/list - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -35534,7 +35534,7 @@ } }, { - "id": "c1b30f4f-cbcf-4f79-aa59-57a7a1a6a631", + "id": "aa2be565-784f-428d-8a48-144eeb6766a2", "name": "Get commercial condition", "request": { "name": "Get commercial condition", @@ -35599,7 +35599,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "638dd249-ebb4-4a41-813c-70bcbd7882d1", + "id": "ece95b87-d554-4c67-a49f-e36ba1a42ea8", "name": "OK", "originalRequest": { "url": { @@ -35667,7 +35667,7 @@ { "listen": "test", "script": { - "id": "5c9e9261-1578-4416-9f0b-3906b274aafb", + "id": "6c8bcaa0-6216-4ba2-b46f-f3a3c0921f87", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/catalog_system/pvt/commercialcondition/:commercialConditionId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -35686,7 +35686,7 @@ "event": [] }, { - "id": "781b8f0f-59ba-4bdf-b8f8-fbf785cb5a8a", + "id": "6570b5d5-5237-47ff-ab9f-973abc6ae338", "name": "Gift list", "description": { "content": "", @@ -35694,7 +35694,7 @@ }, "item": [ { - "id": "e1bce189-a4a5-4f90-86ed-e2ef7fcb5035", + "id": "7dc5acd6-76d6-424f-9990-917ba503fa5a", "name": "Get gift list", "request": { "name": "Get gift list", @@ -35760,7 +35760,7 @@ "_": { "postman_previewlanguage": "json" }, - "id": "e179e243-6729-4efd-9e90-cc0be648f7aa", + "id": "aa342737-4ef8-4f53-b19c-8600d7988c92", "name": "OK", "originalRequest": { "url": { @@ -35829,7 +35829,7 @@ { "listen": "test", "script": { - "id": "50061e6a-0745-4d1d-81bb-67f449930356", + "id": "25fc37e4-df97-408b-8dda-0e7a2f05eee0", "type": "text/javascript", "exec": [ "// Validate status 2xx \npm.test(\"[GET]::/api/addon/pvt/giftlist/get/:listId - Status code is 2xx\", function () {\n pm.response.to.be.success;\n});\n", @@ -35887,7 +35887,7 @@ } ], "info": { - "_postman_id": "6af559a7-7459-4615-8262-184bb15771ec", + "_postman_id": "0b314d38-2e78-4d21-ab45-c73810d00148", "name": "Catalog API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { From ebe063f3ecc6462f4a7f3b4285291b5e2146863e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Veloso=20S=C3=A1?= <77300325+Isabella-Veloso@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:22:15 -0300 Subject: [PATCH 3/7] Update VTEX - Catalog API.json --- VTEX - Catalog API.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/VTEX - Catalog API.json b/VTEX - Catalog API.json index 731166020..4ede1360b 100644 --- a/VTEX - Catalog API.json +++ b/VTEX - Catalog API.json @@ -18458,11 +18458,7 @@ }, "SKUFileURL": { "type": "object", - "description": "Object with the request.", - "required": [ - "Name", - "Url" - ], + "description": "Object to create an SKU file from an image URL.", "properties": { "IsMain": { "type": "boolean", From 098f56ec0570675cb798a0d121cf9af7c464850c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Veloso=20S=C3=A1?= <77300325+Isabella-Veloso@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:24:51 -0300 Subject: [PATCH 4/7] Update VTEX - Catalog API.json --- VTEX - Catalog API.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VTEX - Catalog API.json b/VTEX - Catalog API.json index 4ede1360b..15280fe43 100644 --- a/VTEX - Catalog API.json +++ b/VTEX - Catalog API.json @@ -18459,6 +18459,10 @@ "SKUFileURL": { "type": "object", "description": "Object to create an SKU file from an image URL.", + "required": [ + "Name", + "Url" + ], "properties": { "IsMain": { "type": "boolean", From f76b7c309f7566d68c655d480b7863d6b4274e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Veloso=20S=C3=A1?= <77300325+Isabella-Veloso@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:25:26 -0300 Subject: [PATCH 5/7] Update VTEX - Catalog API.json --- VTEX - Catalog API.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/VTEX - Catalog API.json b/VTEX - Catalog API.json index 15280fe43..f46ba5cb0 100644 --- a/VTEX - Catalog API.json +++ b/VTEX - Catalog API.json @@ -18500,10 +18500,6 @@ "SKUFile": { "type": "object", "description": "SKU image file information sent via form-data.", - "required": [ - "File", - "Name" - ], "properties": { "File": { "type": "string", From 7ebd9adbe3f8cd7caeaaeb5dabbe0f56d41c7fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Veloso=20S=C3=A1?= <77300325+Isabella-Veloso@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:37:06 -0300 Subject: [PATCH 6/7] Update VTEX - Catalog API.json --- VTEX - Catalog API.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VTEX - Catalog API.json b/VTEX - Catalog API.json index f46ba5cb0..2bc4e1742 100644 --- a/VTEX - Catalog API.json +++ b/VTEX - Catalog API.json @@ -5060,6 +5060,10 @@ "multipart/form-data": { "schema": { "$ref": "#/components/schemas/SKUFile" + }, + "example": { + "File": "(binary)", + "Name": "Nike-Red-Janoski-1" } } } From 34793cf34d8a64982eb9f573707b9e10d0287a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Veloso=20S=C3=A1?= <77300325+Isabella-Veloso@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:56:20 -0300 Subject: [PATCH 7/7] Update VTEX - Catalog API.json --- VTEX - Catalog API.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VTEX - Catalog API.json b/VTEX - Catalog API.json index 2bc4e1742..25ac6e027 100644 --- a/VTEX - Catalog API.json +++ b/VTEX - Catalog API.json @@ -5178,6 +5178,10 @@ "multipart/form-data": { "schema": { "$ref": "#/components/schemas/SKUFile" + }, + "example": { + "File": "(binary)", + "Name": "Nike-Red-Janoski-1" } } }