{"info":{"_postman_id":"8c0ae6b8-51f3-4108-8c16-6bd8178262ec","name":"Notes Advanced API","description":"<html><head></head><body><p>Postman Collection for Assignment 02: Notes Management REST API with Advanced Routing &amp; Queries (filtering, sorting, pagination).</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"50841514","collectionId":"8c0ae6b8-51f3-4108-8c16-6bd8178262ec","publishedId":"2sBXwpQCgC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-06-05T16:08:11.000Z"},"item":[{"name":"1. CRUD Endpoints","item":[{"name":"1. Create Note","id":"7fba076f-1ebc-4c5a-bb88-9fc4022a2f7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Team standup agenda\",\n  \"content\": \"Discuss sprint blockers and deployment plan\",\n  \"category\": \"work\",\n  \"isPinned\": true\n}"},"url":"http://localhost:5000/api/notes","urlObject":{"path":["api","notes"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"46f44124-d6a1-4a1c-8d9d-c1478822fecc","name":"1. Create Note","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Team standup agenda\",\n  \"content\": \"Discuss sprint blockers and deployment plan\",\n  \"category\": \"work\",\n  \"isPinned\": true\n}"},"url":"http://localhost:5000/api/notes"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"302"},{"key":"ETag","value":"W/\"12e-mt4ln1gNVNQfnxGrP38jQhusvAQ\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:19:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Note created successfully\",\n    \"data\": {\n        \"title\": \"Team standup agenda\",\n        \"content\": \"Discuss sprint blockers and deployment plan\",\n        \"category\": \"work\",\n        \"isPinned\": true,\n        \"_id\": \"6a22db019b9cddb3c0df5d0b\",\n        \"createdAt\": \"2026-06-05T14:19:45.130Z\",\n        \"updatedAt\": \"2026-06-05T14:19:45.130Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"7fba076f-1ebc-4c5a-bb88-9fc4022a2f7b"},{"name":"2. Create Notes Bulk","id":"b6f7ddb1-267b-44eb-9126-2d7bd8bfae75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"notes\": [\n    { \"title\": \"Note one\",   \"content\": \"Content one\",   \"category\": \"work\"     },\n    { \"title\": \"Note two\",   \"content\": \"Content two\",   \"category\": \"study\"    },\n    { \"title\": \"Note three\", \"content\": \"Content three\", \"category\": \"personal\" }\n  ]\n}"},"url":"http://localhost:5000/api/notes/bulk","urlObject":{"path":["api","notes","bulk"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"4495cb39-7285-4a39-bf7b-4edde5bf0577","name":"2. Create Notes Bulk","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"notes\": [\n    { \"title\": \"Note one\",   \"content\": \"Content one\",   \"category\": \"work\"     },\n    { \"title\": \"Note two\",   \"content\": \"Content two\",   \"category\": \"study\"    },\n    { \"title\": \"Note three\", \"content\": \"Content three\", \"category\": \"personal\" }\n  ]\n}"},"url":"http://localhost:5000/api/notes/bulk"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"672"},{"key":"ETag","value":"W/\"2a0-zmHK5tUFNCZhmaz/SQItrcXGmco\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:19:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"3 notes created successfully\",\n    \"data\": [\n        {\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        },\n        {\n            \"title\": \"Note two\",\n            \"content\": \"Content two\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0d\",\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        },\n        {\n            \"title\": \"Note three\",\n            \"content\": \"Content three\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0e\",\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        }\n    ]\n}"}],"_postman_id":"b6f7ddb1-267b-44eb-9126-2d7bd8bfae75"},{"name":"3. Get All Notes","id":"110740c1-ede2-4faa-a914-effec3132234","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes","urlObject":{"path":["api","notes"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"63884554-1e89-4aba-b1a6-53b9ba1035bb","name":"3. Get All Notes","originalRequest":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"921"},{"key":"ETag","value":"W/\"399-ENKfoN9I3HXB0FcuIvJTwsJ35Mg\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:20:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes fetched successfully\",\n    \"count\": 4,\n    \"data\": [\n        {\n            \"_id\": \"6a22db019b9cddb3c0df5d0b\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:19:45.130Z\",\n            \"updatedAt\": \"2026-06-05T14:19:45.130Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0d\",\n            \"title\": \"Note two\",\n            \"content\": \"Content two\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0e\",\n            \"title\": \"Note three\",\n            \"content\": \"Content three\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        }\n    ]\n}"}],"_postman_id":"110740c1-ede2-4faa-a914-effec3132234"},{"name":"4. Get Note by ID","id":"3f419e4c-6d67-4991-867a-64c00c23f5fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/:id","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"ff884e29-aae4-4877-add6-466a97fbcff5","type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"592434d0-df32-4c95-af20-d4276a14d2a9","name":"4. Get Note by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/:id","host":["http://localhost:5000"],"path":["api","notes",":id"],"variable":[{"key":"id","value":"6a22db019b9cddb3c0df5d0b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"302"},{"key":"ETag","value":"W/\"12e-MvUz2JO5zKYwySA1Pj0QE6eyyfo\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:20:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Note fetched successfully\",\n    \"data\": {\n        \"_id\": \"6a22db019b9cddb3c0df5d0b\",\n        \"title\": \"Team standup agenda\",\n        \"content\": \"Discuss sprint blockers and deployment plan\",\n        \"category\": \"work\",\n        \"isPinned\": true,\n        \"createdAt\": \"2026-06-05T14:19:45.130Z\",\n        \"updatedAt\": \"2026-06-05T14:19:45.130Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"3f419e4c-6d67-4991-867a-64c00c23f5fb"},{"name":"5. Replace Note (PUT)","id":"76160723-ec35-4bdc-952b-1d3517821865","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Completely new title\",\n  \"content\": \"Completely new content\",\n  \"category\": \"personal\",\n  \"isPinned\": false\n}"},"url":"http://localhost:5000/api/notes/:id","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"f2da8d76-e172-43ba-8864-359fd3f4e04f","type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"bf4df85b-b348-4b41-92ca-96dced4c3774","name":"5. Replace Note (PUT)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Completely new title\",\n  \"content\": \"Completely new content\",\n  \"category\": \"personal\",\n  \"isPinned\": false\n}"},"url":{"raw":"http://localhost:5000/api/notes/:id","host":["http://localhost:5000"],"path":["api","notes",":id"],"variable":[{"key":"id","value":"6a22db019b9cddb3c0df5d0b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"288"},{"key":"ETag","value":"W/\"120-9vhysOO40oBMOb/Gd0vXB7OLmSY\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:20:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Note replaced successfully\",\n    \"data\": {\n        \"_id\": \"6a22db019b9cddb3c0df5d0b\",\n        \"title\": \"Completely new title\",\n        \"content\": \"Completely new content\",\n        \"category\": \"personal\",\n        \"isPinned\": false,\n        \"createdAt\": \"2026-06-05T14:19:45.130Z\",\n        \"updatedAt\": \"2026-06-05T14:20:51.860Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"76160723-ec35-4bdc-952b-1d3517821865"},{"name":"6. Update Note (PATCH)","id":"afa1c8ce-1d07-43f9-9218-562c1abbca74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isPinned\": true\n}"},"url":"http://localhost:5000/api/notes/:id","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"cfda325d-f48a-48c2-9f11-6d84aed7e389","type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"93f6a04a-6986-4f96-8589-70d227aced8d","name":"6. Update Note (PATCH)","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isPinned\": true\n}"},"url":{"raw":"http://localhost:5000/api/notes/:id","host":["http://localhost:5000"],"path":["api","notes",":id"],"variable":[{"key":"id","value":"6a22db019b9cddb3c0df5d0b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"286"},{"key":"ETag","value":"W/\"11e-/M+A1fNXG04j7L4v/g0/bACx3Ys\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:21:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Note updated successfully\",\n    \"data\": {\n        \"_id\": \"6a22db019b9cddb3c0df5d0b\",\n        \"title\": \"Completely new title\",\n        \"content\": \"Completely new content\",\n        \"category\": \"personal\",\n        \"isPinned\": true,\n        \"createdAt\": \"2026-06-05T14:19:45.130Z\",\n        \"updatedAt\": \"2026-06-05T14:21:06.042Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"afa1c8ce-1d07-43f9-9218-562c1abbca74"},{"name":"7. Delete Note","id":"ae4ab8f2-8e26-4ff0-9e1f-0d16232cca25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:5000/api/notes/:id","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"27a4ff0d-c0a6-42e2-8644-7308ef5fc719","type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"9d7df620-4b63-477b-8ec6-2603d7126322","name":"7. Delete Note","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"http://localhost:5000/api/notes/:id","host":["http://localhost:5000"],"path":["api","notes",":id"],"variable":[{"key":"id","value":"6a22db019b9cddb3c0df5d0b"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"66"},{"key":"ETag","value":"W/\"42-RW7uFP1XrWJWLEvic7cWVb1sNh0\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:21:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Note deleted successfully\",\n    \"data\": null\n}"}],"_postman_id":"ae4ab8f2-8e26-4ff0-9e1f-0d16232cca25"},{"name":"8. Delete Notes Bulk","id":"31418ccc-4f2a-4fe3-bbf3-5844a685f89d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    \"64b1f2c3e4d5a6b7c8d9e0f1\",\n    \"64b1f2c3e4d5a6b7c8d9e0f2\"\n  ]\n}"},"url":"http://localhost:5000/api/notes/bulk","urlObject":{"path":["api","notes","bulk"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"3652ff58-571b-422c-8214-a16eba045f79","name":"8. Delete Notes Bulk","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    \"64b1f2c3e4d5a6b7c8d9e0f1\",\n    \"64b1f2c3e4d5a6b7c8d9e0f2\"\n  ]\n}"},"url":"http://localhost:5000/api/notes/bulk"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"69"},{"key":"ETag","value":"W/\"45-+CDc0WsmCNdTvGevJcjlFwkf300\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:21:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"0 notes deleted successfully\",\n    \"data\": null\n}"}],"_postman_id":"31418ccc-4f2a-4fe3-bbf3-5844a685f89d"}],"id":"f55c99a2-42e1-4c58-ac79-98609e0e6ce4","_postman_id":"f55c99a2-42e1-4c58-ac79-98609e0e6ce4","description":""},{"name":"2. Route Parameters","item":[{"name":"9. Get Notes by Category","id":"bab06f52-da96-4344-8e20-483738c77024","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/category/:category","urlObject":{"path":["api","notes","category",":category"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"b5201afc-e48a-4f9b-901a-e3e3df16c32d","type":"any","value":"work","key":"category"}]}},"response":[{"id":"b7663ffc-33f6-4b82-b77c-83ce914f83c8","name":"9. Get Notes by Category","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/category/:category","host":["http://localhost:5000"],"path":["api","notes","category",":category"],"variable":[{"key":"category","value":"work"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"279"},{"key":"ETag","value":"W/\"117-hrPFsZZQBjlHtD/DbSCuaK1722A\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:21:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes fetched for category: work\",\n    \"count\": 1,\n    \"data\": [\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        }\n    ]\n}"}],"_postman_id":"bab06f52-da96-4344-8e20-483738c77024"},{"name":"10. Get Notes by Status","id":"6b6598d0-661f-4f9e-8d1d-75d0fec0a733","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/status/:isPinned","urlObject":{"path":["api","notes","status",":isPinned"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"3a912c98-7e73-4e12-8f36-00c320e29fc9","type":"any","value":"true","key":"isPinned"}]}},"response":[{"id":"b4556541-fc1d-4849-9bc5-0d7523c5d41a","name":"10. Get Notes by Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/status/:isPinned","host":["http://localhost:5000"],"path":["api","notes","status",":isPinned"],"variable":[{"key":"isPinned","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"73"},{"key":"ETag","value":"W/\"49-FkqcjcXUIagVsoQDTRL3PA+a15E\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:22:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Fetched all pinned notes\",\n    \"count\": 0,\n    \"data\": []\n}"}],"_postman_id":"6b6598d0-661f-4f9e-8d1d-75d0fec0a733"},{"name":"11. Get Note Summary","id":"223d21ed-bba5-4859-91b7-9a3bf047e123","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/:id/summary","urlObject":{"path":["api","notes",":id","summary"],"host":["http://localhost:5000"],"query":[],"variable":[{"type":"any","value":"6a22dc7a9b9cddb3c0df5d0f","key":"id"}]}},"response":[{"id":"3b22bd73-4177-4883-92f1-acdb823d83c4","name":"11. Get Note Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/:id/summary","host":["http://localhost:5000"],"path":["api","notes",":id","summary"],"variable":[{"key":"id","value":"6a22dc7a9b9cddb3c0df5d0f"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"207"},{"key":"ETag","value":"W/\"cf-IGhcip+UDq4dW2L/KiGhvOnK42Q\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:26:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Note summary fetched successfully\",\n    \"data\": {\n        \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n        \"title\": \"Team standup agenda\",\n        \"category\": \"work\",\n        \"isPinned\": true,\n        \"createdAt\": \"2026-06-05T14:26:02.848Z\"\n    }\n}"}],"_postman_id":"223d21ed-bba5-4859-91b7-9a3bf047e123"}],"id":"f82951a8-3e45-43ea-a4ae-9ad6dab3d7cb","_postman_id":"f82951a8-3e45-43ea-a4ae-9ad6dab3d7cb","description":""},{"name":"3. Query Parameters","item":[{"name":"12. General Filter","id":"126daed3-b592-47dd-92aa-e4f51111cd07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/filter?category=work&isPinned=true","urlObject":{"path":["api","notes","filter"],"host":["http://localhost:5000"],"query":[{"key":"category","value":"work"},{"key":"isPinned","value":"true"}],"variable":[]}},"response":[{"id":"3d525d64-805c-4e2c-ac0a-5d2879f38d8b","name":"12. General Filter","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/filter?category=work&isPinned=true","host":["http://localhost:5000"],"path":["api","notes","filter"],"query":[{"key":"category","value":"work"},{"key":"isPinned","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"315"},{"key":"ETag","value":"W/\"13b-8ktZxFlnNEgV0cJRPncEHR0ZNl8\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:26:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes fetched successfully\",\n    \"count\": 1,\n    \"data\": [\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"126daed3-b592-47dd-92aa-e4f51111cd07"},{"name":"13. Filter Pinned Notes","id":"29e792ad-7616-4180-bfba-551543a24b5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/filter/pinned?category=work","urlObject":{"path":["api","notes","filter","pinned"],"host":["http://localhost:5000"],"query":[{"key":"category","value":"work"}],"variable":[]}},"response":[{"id":"30d8a8d3-b9e8-4204-8f25-51b19b2ade0a","name":"13. Filter Pinned Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/filter/pinned?category=work","host":["http://localhost:5000"],"path":["api","notes","filter","pinned"],"query":[{"key":"category","value":"work"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"322"},{"key":"ETag","value":"W/\"142-7YCjVik8Sz/mCXjqmi7cYZDtZQE\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:26:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Pinned notes fetched successfully\",\n    \"count\": 1,\n    \"data\": [\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"29e792ad-7616-4180-bfba-551543a24b5d"},{"name":"14. Filter by Category (Query)","id":"86e4d208-e8ef-4735-87d9-22659b7c0087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/filter/category?name=work","urlObject":{"path":["api","notes","filter","category"],"host":["http://localhost:5000"],"query":[{"key":"name","value":"work"}],"variable":[]}},"response":[{"id":"d366a5fb-e557-492f-b2b2-2ba82664f76b","name":"14. Filter by Category (Query)","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/filter/category?name=work","host":["http://localhost:5000"],"path":["api","notes","filter","category"],"query":[{"key":"name","value":"work"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"520"},{"key":"ETag","value":"W/\"208-cHRTo1b7PAYJARhGgYd+ncMeDvs\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:27:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes filtered by category: work\",\n    \"count\": 2,\n    \"data\": [\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        },\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"86e4d208-e8ef-4735-87d9-22659b7c0087"},{"name":"15. Filter by Date Range","id":"4a8444a7-8500-4747-9549-f207ff46510b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/filter/date-range?from=2024-01-01&to=2024-12-31","urlObject":{"path":["api","notes","filter","date-range"],"host":["http://localhost:5000"],"query":[{"key":"from","value":"2024-01-01"},{"key":"to","value":"2024-12-31"}],"variable":[]}},"response":[{"id":"356c82ad-f949-4179-83c4-0227e10cfe60","name":"15. Filter by Date Range","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/filter/date-range?from=2024-01-01&to=2024-12-31","host":["http://localhost:5000"],"path":["api","notes","filter","date-range"],"query":[{"key":"from","value":"2024-01-01"},{"key":"to","value":"2024-12-31"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"96"},{"key":"ETag","value":"W/\"60-1d//e7zZgmczMo3J9shPU35VerY\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:27:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes fetched between 2024-01-01 and 2024-12-31\",\n    \"count\": 0,\n    \"data\": []\n}"}],"_postman_id":"4a8444a7-8500-4747-9549-f207ff46510b"}],"id":"428200c3-e58d-4289-a695-d7851432894c","_postman_id":"428200c3-e58d-4289-a695-d7851432894c","description":""},{"name":"4. Pagination","item":[{"name":"16. Paginate All Notes","id":"69340375-f0ef-41b0-b888-79ddbbde9d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/paginate?page=1&limit=5","urlObject":{"path":["api","notes","paginate"],"host":["http://localhost:5000"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"3d43d815-94ba-4e3f-8c3f-e0e6692dc01a","name":"16. Paginate All Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/paginate?page=1&limit=5","host":["http://localhost:5000"],"path":["api","notes","paginate"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1010"},{"key":"ETag","value":"W/\"3f2-vpIsZj+eOdnKSXLyTgeizVllUcw\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:27:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes fetched successfully\",\n    \"data\": [\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0d\",\n            \"title\": \"Note two\",\n            \"content\": \"Content two\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0e\",\n            \"title\": \"Note three\",\n            \"content\": \"Content three\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        },\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ],\n    \"pagination\": {\n        \"total\": 4,\n        \"page\": 1,\n        \"limit\": 5,\n        \"totalPages\": 1,\n        \"hasNextPage\": false,\n        \"hasPrevPage\": false\n    }\n}"}],"_postman_id":"69340375-f0ef-41b0-b888-79ddbbde9d56"},{"name":"17. Paginate by Category","id":"c0c0f63d-f553-47cb-9784-79385048270b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/paginate/category/:category?page=1&limit=3","urlObject":{"path":["api","notes","paginate","category",":category"],"host":["http://localhost:5000"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"3"}],"variable":[{"id":"d9e7e63a-df72-4380-9da7-cab937012520","type":"any","value":"work","key":"category"}]}},"response":[{"id":"9949122f-2a24-4d6a-8152-d762cc568e8c","name":"17. Paginate by Category","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/paginate/category/:category?page=1&limit=3","host":["http://localhost:5000"],"path":["api","notes","paginate","category",":category"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"3"}],"variable":[{"key":"category","value":"work"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"609"},{"key":"ETag","value":"W/\"261-33UbhgoIn8OuVPGb6vFTq0DxQ+4\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:28:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes fetched for category: work\",\n    \"data\": [\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        },\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ],\n    \"pagination\": {\n        \"total\": 2,\n        \"page\": 1,\n        \"limit\": 3,\n        \"totalPages\": 1,\n        \"hasNextPage\": false,\n        \"hasPrevPage\": false\n    }\n}"}],"_postman_id":"c0c0f63d-f553-47cb-9784-79385048270b"}],"id":"5850148f-2a31-43f4-af68-230ee95bda26","_postman_id":"5850148f-2a31-43f4-af68-230ee95bda26","description":""},{"name":"5. Sorting","item":[{"name":"18. Sort All Notes","id":"f6b16bd5-dc53-4840-83e5-de3e33967ac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/sort?sortBy=title&order=asc","urlObject":{"path":["api","notes","sort"],"host":["http://localhost:5000"],"query":[{"key":"sortBy","value":"title"},{"key":"order","value":"asc"}],"variable":[]}},"response":[{"id":"afcae40f-c667-4f28-a6b0-35ab4bfd01e8","name":"18. Sort All Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/sort?sortBy=title&order=asc","host":["http://localhost:5000"],"path":["api","notes","sort"],"query":[{"key":"sortBy","value":"title"},{"key":"order","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"935"},{"key":"ETag","value":"W/\"3a7-kc0cAxBg8o23H9j6oQVV1S6W9a0\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:28:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Notes sorted by title in ascending order\",\n    \"count\": 4,\n    \"data\": [\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0c\",\n            \"title\": \"Note one\",\n            \"content\": \"Content one\",\n            \"category\": \"work\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.277Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.277Z\"\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0e\",\n            \"title\": \"Note three\",\n            \"content\": \"Content three\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        },\n        {\n            \"_id\": \"6a22db0b9b9cddb3c0df5d0d\",\n            \"title\": \"Note two\",\n            \"content\": \"Content two\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T14:19:55.278Z\",\n            \"updatedAt\": \"2026-06-05T14:19:55.278Z\"\n        },\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"f6b16bd5-dc53-4840-83e5-de3e33967ac1"},{"name":"19. Sort Pinned Notes","id":"57867a94-a3db-4b2d-b681-2f96089acedd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/sort/pinned?sortBy=title&order=desc","urlObject":{"path":["api","notes","sort","pinned"],"host":["http://localhost:5000"],"query":[{"key":"sortBy","value":"title"},{"key":"order","value":"desc"}],"variable":[]}},"response":[{"id":"c13232b2-0d7a-4764-9dc1-143ec077cb15","name":"19. Sort Pinned Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5000/api/notes/sort/pinned?sortBy=title&order=desc","host":["http://localhost:5000"],"path":["api","notes","sort","pinned"],"query":[{"key":"sortBy","value":"title"},{"key":"order","value":"desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"337"},{"key":"ETag","value":"W/\"151-IrEdhom8g/sJnKDfvExyDkopP4g\""},{"key":"Date","value":"Fri, 05 Jun 2026 14:28:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Pinned notes sorted by title in descending order\",\n    \"count\": 1,\n    \"data\": [\n        {\n            \"_id\": \"6a22dc7a9b9cddb3c0df5d0f\",\n            \"title\": \"Team standup agenda\",\n            \"content\": \"Discuss sprint blockers and deployment plan\",\n            \"category\": \"work\",\n            \"isPinned\": true,\n            \"createdAt\": \"2026-06-05T14:26:02.848Z\",\n            \"updatedAt\": \"2026-06-05T14:26:02.848Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"57867a94-a3db-4b2d-b681-2f96089acedd"}],"id":"7e0e15f2-388c-485a-b023-c54d1cb77548","_postman_id":"7e0e15f2-388c-485a-b023-c54d1cb77548","description":""}],"event":[{"listen":"prerequest","script":{"id":"298ce5fe-c87d-4690-90c3-492e6072909f","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"bcf92916-2b20-4aca-9d30-435c7d913e62","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":"http://localhost:5000"}]}