Curl Commands to fetch the data
==================================================================================================================
Request curl --location 'http://localhost:3000/account/list'
Response: { "1465": { "username": "madfinger11", "email": "[email protected]", "password": "yddam5342" }, "2646": { "username": "yemiakin", "email": "[email protected]", "password": "iy@g65" }, "3253": { "username": "ikechifortune", "email": "[email protected]", "password": "ifo#mf23" } }
==================================================================================================================
Request
curl --location 'http://localhost:3000/account/addaccount'
--header 'Content-Type: text/plain'
--data-raw '{
"username": "sri",
"email": "[email protected]",
"password": "Sairam3333"
}'
Response:
{ "success": true, "msg": "account data added successfully" }