diff --git a/README.md b/README.md index 68a2dc5..302f6cb 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,9 @@ client = keycloak_admin.get_client(client_id="client_id") # Get all roles for the realm or client realm_roles = keycloak_admin.get_realm_roles() +# Get all roles for the realm or client that their names includes the searched text +realm_roles = keycloak_admin.get_realm_roles(search_text="company548test_") + # Get all roles for the client client_roles = keycloak_admin.get_client_roles(client_id="client_id")