From fa1a21ac5a306b92a5ee4dc796618b8a7d2b95a3 Mon Sep 17 00:00:00 2001 From: Karen Krieger Date: Fri, 22 May 2026 16:18:41 -0300 Subject: [PATCH 1/4] feat(nav): add new batch endpoints --- public/navigation.json | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/public/navigation.json b/public/navigation.json index 94058223f..3416a6b92 100644 --- a/public/navigation.json +++ b/public/navigation.json @@ -8303,6 +8303,49 @@ } ] }, + { + "name": "Batch operations", + "slug": "logistics-api-inventory", + "type": "category", + "children": [ + { + "name": "Create batch inventory job", + "slug": "logistics-api", + "type": "openapi", + "method": "POST", + "origin": "", + "endpoint": "/availability/v1/inventory/batch", + "children": [] + }, + { + "name": "Commit batch inventory", + "slug": "logistics-api", + "type": "openapi", + "method": "POST", + "origin": "", + "endpoint": "/availability/v1/inventory/batch/-batchId-/commit", + "children": [] + }, + { + "name": "Get batch inventory status", + "slug": "logistics-api", + "type": "openapi", + "method": "GET", + "origin": "", + "endpoint": "/availability/v1/inventory/batch/{batchId}/status", + "children": [] + }, + { + "name": "Get batch inventory errors", + "slug": "logistics-api", + "type": "openapi", + "method": "GET", + "origin": "", + "endpoint": "/availability/v1/inventory/batch/{batchId}/errors", + "children": [] + } + ] + }, { "name": "Holidays", "slug": "logistics-api-holidays", From cd43efa5c3e2108bb6f6be07304ad7744feaf56c Mon Sep 17 00:00:00 2001 From: Karen Krieger Date: Fri, 22 May 2026 16:21:23 -0300 Subject: [PATCH 2/4] feat(nav): add release note --- public/navigation.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public/navigation.json b/public/navigation.json index 3416a6b92..86ff94e25 100644 --- a/public/navigation.json +++ b/public/navigation.json @@ -18467,6 +18467,13 @@ "origin": "", "type": "category", "children": [ + { + "name": "New batch inventory endpoints (Beta) in the Logistics API", + "slug": "2026-05-19-logistics-api-new-batch-inventory-endpoints", + "origin": "", + "type": "markdown", + "children": [] + }, { "name": "Updated vtexvault.com route for Send Payments request", "slug": "2026-05-15-updated-vtexvaultcom-route-for-send-payments-request", From 4805588dc3058f734bb05592298ba40c89329c99 Mon Sep 17 00:00:00 2001 From: Karen Krieger Date: Fri, 22 May 2026 16:24:05 -0300 Subject: [PATCH 3/4] feat(nav): add new guide --- public/navigation.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/public/navigation.json b/public/navigation.json index 86ff94e25..af224d541 100644 --- a/public/navigation.json +++ b/public/navigation.json @@ -1996,6 +1996,21 @@ "children": [] } ] + }, + { + "name": "Inventory", + "slug": "inventory", + "origin": "", + "type": "markdown", + "children": [ + { + "name": "Batch inventory updates (Beta)", + "slug": "batch-inventory-updates", + "origin": "", + "type": "markdown", + "children": [] + } + ] } ] }, From 7fb50db90fbc99ecfea59bbad26cb7f5327fa986 Mon Sep 17 00:00:00 2001 From: Karen Krieger Date: Fri, 22 May 2026 17:02:35 -0300 Subject: [PATCH 4/4] Update public/navigation.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: JĂșlia Rabello <77292838+julia-rabello@users.noreply.github.com> --- public/navigation.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/navigation.json b/public/navigation.json index af224d541..eea5f983c 100644 --- a/public/navigation.json +++ b/public/navigation.json @@ -8347,7 +8347,7 @@ "type": "openapi", "method": "GET", "origin": "", - "endpoint": "/availability/v1/inventory/batch/{batchId}/status", + "endpoint": "/availability/v1/inventory/batch/-batchId-/status", "children": [] }, { @@ -8356,7 +8356,7 @@ "type": "openapi", "method": "GET", "origin": "", - "endpoint": "/availability/v1/inventory/batch/{batchId}/errors", + "endpoint": "/availability/v1/inventory/batch/-batchId-/errors", "children": [] } ]