GET/api/users200MetodoGETPOSTPUTDELETEPATCHPath Usa :id per parametri dinamici Status200201204400401403404409422500Delay (ms)Response Body (JSON)[ { "id": 1, "name": "Alice", "email": "alice@example.com", "role": "admin" }, { "id": 2, "name": "Bob", "email": "bob@example.com", "role": "user" } ]
POST/api/users201MetodoGETPOSTPUTDELETEPATCHPath Usa :id per parametri dinamici Status200201204400401403404409422500Delay (ms)Response Body (JSON){ "id": 3, "name": "Charlie", "email": "charlie@example.com", "role": "user" }
GET/api/users/:id200MetodoGETPOSTPUTDELETEPATCHPath Usa :id per parametri dinamici Status200201204400401403404409422500Delay (ms)Response Body (JSON){ "id": 1, "name": "Alice", "email": "alice@example.com", "role": "admin" }