2016-05-11 11:26:03 +00:00
== Admin REST API
2016-04-18 21:02:18 +00:00
2016-06-08 13:20:53 +00:00
{{book.project.name}} comes with a fully functional Admin REST API with all features provided by the Admin Console.
2016-04-18 21:02:18 +00:00
2016-05-13 08:28:41 +00:00
To invoke the API you need to obtain an access token with the appropriate permissions. The required permissions are described in
{{book.adminguide.link}}[{{book.adminguide.name}}].
2016-04-18 21:02:18 +00:00
2016-06-08 13:20:53 +00:00
A token can be obtained by enabling authenticating to your application with {{book.project.name}}, see the
2016-05-13 08:28:41 +00:00
{{book.clientguide.link}}[{{book.clientguide.name}}]. You can also use direct access grant to obtain an access token.
2016-05-11 11:26:03 +00:00
2016-06-09 06:15:20 +00:00
Full API documentation is available at {{book.apidocs.link}}[{{book.apidocs.name}}].
2016-05-11 11:26:03 +00:00
2016-05-13 08:28:41 +00:00
=== Example using CURL
2016-05-11 11:26:03 +00:00
2016-05-13 08:28:41 +00:00
Obtain access token for user in the realm `master` with username `admin` and password `password`:
[source,bash]
----
curl \
-d "client_id=admin-cli" \
-d "username=admin" \
2016-05-31 18:39:12 +00:00
-d "password=password" \
2016-05-13 08:28:41 +00:00
-d "grant_type=password" \
"http://localhost:8080/auth/realms/master/protocol/openid-connect/token"
----
2016-05-11 11:26:03 +00:00
2016-05-13 08:28:41 +00:00
NOTE: By default this token expires in 1 minute
2016-05-11 11:26:03 +00:00
2016-05-13 08:28:41 +00:00
The result will be a JSON document. To invoke the API you need to extract the value of the `access_token` property. You can then invoke the API by including
the value in the `Authorization` header of requests to the API.
2016-04-18 21:02:18 +00:00
2016-05-13 08:28:41 +00:00
The following example shows how to get the details of the master realm:
2016-04-18 21:02:18 +00:00
2016-05-13 08:28:41 +00:00
[source,bash]
----
curl \
-H "Authorization: bearer eyJhbGciOiJSUz..." \
"http://localhost:8080/auth/admin/realms/master"
----
2016-05-11 11:26:03 +00:00
{% if book.community %}
=== Example using Java
There's a Java client library for the Admin REST API that makes it easy to use from Java. To use it from your application add a dependency on the
2016-05-13 08:28:41 +00:00
`keycloak-admin-client` library.
2016-05-11 11:26:03 +00:00
The following example shows how to use the Java client library to get the details of the master realm:
2016-05-13 08:28:41 +00:00
[source,java]
----
2016-05-11 11:26:03 +00:00
import org.keycloak.admin.client.Keycloak;
import org.keycloak.representations.idm.RealmRepresentation;
...
Keycloak keycloak = Keycloak.getInstance(
2016-05-31 18:39:12 +00:00
"http://localhost:8080/auth",
"master",
"admin",
"password",
2016-05-11 11:26:03 +00:00
"admin-cli");
RealmRepresentation realm = keycloak.realm("master").toRepresentation();
2016-05-13 08:28:41 +00:00
----
2016-05-11 11:26:03 +00:00
2016-06-09 06:15:20 +00:00
Complete Javadoc for the admin client is available at {{book.apidocs.link}}[{{book.apidocs.name}}].
2016-05-11 11:26:03 +00:00
{% endif %}