Desafio CRUD Clientes
Number of APIs: 8
-
01 Client by existing id GET http://localhost:8080/clients/1
-
02 Client by non-existing id GET http://localhost:8080/clients/100
-
03 Clients paged GET http://localhost:8080/clients?page=0&size=6&sort=name
-
05 New client with invalid data POST http://localhost:8080/clients
-
07 Client update non-existing id PUT http://localhost:8080/clients/100
-
08 Client update with invalid data PUT http://localhost:8080/clients/1
-
09 Client by existing id DELETE http://localhost:8080/clients/1
-
10 Client by non-existing id DELETE http://localhost:8080/clients/100