curl http://localhost:3000/customerscurl http://localhost:3000/customers/{id}curl -H "Content-Type: application/json" -X POST --data '{"id": 3, "FirstName":"Nga","LastName":"Nguyen", "Email": "ngand1@fpt.com"}' http://localhost:3000/customerscurl -H "Content-Type: application/json" -X PUT --data '{"id": 2, "FirstName":"Nga-updated","LastName":"Nguyen", "Email": "ngand1@fpt.vn"}' http://localhost:3000/customers/2curl -X DELETE http://localhost:3000/customers/{id}