- Run -> npm install
- Run -> nodemon server.js
- Use POST req to create user: http://localhost:3000/users/register
- Use POST req for login with authentication: http://localhost:3000/users/authenticate It will generate jwt token which we have to use for the below requests
- Use Get req to fetch userList: http://localhost:3000/users/userList/firstName/Ravi
- Use Get req to fetch userList along with pagination; http://localhost:3000/users/userList/firstName/Ravi/2
Refer snapshots for the payloads in the same folder