Skip to content

Instantly share code, notes, and snippets.

View nvs2394's full-sized avatar
💻
Open to work

Son Nguyen nvs2394

💻
Open to work
View GitHub Profile
@nvs2394
nvs2394 / README.md
Created November 17, 2025 18:12
Nguyen Van Son_ Java_API_Template

Challenge 1

  1. GET /users
  • It may be missing query semantics: GET /users?page=1&limit=50&status=active
  • Might also need GET /users/:id for a single user
  1. POST /users/new
  • Redundant “new” in the path. In REST create a resource by method post like POST /users with the new user data in the body
  1. POST /users/:id/update