diff --git a/docbook/auth-server-docs/reference/en/en-US/modules/client-registration.xml b/docbook/auth-server-docs/reference/en/en-US/modules/client-registration.xml
index 35f73a3e196..79b035ad4d4 100755
--- a/docbook/auth-server-docs/reference/en/en-US/modules/client-registration.xml
+++ b/docbook/auth-server-docs/reference/en/en-US/modules/client-registration.xml
@@ -106,23 +106,23 @@ Authorization: bearer eyJhbGciOiJSUzI1NiJ9.eyJqdGkiOiJmMjJmNzQyYy04ZjNlLTQ2M....
To create a client create a Client Representation (JSON) then do a HTTP POST to:
- <KEYCLOAK URL>/realms/<realm>/clients/<provider>/default. It will return a Client Representation
+ <KEYCLOAK URL>/realms/<realm>/clients/default. It will return a Client Representation
that also includes the registration access token. You should save the registration access token somewhere
if you want to retrieve the config, update or delete the client later.
To retrieve the Client Representation then do a HTTP GET to:
- <KEYCLOAK URL>/realms/<realm>clients/<provider>/default/<client id>. It will also
+ <KEYCLOAK URL>/realms/<realm>/clients/default/<client id>. It will also
return a new registration access token.
To update the Client Representation then do a HTTP PUT to with the updated Client Representation to:
- <KEYCLOAK URL>/realms/<realm>/clients/<provider>/default/<client id>. It will also
+ <KEYCLOAK URL>/realms/<realm>/clients/default/<client id>. It will also
return a new registration access token.
To delete the Client Representation then do a HTTP DELETE to:
- <KEYCLOAK URL>/realms/<realm>/clients/<provider>/default/<client id>
+ <KEYCLOAK URL>/realms/<realm>/clients/default/<client id>
@@ -138,7 +138,7 @@ Authorization: basic BASE64(client-id + ':' + client-secret)
To retrieve the Adapter Configuration then do a HTTP GET to:
- <KEYCLOAK URL>//realms/<realm>clients/<provider>/installation/<client id>
+ <KEYCLOAK URL>//realms/<realm>/clients/installation/<client id>
No authentication is required for public clients. This means that for the JavaScript adapter you can
@@ -155,7 +155,7 @@ Authorization: basic BASE64(client-id + ':' + client-secret)
The endpoint to use these specifications to register clients in Keycloak is:
- <KEYCLOAK URL>/realms/<realm>/clients/<provider>/oidc[/<client id>].
+ <KEYCLOAK URL>/realms/<realm>/clients/oidc[/<client id>].
This endpoints can also be found in the OpenID Connect Discovery endpoint for the realm:
@@ -173,7 +173,7 @@ Authorization: basic BASE64(client-id + ':' + client-secret)
To create a client do a HTTP POST with the SAML Entity Descriptor to:
- <KEYCLOAK URL>/realms/<realm>/clients/<provider>/saml2-entity-descriptor.
+ <KEYCLOAK URL>/realms/<realm>/clients/saml2-entity-descriptor.