Skip to content

Commit eb0db85

Browse files
committed
CPM-724: Fix JS
1 parent 1fd410b commit eb0db85

File tree

14 files changed

+202
-25
lines changed

14 files changed

+202
-25
lines changed

content/concepts/products.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Note that the `quality_scores` field is only available since the 5.0 and when th
138138
Note that the `completenesses` field is only available on SaaS platforms, and when the `with_completenesses` query parameter is set to `true`.
139139
:::
140140

141-
::: panel-link Want more details about the product resource? [Check its endpoints here!](/api-reference.html#Product)
141+
::: panel-link Want more details about the product resource? [Check its endpoints here!](/api-reference.html#Productuuid)
142142
:::
143143

144144
### Convert a variant product to a simple product

content/img/illustrations/illus--Productuuid.svg

Lines changed: 177 additions & 0 deletions
Loading

content/swagger/akeneo-web-api.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

content/swagger/resources/products/routes/products.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ get:
22
summary: Get list of products
33
operationId: "get_products"
44
tags:
5-
- Product
5+
- Product [identifier]
66
x-versions:
77
- "1.7"
88
- "2.x"
@@ -85,7 +85,7 @@ post:
8585
summary: Create a new product
8686
operationId: "post_products"
8787
tags:
88-
- Product
88+
- Product [identifier]
8989
x-versions:
9090
- "1.7"
9191
- "2.x"
@@ -117,7 +117,7 @@ patch:
117117
summary: Update/create several products
118118
operationId: "patch_products"
119119
tags:
120-
- Product
120+
- Product [identifier]
121121
x-versions:
122122
- "1.7"
123123
- "2.x"

content/swagger/resources/products/routes/products_code.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ get:
22
summary: Get a product
33
operationId: "get_products__code_"
44
tags:
5-
- Product
5+
- Product [identifier]
66
x-versions:
77
- "1.7"
88
- "2.x"
@@ -35,7 +35,7 @@ patch:
3535
summary: Update/create a product
3636
operationId: "patch_products__code_"
3737
tags:
38-
- Product
38+
- Product [identifier]
3939
x-versions:
4040
- "1.7"
4141
- "2.x"
@@ -69,7 +69,7 @@ delete:
6969
summary: Delete a product
7070
operationId: "delete_products__code_"
7171
tags:
72-
- Product
72+
- Product [identifier]
7373
x-versions:
7474
- "1.7"
7575
- "2.x"

content/swagger/resources/products/routes/products_code_draft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ get:
22
summary: Get a draft
33
operationId: "get_draft__code_"
44
tags:
5-
- Product
5+
- Product [identifier]
66
x-versions:
77
- "2.x"
88
- "3.x"

content/swagger/resources/products/routes/products_code_proposal.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ post:
22
summary: Submit a draft for approval
33
operationId: "post_proposal"
44
tags:
5-
- Product
5+
- Product [identifier]
66
x-versions:
77
- "2.x"
88
- "3.x"

content/swagger/resources/products_uuid/routes/products_uuid.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ get:
22
summary: Get list of products
33
operationId: "get_products_uuid"
44
tags:
5-
- Product uuid
5+
- Product [uuid]
66
x-versions:
77
- "SaaS"
88
description: This endpoint allows you to get a list of products. Products are paginated and they can be filtered. In the Enterprise Edition, since the 2.0, permissions based on your user groups are applied to the set of products you request.
@@ -67,7 +67,7 @@ post:
6767
summary: Create a new product
6868
operationId: "post_products_uuid"
6969
tags:
70-
- Product uuid
70+
- Product [uuid]
7171
x-versions:
7272
- "SaaS"
7373
description: This endpoint allows you to create a new product. In the Enterprise Edition, since the v2.0, permissions based on your user groups are applied to the product you try to create.
@@ -93,7 +93,7 @@ patch:
9393
summary: Update/create several products
9494
operationId: "patch_products_uuid"
9595
tags:
96-
- Product uuid
96+
- Product [uuid]
9797
x-versions:
9898
- "SaaS"
9999
description: This endpoint allows you to update and/or create several products at once. Learn more about <a href="/documentation/update.html#update-behavior">Update behavior</a>. Note that if no product exists for the given uuid, it creates it. In the Enterprise Edition, since the v2.0, permissions based on your user groups are applied to the products you try to update. It may result in the creation of drafts if you only have edit rights through the product's categories.

content/swagger/resources/products_uuid/routes/products_uuid_uuid.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ get:
22
summary: Get a product
33
operationId: "get_products_uuid__uuid_"
44
tags:
5-
- Product uuid
5+
- Product [uuid]
66
x-versions:
77
- "SaaS"
88
description: This endpoint allows you to get the information about a given product. In the Entreprise Edition, since the v2.0, permissions based on your user groups are applied to the product you request.
@@ -29,7 +29,7 @@ patch:
2929
summary: Update/create a product
3030
operationId: "patch_products_uuid__uuid_"
3131
tags:
32-
- Product uuid
32+
- Product [uuid]
3333
x-versions:
3434
- "SaaS"
3535
description: This endpoint allows you to update a given product. Learn more about <a href="/documentation/update.html#update-behavior">Update behavior</a>. Note that if no product exists for the given uuid, it creates it. In the Entreprise Edition, since the v2.0, permissions based on your user groups are applied to the product you try to update. It may result in the creation of a draft if you only have edit rights through the product's categories.
@@ -57,7 +57,7 @@ delete:
5757
summary: Delete a product
5858
operationId: "delete_products_uuid__uuid_"
5959
tags:
60-
- Product uuid
60+
- Product [uuid]
6161
x-versions:
6262
- "SaaS"
6363
description: This endpoint allows you to delete a given product. In the Enterprise Edition, since the 2.0, permissions based on your user groups are applied to the product you try to delete.

0 commit comments

Comments
 (0)