From e72227ab9896e72f7d3703908106e24a4bcb6499 Mon Sep 17 00:00:00 2001 From: Angel Rojo Date: Wed, 4 Feb 2026 10:48:20 +0100 Subject: [PATCH 1/2] replace with correct endpoint `V1/orders` according to https://adobe-commerce-saas.redoc.ly/tag/orders\#operation/PostV1Orders --- src/pages/rest/modules/custom-attributes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/rest/modules/custom-attributes.md b/src/pages/rest/modules/custom-attributes.md index 6ba7b8d5d..b9833e69f 100644 --- a/src/pages/rest/modules/custom-attributes.md +++ b/src/pages/rest/modules/custom-attributes.md @@ -227,7 +227,7 @@ curl -i -X POST \ ### Order -The following example uses the `POST V1/order` endpoint to set custom attributes on an order. +The following example uses the `POST V1/orders` endpoint to set custom attributes on an order. ```curl curl -i -X POST \ From 5f232decd8d305cd0ce0352acfe7935187bd9614 Mon Sep 17 00:00:00 2001 From: Angel Rojo Date: Wed, 4 Feb 2026 10:49:54 +0100 Subject: [PATCH 2/2] replace with correct endpoint `V1/orders/items` according to https://adobe-commerce-saas.redoc.ly/tag/ordersitems\#operation/GetV1OrdersItems --- src/pages/rest/modules/custom-attributes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/rest/modules/custom-attributes.md b/src/pages/rest/modules/custom-attributes.md index b9833e69f..ffb0dc8f3 100644 --- a/src/pages/rest/modules/custom-attributes.md +++ b/src/pages/rest/modules/custom-attributes.md @@ -252,7 +252,7 @@ curl -i -X POST \ 'https:///rest/all/V1/orders' ``` -If an order item has custom attributes, they will be returned as part of the order item object in responses to requests like `GET /V1/order/items/{id}`. +If an order item has custom attributes, they will be returned as part of the order item object in responses to requests like `GET /V1/orders/items/{id}`. ### Negotiable Quote