{"info":{"_postman_id":"439877b6-d148-47da-bc8c-95384fe8a945","name":"NodeJs API","description":"<html><head></head><body><p>This collection contains the API endpoints for a Node.js-based user management and authentication system. It covers the full lifecycle of user interactions, from account creation to session management, and is organized under the <code>/api/v1/users</code> base path.</p>\n<p><strong>Key capabilities included:</strong></p>\n<ul>\n<li><strong>User Registration</strong> — Create a new user account via <code>POST /api/v1/users/register</code>.</li>\n<li><strong>User Login</strong> — Authenticate a user and obtain a session token via <code>POST /api/v1/users/login</code>.</li>\n<li><strong>Get User Profile</strong> — Retrieve the authenticated user's profile details via <code>GET /api/v1/users/profile</code>.</li>\n<li><strong>Update Profile</strong> — Modify user profile information via <code>PUT /api/v1/users/update-profile</code>.</li>\n<li><strong>Update Password</strong> — Change the user's password securely via <code>PATCH /api/v1/users/update-password</code>.</li>\n<li><strong>User Logout</strong> — End the user's session via <code>POST /api/v1/users/logout</code>.</li>\n</ul>\n<p>Most endpoints require authentication. Use the <code>JWT_TOKEN</code> environment variable to store and pass the bearer token obtained after login. The <code>Base_URL</code> environment variable should be set to the appropriate server URL before running requests.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"41845512","collectionId":"439877b6-d148-47da-bc8c-95384fe8a945","publishedId":"2sBXqJMMMn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-04-30T10:17:36.000Z"},"item":[{"name":"User","item":[{"name":"User Register","id":"a123f04d-264f-458d-9b69-e36095c4ab6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"fullName","value":"Aswanth KT","type":"text","uuid":"09f91467-f86d-48e2-916e-e31af214f805"},{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"2a2dbdce-3212-4c28-a7eb-06800233be52"},{"key":"password","value":"12345","type":"text","uuid":"46dca78b-3f88-4292-b1b7-a3310454cc4e"}]},"url":"/api/v1/users/register","urlObject":{"path":["api","v1","users","register"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"42266f63-9c65-494d-add9-f05efdb9b05c","name":"User Register-400","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"fullName","value":" ","type":"text","uuid":"09f91467-f86d-48e2-916e-e31af214f805"},{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"2a2dbdce-3212-4c28-a7eb-06800233be52"},{"key":"password","value":"12345","type":"text","uuid":"46dca78b-3f88-4292-b1b7-a3310454cc4e"}]},"url":"/api/v1/users/register"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"54"},{"key":"ETag","value":"W/\"36-/frYBghwKKovwm6wg/KTPHVMFY0\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:00:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"All fields are required!\"\n}"},{"id":"91dabf47-d953-44f6-bd62-b4548f873ac8","name":"User Register-409","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"fullName","value":"Aswanth KT","type":"text","uuid":"09f91467-f86d-48e2-916e-e31af214f805"},{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"2a2dbdce-3212-4c28-a7eb-06800233be52"},{"key":"password","value":"12345","type":"text","uuid":"46dca78b-3f88-4292-b1b7-a3310454cc4e"}]},"url":"/api/v1/users/register"},"status":"Conflict","code":409,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"71"},{"key":"ETag","value":"W/\"47-LilCjNHpbtXULGB5Ff1VdSHsHzc\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:01:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"You have already an account in this email\"\n}"},{"id":"263f05da-5338-45fe-aee4-3ea48c3ec471","name":"User Register-201","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"fullName","value":"Aswanth KT","type":"text","uuid":"09f91467-f86d-48e2-916e-e31af214f805"},{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"2a2dbdce-3212-4c28-a7eb-06800233be52"},{"key":"password","value":"12345","type":"text","uuid":"46dca78b-3f88-4292-b1b7-a3310454cc4e"}]},"url":"/api/v1/users/register"},"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":"310"},{"key":"ETag","value":"W/\"136-hpF/3RecVCs5JBiMCk6ckrNmQbo\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:05:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"User register successfull\",\n    \"user\": {\n        \"fullName\": \"Aswanth KT\",\n        \"email\": \"aswanthkt@gmail.com\",\n        \"password\": \"$2b$12$IoKUmWNKVz1dLoJnqaQ.4uj6HLL4ma/L9BIm9einqkQKzYjuyYqlu\",\n        \"_id\": \"69f0f6d038c6029aff6a6289\",\n        \"createdAt\": \"2026-04-28T18:05:04.159Z\",\n        \"updatedAt\": \"2026-04-28T18:05:04.159Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"a123f04d-264f-458d-9b69-e36095c4ab6f"},{"name":"User Login","id":"e7214918-2b58-46ad-ade4-922482d75b3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"password","value":"12345","type":"text","uuid":"1407339f-229b-49df-bf25-1df726cbf90a"}]},"url":"/api/v1/users/login","urlObject":{"path":["api","v1","users","login"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"eefae919-4d76-4ac8-8cc1-12055307b0ba","name":"User Login-400","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"password","value":"12345","type":"text","uuid":"1407339f-229b-49df-bf25-1df726cbf90a"}]},"url":"/api/v1/users/login"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"54"},{"key":"ETag","value":"W/\"36-/frYBghwKKovwm6wg/KTPHVMFY0\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:08:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"All fields are required!\"\n}"},{"id":"d9e40084-e17f-49cd-b099-c65b10754f0f","name":"Email validation","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanthkt.gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"password","value":"12345","type":"text","uuid":"1407339f-229b-49df-bf25-1df726cbf90a"}]},"url":"/api/v1/users/login"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"47"},{"key":"ETag","value":"W/\"2f-Mv+Xh5sQ1I84DXVT9rTe5rmtARE\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:08:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Enter valid email\"\n}"},{"id":"4d22c649-81dd-4e58-b55f-622e981d6123","name":"Verify password","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"password","value":"1234","type":"text","uuid":"1407339f-229b-49df-bf25-1df726cbf90a"}]},"url":"/api/v1/users/login"},"status":"Unauthorized","code":401,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"58"},{"key":"ETag","value":"W/\"3a-fkOCQAqVT8Ghd+OoLFw36R215DQ\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:09:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Invalid username or password\"\n}"},{"id":"53f321ef-f17c-431f-98ad-91508cd53f91","name":"User Login-200","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"password","value":"12345","type":"text","uuid":"1407339f-229b-49df-bf25-1df726cbf90a"}]},"url":"/api/v1/users/login"},"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":"228"},{"key":"ETag","value":"W/\"e4-d9PmyMFV0SQSLNOXOmLJvuNI0i8\""},{"key":"Date","value":"Tue, 28 Apr 2026 18:09:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Login successfull\",\n    \"user\": {\n        \"_id\": \"69f0f6d038c6029aff6a6289\",\n        \"fullName\": \"Aswanth KT\",\n        \"email\": \"aswanthkt@gmail.com\",\n        \"createdAt\": \"2026-04-28T18:05:04.159Z\",\n        \"updatedAt\": \"2026-04-28T18:05:04.159Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"e7214918-2b58-46ad-ade4-922482d75b3e"},{"name":"Get User","id":"eff7e757-ee2e-43e8-acd0-2d1c433e5b5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/users/profile","urlObject":{"path":["api","v1","users","profile"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"451df08e-d070-4a21-a242-0bbdc3a9d21e","name":"Get User-200","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/users/profile"},"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":"223"},{"key":"ETag","value":"W/\"df-oYAzErH6COV7+PxcN3SgkiDNKZY\""},{"key":"Date","value":"Tue, 28 Apr 2026 19:08:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"User fetched\",\n    \"user\": {\n        \"_id\": \"69f0f6d038c6029aff6a6289\",\n        \"fullName\": \"Aswanth KT\",\n        \"email\": \"aswanthkt@gmail.com\",\n        \"createdAt\": \"2026-04-28T18:05:04.159Z\",\n        \"updatedAt\": \"2026-04-28T18:05:04.159Z\",\n        \"__v\": 0\n    }\n}"},{"id":"2fe425de-9a2d-481d-8e46-dbfe462b1181","name":"Get User-401","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/users/profile"},"status":"Unauthorized","code":401,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"43"},{"key":"ETag","value":"W/\"2b-TPEbKrcENo85+ZAQha51rKztLxA\""},{"key":"Date","value":"Tue, 28 Apr 2026 19:09:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Not logged in\"\n}"}],"_postman_id":"eff7e757-ee2e-43e8-acd0-2d1c433e5b5b"},{"name":"Update Profile","id":"9c35edd1-e3fb-474f-90cf-6bf18551ed95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanth@gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"fullName","value":"Aswanth","type":"text","uuid":"48a99776-0557-4dc4-b3bd-1f04f915f3cb"}]},"url":"/api/v1/users/update-profile","urlObject":{"path":["api","v1","users","update-profile"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f9589a27-92bf-4f1e-be82-16a2d20b7b4a","name":"Update Profile-400","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"fullName","value":"","type":"text","uuid":"48a99776-0557-4dc4-b3bd-1f04f915f3cb"}]},"url":"/api/v1/users/update-profile"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"56"},{"key":"ETag","value":"W/\"38-19dL7Ce5dC7HbkNjwtQKGf4znYA\""},{"key":"Date","value":"Wed, 29 Apr 2026 10:38:45 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Provide at least one field\"\n}"},{"id":"ed1e3127-0001-43a1-9084-b9435b1e801b","name":"Update Profile-200","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanth@gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"fullName","value":"Aswanth","type":"text","uuid":"48a99776-0557-4dc4-b3bd-1f04f915f3cb"}]},"url":"/api/v1/users/update-profile"},"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":"236"},{"key":"ETag","value":"W/\"ec-1bz31xHvdeqqiQR7nxMXVBwbFa4\""},{"key":"Date","value":"Wed, 29 Apr 2026 10:40:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Profile details updated\",\n    \"updatedUser\": {\n        \"_id\": \"69f0f6d038c6029aff6a6289\",\n        \"fullName\": \"Aswanth\",\n        \"email\": \"aswanth@gmail.com\",\n        \"createdAt\": \"2026-04-28T18:05:04.159Z\",\n        \"updatedAt\": \"2026-04-29T10:40:16.697Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"9c35edd1-e3fb-474f-90cf-6bf18551ed95"},{"name":"User Logout","id":"ced01486-4160-4258-aa5f-17fce6cf4793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/users/logout","urlObject":{"path":["api","v1","users","logout"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"74c337d9-7d18-4726-93ad-375f0b22b358","name":"User Logout-200","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"aswanthkt@gmail.com","type":"text","uuid":"97cc7313-e7aa-4131-9ac8-9c848abd796c"},{"key":"password","value":"12345","type":"text","uuid":"1407339f-229b-49df-bf25-1df726cbf90a"}]},"url":"/api/v1/users/logout"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Set-Cookie","value":"connect.sid=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"37"},{"key":"ETag","value":"W/\"25-71uUsMgZY3FdZp9j1h5YMrBIOgg\""},{"key":"Date","value":"Thu, 30 Apr 2026 04:55:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Logged out successfully\"\n}"}],"_postman_id":"ced01486-4160-4258-aa5f-17fce6cf4793"},{"name":"UpdatePassword","id":"8b80d746-ceee-445a-9346-e1a2ebfdb657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"oldPassword\": \"12345\",\r\n    \"newPassword\": \"54321\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/users/update-password","urlObject":{"path":["api","v1","users","update-password"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f2fb639e-dccc-4251-ac9f-bd2159440273","name":"UpdatePassword-401","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"oldPassword\": \"12345\",\r\n    \"newPassword\": \"54321\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/users/update-password"},"status":"Unauthorized","code":401,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"50"},{"key":"ETag","value":"W/\"32-tBuXvmq6n2+t2Ag5KASWwDfaM8A\""},{"key":"Date","value":"Wed, 29 Apr 2026 17:50:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Unauthorized request\"\n}"},{"id":"81498fd8-3839-4678-ab37-4cda262a0602","name":"UpdatePassword-invalid credentials","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"oldPassword\": \"dsftg\",\r\n    \"newPassword\": \"54321\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/users/update-password"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"49"},{"key":"ETag","value":"W/\"31-VmptvJVCxgMiCaKMQdd9IkNBIdc\""},{"key":"Date","value":"Wed, 29 Apr 2026 18:00:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Invalid credentials\"\n}"},{"id":"fc816824-d60f-4ca6-989e-ac0f50d93b84","name":"UpdatePassword-400","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"oldPassword\": \"\",\r\n    \"newPassword\": \"54321\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/users/update-password"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"53"},{"key":"ETag","value":"W/\"35-D/zQy1+0oieOdZgIEpLcJj7AK70\""},{"key":"Date","value":"Wed, 29 Apr 2026 18:02:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"message\": \"Password field required\"\n}"},{"id":"4aff74f9-5297-420e-81fe-2fd846213f15","name":"UpdatePassword-200","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"oldPassword\": \"12345\",\r\n    \"newPassword\": \"54321\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/users/update-password"},"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":"57"},{"key":"ETag","value":"W/\"39-Ez8F2Q8aROvCzsNx/q27ZXyjGN4\""},{"key":"Date","value":"Wed, 29 Apr 2026 18:02:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Password change successfully\"\n}"}],"_postman_id":"8b80d746-ceee-445a-9346-e1a2ebfdb657"}],"id":"757e94a0-6872-4e90-9e96-d837397640f4","_postman_id":"757e94a0-6872-4e90-9e96-d837397640f4","description":""}],"event":[{"listen":"prerequest","script":{"id":"d9142463-4553-4ef9-be25-1594e7f41905","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"e2a648ad-c3b2-403a-9066-d08dc19926ef","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"BASE_URL","value":""}]}