Springboot admin users

I using the keycloak to secure my API with springboot

<dependency>
   <groupId>org.keycloak</groupId>
   <artifactId>keycloak-spring-boot-starter</artifactId>
   <version>${keycloak.version}</version>
</dependency>

So now I need to manage my users, create, update, delete and other, there are some client to does this? in java? if not, it’s possible to use the keycloak rest api ? where I found how log with a admin user, add and update users?

tks

There is a keycloak-admin-client Java library, if you are looking for a programmatic way to manage users.