06 Postman
1. Get Method
1.1 Send id through body as json
// app.js file
app.get("/userid", async(req, res) => {
const { myID } = req.body; // postman > GET Req. > Body> raw (json file mode) >
const user = await User.findById(id);
res.json({
...
krayush1109.hashnode.dev1 min read