usersUrl = new URL(_baseUrl, "users");
} catch (MalformedURLException ex) {
throw new AssertionError(ex);
}
Request request = new Request();
request.setUser(userParams);
request.setScopes(scope);
request.setClientId(clientId);
return post(usersUrl, request, UserResponse.class).getUser();
}