From ee6f9aedfc2273d58a9f58808fd97ddebb949d48 Mon Sep 17 00:00:00 2001 From: Madison Ehlers <49169871+MadisonEhlers-Vertex@users.noreply.github.com> Date: Fri, 13 Feb 2026 09:19:45 -0600 Subject: [PATCH] Change token exchange endpoint in collaboration APIs guide Updated the token exchange endpoint for OAuth2. --- docs/guides/collaboration-apis.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/collaboration-apis.mdx b/docs/guides/collaboration-apis.mdx index fd02714..6cc2190 100644 --- a/docs/guides/collaboration-apis.mdx +++ b/docs/guides/collaboration-apis.mdx @@ -222,7 +222,7 @@ Exchange an access token from your external identity provider (IdP) for a Vertex access token. ```bash -curl --request POST 'https://platform.vertexvis.com/token/exchange' \ +curl --request POST 'https://platform.vertexvis.com/oauth2/token' \ --header 'Authorization: Basic BASE64_ENCODED_CLIENT_ID_AND_SECRET' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'grant_type=urn:ietf:params:oauth:grant-type:token-exchange' \