{"info":{"_postman_id":"46eb8292-09ec-46f9-af9e-cfc464cd324e","name":"Notes Management API","description":"<html><head></head><body><p>Postman Collection for Notes Management REST API - Node.js, Express, MongoDB assignment.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"50841514","collectionId":"46eb8292-09ec-46f9-af9e-cfc464cd324e","publishedId":"2sBXwpQCXH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-06-05T13:11:51.000Z"},"item":[{"name":"1. Create Note","id":"f7fd8be4-c36f-4ef2-8827-cd207ddf1f5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Team standup agenda\",\n  \"content\": \"Discuss sprint blockers and deployment plan\",\n  \"category\": \"work\",\n  \"isPinned\": true\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes","description":"<p>Creates a single note in the database.</p>\n","urlObject":{"path":["api","notes"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"4e4a2340-469e-4af9-8245-70225b30cc57","name":"1. Create Note","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Team standup agenda\",\n  \"content\": \"Discuss sprint blockers and deployment plan\",\n  \"category\": \"work\",\n  \"isPinned\": true\n}","options":{"raw":{"language":"json"}}},"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-M6KOT0Vp3ofJlumaTDCzCcA375E\""},{"key":"Date","value":"Fri, 05 Jun 2026 13:08:42 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\": \"6a22ca5a50bc5d1ff06b91c4\",\n        \"createdAt\": \"2026-06-05T13:08:42.062Z\",\n        \"updatedAt\": \"2026-06-05T13:08:42.062Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"f7fd8be4-c36f-4ef2-8827-cd207ddf1f5e"},{"name":"2. Create Notes Bulk","id":"8ab4ab94-a135-4597-bf64-c2d6b957c6d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"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}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/bulk","description":"<p>Creates multiple notes at once.</p>\n","urlObject":{"path":["api","notes","bulk"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"d3f02c63-ce7e-4894-887c-da80274a4374","name":"2. Create Notes Bulk","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"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}","options":{"raw":{"language":"json"}}},"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-ia18KDe0TSaL/MpvKyfUx2oxN+U\""},{"key":"Date","value":"Fri, 05 Jun 2026 13:08:52 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\": \"6a22ca6450bc5d1ff06b91c5\",\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T13:08:52.898Z\",\n            \"updatedAt\": \"2026-06-05T13:08:52.898Z\"\n        },\n        {\n            \"title\": \"Note two\",\n            \"content\": \"Content two\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"_id\": \"6a22ca6450bc5d1ff06b91c6\",\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T13:08:52.898Z\",\n            \"updatedAt\": \"2026-06-05T13:08:52.898Z\"\n        },\n        {\n            \"title\": \"Note three\",\n            \"content\": \"Content three\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"_id\": \"6a22ca6450bc5d1ff06b91c7\",\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T13:08:52.899Z\",\n            \"updatedAt\": \"2026-06-05T13:08:52.899Z\"\n        }\n    ]\n}"}],"_postman_id":"8ab4ab94-a135-4597-bf64-c2d6b957c6d0"},{"name":"3. Get All Notes","id":"1fc4cc3f-9a8a-4c91-a82a-fffa280b4cfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes","description":"<p>Retrieves all notes from the database.</p>\n","urlObject":{"path":["api","notes"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"5f4325cb-f675-4151-a97b-7b1c55346b1b","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":"854"},{"key":"ETag","value":"W/\"356-L2+l0w+7gY5kv2XYbgO2ITNCONc\""},{"key":"Date","value":"Fri, 05 Jun 2026 13:05:47 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\": \"6a22bfbe4991db98105e8e9b\",\n            \"title\": \"Bulk 1\",\n            \"content\": \"Content 1\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T12:23:26.630Z\",\n            \"updatedAt\": \"2026-06-05T12:23:26.630Z\"\n        },\n        {\n            \"_id\": \"6a22bfbe4991db98105e8e9c\",\n            \"title\": \"Bulk 2\",\n            \"content\": \"Content 2\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T12:23:26.630Z\",\n            \"updatedAt\": \"2026-06-05T12:23:26.630Z\"\n        },\n        {\n            \"_id\": \"6a22bfe43234bb816efda8a9\",\n            \"title\": \"Bulk 1\",\n            \"content\": \"Content 1\",\n            \"category\": \"study\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T12:24:04.761Z\",\n            \"updatedAt\": \"2026-06-05T12:24:04.761Z\"\n        },\n        {\n            \"_id\": \"6a22bfe43234bb816efda8aa\",\n            \"title\": \"Bulk 2\",\n            \"content\": \"Content 2\",\n            \"category\": \"personal\",\n            \"isPinned\": false,\n            \"__v\": 0,\n            \"createdAt\": \"2026-06-05T12:24:04.761Z\",\n            \"updatedAt\": \"2026-06-05T12:24:04.761Z\"\n        }\n    ]\n}"}],"_postman_id":"1fc4cc3f-9a8a-4c91-a82a-fffa280b4cfe"},{"name":"4. Get Note by ID","id":"fd50b554-f6ad-49eb-99ee-4c6711d3b885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5000/api/notes/:id","description":"<p>Retrieves a single note by its ID.</p>\n","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"description":{"content":"<p>Note ObjectId</p>\n","type":"text/plain"},"type":"any","value":"6a22ca5a50bc5d1ff06b91c4","key":"id"}]}},"response":[{"id":"db849d46-f816-4cfe-8baa-46563ead37f0","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":"6a22ca5a50bc5d1ff06b91c4","description":"Note ObjectId"}]}},"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-DoKC2ZPLJ3/Xg4BUiiWNaDOHtqw\""},{"key":"Date","value":"Fri, 05 Jun 2026 13:09:34 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\": \"6a22ca5a50bc5d1ff06b91c4\",\n        \"title\": \"Team standup agenda\",\n        \"content\": \"Discuss sprint blockers and deployment plan\",\n        \"category\": \"work\",\n        \"isPinned\": true,\n        \"createdAt\": \"2026-06-05T13:08:42.062Z\",\n        \"updatedAt\": \"2026-06-05T13:08:42.062Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"fd50b554-f6ad-49eb-99ee-4c6711d3b885"},{"name":"5. Replace Note (PUT)","id":"e6c4c523-17ae-44af-a10b-bcaeca4f6089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Completely new title\",\n  \"content\": \"Completely new content\",\n  \"category\": \"personal\",\n  \"isPinned\": false\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/:id","description":"<p>Replaces the entire note document. Omitted fields will reset to their defaults.</p>\n","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"7ed0cda8-be65-48e1-b971-3fb6ba1d31d8","description":{"content":"<p>Note ObjectId</p>\n","type":"text/plain"},"type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"c248c339-6151-4326-9836-70e6faca01d2","name":"5. Replace Note (PUT)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Completely new title\",\n  \"content\": \"Completely new content\",\n  \"category\": \"personal\",\n  \"isPinned\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5000/api/notes/:id","host":["http://localhost:5000"],"path":["api","notes",":id"],"variable":[{"key":"id","value":"6a22ca5a50bc5d1ff06b91c4","description":"Note ObjectId"}]}},"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-zCcqVXKSaKIIXLFO3UjmY0MBIa4\""},{"key":"Date","value":"Fri, 05 Jun 2026 13:09:56 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\": \"6a22ca5a50bc5d1ff06b91c4\",\n        \"title\": \"Completely new title\",\n        \"content\": \"Completely new content\",\n        \"category\": \"personal\",\n        \"isPinned\": false,\n        \"createdAt\": \"2026-06-05T13:08:42.062Z\",\n        \"updatedAt\": \"2026-06-05T13:09:56.729Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"e6c4c523-17ae-44af-a10b-bcaeca4f6089"},{"name":"6. Update Note (PATCH)","id":"c40f0cb4-b907-4118-943f-1f2e6c5b735f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"isPinned\": true\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/:id","description":"<p>Updates only the specific fields provided in the request body.</p>\n","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"eae73ad3-fbb8-4ad8-b2a2-471cabbe5093","description":{"content":"<p>Note ObjectId</p>\n","type":"text/plain"},"type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"6646e05f-5fe7-4705-a9ba-2529dc0ea861","name":"6. Update Note (PATCH)","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"isPinned\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://localhost:5000/api/notes/:id","host":["http://localhost:5000"],"path":["api","notes",":id"],"variable":[{"key":"id","value":"6a22ca5a50bc5d1ff06b91c4","description":"Note ObjectId"}]}},"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-trLdW+/q7P/XmN772wMMFYcHaP4\""},{"key":"Date","value":"Fri, 05 Jun 2026 13:10:15 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\": \"6a22ca5a50bc5d1ff06b91c4\",\n        \"title\": \"Completely new title\",\n        \"content\": \"Completely new content\",\n        \"category\": \"personal\",\n        \"isPinned\": true,\n        \"createdAt\": \"2026-06-05T13:08:42.062Z\",\n        \"updatedAt\": \"2026-06-05T13:10:15.425Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"c40f0cb4-b907-4118-943f-1f2e6c5b735f"},{"name":"7. Delete Note","id":"7d5fc1c9-905b-44ea-be03-9abb1cc2948d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:5000/api/notes/:id","description":"<p>Deletes a single note from the database.</p>\n","urlObject":{"path":["api","notes",":id"],"host":["http://localhost:5000"],"query":[],"variable":[{"id":"057e798d-78d5-4a29-80b2-73312d3077b4","description":{"content":"<p>Note ObjectId</p>\n","type":"text/plain"},"type":"any","value":"64b1f2c3e4d5a6b7c8d9e0f1","key":"id"}]}},"response":[{"id":"83ca4ffe-9cec-4c92-bfb6-574b6458abde","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":"6a22ca5a50bc5d1ff06b91c4","description":"Note ObjectId"}]}},"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 13:10:29 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":"7d5fc1c9-905b-44ea-be03-9abb1cc2948d"},{"name":"8. Delete Notes Bulk","id":"9da1c50c-9806-4ccb-aab8-5ff8cf56cbdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    \"64b1f2c3e4d5a6b7c8d9e0f1\",\n    \"64b1f2c3e4d5a6b7c8d9e0f2\",\n    \"64b1f2c3e4d5a6b7c8d9e0f3\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/api/notes/bulk","description":"<p>Deletes multiple notes from the database by their IDs.</p>\n","urlObject":{"path":["api","notes","bulk"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[{"id":"6315b26a-9d20-4d71-b169-454186078315","name":"8. Delete Notes Bulk","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    \"64b1f2c3e4d5a6b7c8d9e0f1\",\n    \"64b1f2c3e4d5a6b7c8d9e0f2\",\n    \"64b1f2c3e4d5a6b7c8d9e0f3\"\n  ]\n}","options":{"raw":{"language":"json"}}},"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 13:10:43 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":"9da1c50c-9806-4ccb-aab8-5ff8cf56cbdc"}],"event":[{"listen":"prerequest","script":{"id":"da61b03d-0f63-4f22-a05a-fb5cca845c60","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"ee68f921-c56b-4062-a484-002204a35aeb","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":"http://localhost:5000"}]}