{"info":{"_postman_id":"d162122b-8a80-4bcc-b6f3-d2ec1fb5593d","name":"Keep-it","description":"<html><head></head><body><p>The docs has two parts</p>\n<ul>\n<li>Users</li>\n<li>Notes</li>\n</ul>\n<p><strong>Users :</strong> endpoints related to users</p>\n<p><strong>Notes :</strong> endpoints related to notes</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"13755139","collectionId":"d162122b-8a80-4bcc-b6f3-d2ec1fb5593d","publishedId":"2s8YehSbCb","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-11-08T18:04:57.000Z"},"item":[{"name":"Users","item":[{"name":"create a user","id":"769df8ec-e762-4890-aba0-8b92cf2b5e01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\":\"hello@test.co\",\n    \"password\":\"123456\",\n    \"name\":\"Aravind ks\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/users/signup","urlObject":{"protocol":"http","port":"5000","path":["api","users","signup"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"769df8ec-e762-4890-aba0-8b92cf2b5e01"},{"name":"edit profile of user","id":"a7674a28-f88e-4d93-aab5-04eb4ee62937","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\":\"Aravind K Subash\",\n    \"email\":\"hello@test.co\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/users/profile","urlObject":{"protocol":"http","port":"5000","path":["api","users","profile"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7674a28-f88e-4d93-aab5-04eb4ee62937"},{"name":"login a user","id":"1cb5414f-650c-4604-b25a-6a4a2922d52f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\":\"hello@test.co\",\n    \"password\":\"123456\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/users/login","urlObject":{"protocol":"http","port":"5000","path":["api","users","login"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"1cb5414f-650c-4604-b25a-6a4a2922d52f"}],"id":"0f98bad0-94cf-4f37-b7cb-91c6726a4551","_postman_id":"0f98bad0-94cf-4f37-b7cb-91c6726a4551","description":""},{"name":"Notes","item":[{"name":"Get all the notes of a user","id":"de28de96-2eb5-43ff-a7e0-cbb849a86c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes","urlObject":{"protocol":"http","port":"5000","path":["api","notes"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"de28de96-2eb5-43ff-a7e0-cbb849a86c3d"},{"name":"update a note with and ID","id":"517c89da-e1f4-427c-bad9-4cbb919ff3d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"archive\":false\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/note/636921a7a013c710ee239c42","urlObject":{"protocol":"http","port":"5000","path":["api","notes","note","636921a7a013c710ee239c42"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"517c89da-e1f4-427c-bad9-4cbb919ff3d7"},{"name":"Create a note","id":"af064fe6-e0ec-4384-aadd-5ee8c471e3ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content\":\"<p>this is some text</p>\",\n    \"title\":\"new note\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/new-note","urlObject":{"protocol":"http","port":"5000","path":["api","notes","new-note"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"02d1ca27-799d-4570-8f82-fdc60c56e173","name":"Create a note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content\":\"<p>this is some text</p>\",\n    \"title\":\"new note\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/new-note"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"224"},{"key":"ETag","value":"W/\"e0-umT5vN8bmP5LsA2b7AJvExaaRUk\""},{"key":"Date","value":"Tue, 08 Nov 2022 18:00:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"content\": \"<p>this is some text</p>\",\n            \"title\": \"new note\",\n            \"archive\": false,\n            \"_id\": \"636a990c445de446f9c9c3fe\"\n        },\n        {\n            \"content\": \"<p>this is some text</p>\",\n            \"title\": \"new note\",\n            \"archive\": false,\n            \"_id\": \"636a9927445de446f9c9c404\"\n        }\n    ]\n}"}],"_postman_id":"af064fe6-e0ec-4384-aadd-5ee8c471e3ed"},{"name":"Delete a note","id":"e8484b4f-926e-42c6-936f-05f4643c19ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:5000/api/notes/del-note/636a39aa4f3191d174a971bd","urlObject":{"protocol":"http","port":"5000","path":["api","notes","del-note","636a39aa4f3191d174a971bd"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8484b4f-926e-42c6-936f-05f4643c19ce"}],"id":"18c851e4-510b-41ee-8170-91938d18581f","_postman_id":"18c851e4-510b-41ee-8170-91938d18581f","description":""}]}