From fc4db1ac0ea736842fd8b1c28092c47f3c0aa35e Mon Sep 17 00:00:00 2001 From: Aaron Hoffman <31711338+Aaron-9900@users.noreply.github.com> Date: Mon, 16 Mar 2026 10:20:57 +0100 Subject: [PATCH] SDCD-2362: Update deployment gates API docs to stable v2 endpoint Update curl examples from /api/unstable/ to /api/v2/ now that a stable endpoint is available. Co-Authored-By: Claude Sonnet 4.6 --- content/en/deployment_gates/setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/deployment_gates/setup.md b/content/en/deployment_gates/setup.md index c3b01b29b79..82035216c83 100644 --- a/content/en/deployment_gates/setup.md +++ b/content/en/deployment_gates/setup.md @@ -467,7 +467,7 @@ Be sure to replace the following: - ``: Your [application key][3] ```bash -curl -X POST "https://api./api/unstable/deployments/gates/evaluation" \ +curl -X POST "https://api./api/v2/deployments/gates/evaluation" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: " \ -H "DD-APPLICATION-KEY: " \ @@ -507,7 +507,7 @@ The field `data.attributes.evaluation_id` contains the unique identifier for thi You can fetch the status of a gate evaluation by polling an additional API endpoint using the gate evaluation ID: ```bash -curl -X GET "https://api./api/unstable/deployments/gates/evaluation/" \ +curl -X GET "https://api./api/v2/deployments/gates/evaluation/" \ -H "DD-API-KEY: " \ -H "DD-APPLICATION-KEY: " ```