In the Keycloak documentation the base path is defined as: localhost:8080/auth
But if we try to reach the documented endpoints we always get a Not Found response.
We get a 404 if we try to access the endpoint to get the top-level representation of the master realm: GET /{realm}
like:
http://localhost:8080/auth/master
But if we try it like:
http://localhost:8080/auth/admin/realms/master
we receive a successful response.
Are we overlooking something or is this an error in the documentation?