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
This commit is contained in:
Livio Spring
2025-08-22 14:58:15 +02:00
committed by GitHub
parent 756f81534a
commit 89221fa402

View File

@@ -1,3 +1,5 @@
openapi: 3.1.0
info:
version: v2
version: v2
servers:
- url: https://$CUSTOM-DOMAIN