From 89221fa4024fc74e5b1578c15dc9c1edfba756f0 Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Fri, 22 Aug 2025 14:58:15 +0200 Subject: [PATCH] docs(api): set base uri for connectRPC endpoints (#10536) # Which Problems Are Solved connectRPC based endpoints were missing the baseURI leading to wrongly displayed endpoints in case you last visited anV1 API endpoint, e.g. after visiting Search Project Grants on the Management API, the endpoint for ListProjectGrants on the project service would be display as `https://$CUSTOM-DOMAIN/management/v1/zitadel.project.v2beta.ProjectService/ListProjectGrants ` instead of `https://$CUSTOM-DOMAIN/zitadel.project.v2beta.ProjectService/ListProjectGrants` # How the Problems Are Solved Set the base path / server for the connectRPC calls. # Additional Changes None # Additional Context - closes #10532 --- docs/base.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/base.yaml b/docs/base.yaml index dc5b9aa0f9..62aacca241 100644 --- a/docs/base.yaml +++ b/docs/base.yaml @@ -1,3 +1,5 @@ openapi: 3.1.0 info: - version: v2 \ No newline at end of file + version: v2 +servers: + - url: https://$CUSTOM-DOMAIN \ No newline at end of file