Programming Concepts — REST
REST (Representational State Transfer) is an architectural style for designing networked APIs that use HTTP methods like GET, POST, PUT, and DELETE.
GET /users
POST /users
PUT /users/:id
DELETE /users/:id
REST (Representational State Transfer) is an architectural style for designing networked APIs that use HTTP methods like GET, POST, PUT, and DELETE.
GET /users
POST /users
PUT /users/:id
DELETE /users/:id