Skip to content

Commit 87cf215

Browse files
committed
CPM-724: Fix last links
1 parent bea1800 commit 87cf215

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

content/concepts/asset-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1930,7 +1930,7 @@ Here are the steps to follow to link assets to your products:
19301930
2. Put this attribute within the [families](/concepts/catalog-structure.html#familiy) of the products you want to link your assets to.
19311931
3. Assign your assets to these products either:
19321932
- manually, in the `Assets` tab of the product form in the PIM UI,
1933-
- by API using the [product](/api-reference.html#patch_products) POST and PATCH endpoints by adding the asset codes in the asset collection data,
1933+
- by API using the [product](/api-reference.html#patch_products_uuid) POST and PATCH endpoints by adding the asset codes in the asset collection data,
19341934
- automatically thanks to the [product link rule](#focus-on-the-product-link-rule), detailed in the paragraph below.
19351935

19361936
::: info

content/getting-started/connect-the-pim-4x/step-2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ _In our example, as stated above, we know that every day, new products are creat
6262
In this step, you will need to find in our [REST API reference](/api-reference-index.html) the endpoints you need to achieve such a connection.
6363

6464
#### In this tutorial
65-
_For our example, you will need to create and update products in the PIM so we will mainly need this endpoint: [Patch](/api-reference.html#patch_products) on products._
65+
_For our example, you will need to create and update products in the PIM so we will mainly need this endpoint: [Patch](/api-reference.html#patch_products_uuid) on products._
6666

6767
### 5- Think about your architecture
6868
Choose the architecture you want for your connector. Indeed, you will have two options here:
@@ -81,7 +81,7 @@ _For our example, we choose the second option as there are little chances that y
8181
A crucial step. In most cases, you will need to manually map some PIM information with the data sent or received in or from the software you want to connect.
8282

8383
#### In this tutorial
84-
_For our example, here is the global orchestration of our connector. First, every evening, you will extract the list of products that were created/updated during the day, in an XML file. Then, your connector reads this file. ERP products are then transformed into PIM products, by mapping the ERP information with the right PIM attributes. Lastly, the connector sends the PIM products by using the [patch](/api-reference.html#patch_products) endpoint of our REST API._
84+
_For our example, here is the global orchestration of our connector. First, every evening, you will extract the list of products that were created/updated during the day, in an XML file. Then, your connector reads this file. ERP products are then transformed into PIM products, by mapping the ERP information with the right PIM attributes. Lastly, the connector sends the PIM products by using the [patch](/api-reference.html#patch_products_uuid) endpoint of our REST API._
8585

8686
## Some pro tips
8787

content/getting-started/connect-the-pim-old/step-1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ _In our example, as stated above, we know that every day, new products are creat
5858
In this step, you will need to find in our [REST API reference](/api-reference-index.html) the endpoints you need to achieve such a connection.
5959

6060
#### In this tutorial
61-
_For our example, you will need to create and update products in the PIM so we will mainly need this endpoint: [Patch](/api-reference.html#patch_products) on products._
61+
_For our example, you will need to create and update products in the PIM so we will mainly need this endpoint: [Patch](/api-reference.html#patch_products_uuid) on products._
6262

6363
### 5- Think about your architecture
6464
Choose the architecture you want for your connector. Indeed, you will have two options here:
@@ -77,7 +77,7 @@ _For our example, we choose the second option as there are little chances that y
7777
A crucial step. In most cases, you will need to manually map some PIM information with the data sent or received in or from the software you want to connect.
7878

7979
#### In this tutorial
80-
_For our example, here is the global orchestration of our connector. First, every evening, you will extract the list of products that were created/updated during the day, in an XML file. Then, your connector reads this file. ERP products are then transformed into PIM products, by mapping the ERP information with the right PIM attributes. Lastly, the connector sends the PIM products by using the [patch](/api-reference.html#patch_products) endpoint of our REST API._
80+
_For our example, here is the global orchestration of our connector. First, every evening, you will extract the list of products that were created/updated during the day, in an XML file. Then, your connector reads this file. ERP products are then transformed into PIM products, by mapping the ERP information with the right PIM attributes. Lastly, the connector sends the PIM products by using the [patch](/api-reference.html#patch_products_uuid) endpoint of our REST API._
8181

8282
## Some pro tips
8383

content/getting-started/synchronize-pim-products-6x/step-4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ We recommend to you the following product filters:
1818
- by family codes (save to your storage in a **family_code_list** during [the second step](/getting-started/synchronize-pim-products-6x/step-2.html));
1919
- by enabled products (you probably don’t use not enabled products, don’t you?)
2020

21-
Another very important point is the **with_attribute_options**. When this option is activated, labels of attributes options will be returned in the response — and saves you from many extra API calls. More information [here](https://api.akeneo.com/api-reference.html#get_products).
21+
Another very important point is the **with_attribute_options**. When this option is activated, labels of attributes options will be returned in the response — and saves you from many extra API calls. More information [here](https://api.akeneo.com/api-reference.html#get_products_uuid).
2222

2323
::: tips
2424
Have a look at our [product filters](https://api.akeneo.com/documentation/filter.html#filter-on-product-properties): you may find other interesting ones.
@@ -28,7 +28,7 @@ So, what does our API call on products look like?
2828

2929
`GET /api/rest/v1/products-uuid?locales=locales&scope=your_channel_code&with_attribute_options=true&search={"family":[{"operator":"IN","value":family_code_list}],"enabled"[{"operator":"=","value":true}]}`
3030

31-
Details of this call are [here](https://api.akeneo.com/api-reference.html#get_products).
31+
Details of this call are [here](https://api.akeneo.com/api-reference.html#get_products_uuid).
3232

3333
What is important in the response payload?
3434

content/getting-started/your-first-tutorial-4x/step-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Alright! You're all set now. Let's launch this request.
1010
In the response area, you should get an answer similar to the one below.
1111
![Response area for authent request](/img/getting-started/authentication-response.png)
1212
4. Now, click on `Your very first request` in the `Collections` tab.
13-
5. You can see the request we are about to launch. It is using the endpoint referenced [here](/api-reference.html#get_products). We are going to ask your PIM to give us its first 100 products.
13+
5. You can see the request we are about to launch. It is using the endpoint referenced [here](/api-reference.html#get_products_uuid). We are going to ask your PIM to give us its first 100 products.
1414
![Your very first request](/img/getting-started/your-very-first-request.png)
1515
6. Are you ready? Hit the blue `Send` button.
1616
In the response area, you can see a list of 100 products in json format.

content/getting-started/your-first-tutorial-old/step-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Alright! You're all set now. Let's launch this request.
1010
In the response area, you should get an answer similar to the one below.
1111
![Response area for authent request](/img/getting-started/authentication-response.png)
1212
4. Now, click on `Your very first request` in the `Collections` tab.
13-
5. You can see the request we are about to launch. It is using the endpoint referenced [here](/api-reference.html#get_products). We are going to ask your PIM to give us its first 100 products.
13+
5. You can see the request we are about to launch. It is using the endpoint referenced [here](/api-reference.html#get_products_uuid). We are going to ask your PIM to give us its first 100 products.
1414
![Your very first request](/img/getting-started/your-very-first-request.png)
1515
6. Are you ready? Hit the blue `Send` button.
1616
In the response area, you can see a list of 100 products in json format.

content/guides/translation-connection/step3-how-to-build-your-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ We suggest that you develop the first solution during the first iteration of you
181181
:::
182182

183183
:::tips
184-
Using the ["get a list of products"](https://api.akeneo.com/api-reference.html#get_products) API endpoint (with the correct filter), your App will retrieve a JSON structure of each localizable products.
184+
Using the ["get a list of products"](https://api.akeneo.com/api-reference.html#get_products_uuid) API endpoint (with the correct filter), your App will retrieve a JSON structure of each localizable products.
185185

186186
Then, with the help of the family code of these products, your App will be able to call the ["get the list of attributes"](https://api.akeneo.com/api-reference.html#get_attributes) API endpoint to retrieve each attribute type that composes this product family.
187187

content/php-client/resources/products/products.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ foreach ($responseLines as $line) {
311311
There is a limit on the maximum number of products that you can upsert in one time on server side. By default this limit is set to 100.
312312
:::
313313

314-
You can get a complete description of the expected format and the returned format [here](/api-reference.html#get_products__code_).
314+
You can get a complete description of the expected format and the returned format [here](/api-reference.html#get_products_uuid__uuid_).
315315

316316
#### Delete a product
317317
::: php-client-availability all-versions

content/rest-api/permissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ To enable these powers:
158158

159159
That's it! :tada:
160160

161-
Don't hesitate to test your configuration by calling the [GET product endpoint](/api-reference.html#get_products__code_) on a product.
161+
Don't hesitate to test your configuration by calling the [GET product endpoint](/api-reference.html#get_products_uuid__uuid_) on a product.
162162
If this product is classified only inside the categories you hide, you should receive a 404, meaning that your configuration worked. 🙂
163163
If you hide a locale, you won't be able to receive the values of the given locale. Check the product body of the answer!
164164
If you hide a whole attribute group, you won't be able to receive the values of the attributes that are inside this attribute group. Marvelous!

0 commit comments

Comments
 (0)