In a server database, there is a table that contains all the user data:
| id | name |
|---|---|
| 1 | Kate |
| 2 | Michael |
| 3 | Kim |
Which user will be deleted after executing the following code (write the user id in your answer):
String url = "https://api.example.com/users/{name}";
Map<String, String> params = new HashMap<>();
params.put("name", "Kim");
restTemplate.delete(url, params);