{"info":{"_postman_id":"24e8fe73-0f79-4469-9cb1-d9075b240c02","name":"Movies API","description":"<html><head></head><body><h3 id=\"introduction\">Introduction</h3>\n<p>Welcome to the Collection of Movies API, a robust and versatile RESTful web service designed to empower developers and movie enthusiasts to seamlessly interact with a comprehensive database of cinematic information. Crafted with MongoDB as the backend database and powered by Express.js, this API provides an intuitive set of endpoints for effortlessly managing and exploring an extensive collection of movie records.</p>\n<h4 id=\"key-features\">Key Features</h4>\n<ul>\n<li><p><strong>MongoDB Database:</strong> Our API leverages MongoDB database system, to efficiently store and organize movie data. MongoDB's flexibility allows for the dynamic storage of diverse movie attributes, accommodating a wide range of movie-related information.</p>\n</li>\n<li><p><strong>Express.js Framework:</strong> Built on the robust Express.js framework for Node.js, our API offers a high-performance, scalable, and reliable backend infrastructure. It effectively handles HTTP requests, simplifies routing, and ensures rapid response times.</p>\n</li>\n</ul>\n<h4 id=\"explore-movie-data\">Explore Movie Data</h4>\n<p>Uncover a treasure trove of cinematic insights with the Collection of Movies API:</p>\n<ul>\n<li><p>Retrieve a curated list of all available movies with ease.</p>\n</li>\n<li><p>Delve deep into the details of a specific movie by searching with its unique identifier.</p>\n</li>\n<li><p>Seamlessly add new movie records to the collection.</p>\n</li>\n<li><p>Update existing movie records to keep information accurate and up-to-date.</p>\n</li>\n<li><p>Remove movies from the collection when they're no longer needed.</p>\n</li>\n</ul>\n<h4 id=\"secure-and-customizable\">Secure and Customizable</h4>\n<p>To meet the diverse needs of your application, the API offers customizable authentication and authorization mechanisms. Safeguard your data by requiring user authentication and authorization tokens for specific endpoints. Implement role-based access control to tailor access permissions to different user roles.</p>\n<h4 id=\"error-handling-and-documentation\">Error Handling and Documentation</h4>\n<p>Our API is designed with robust error handling to provide clear and informative error messages along with appropriate HTTP status codes, ensuring a smooth development experience. For comprehensive guidance on how to interact with the API, including request/response formats and practical usage examples, refer to our detailed API documentation.</p>\n<p>Begin your journey into the world of movies with the Collection of Movies API. Explore, create, update, and manage movie data effortlessly, empowering your applications with rich and dynamic movie-related content.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"21538013","collectionId":"24e8fe73-0f79-4469-9cb1-d9075b240c02","publishedId":"2s9YC1Wa79","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"007BB5"},"publishDate":"2023-09-10T06:10:01.000Z"},"item":[{"name":"Movie management","item":[{"name":"Add New Movies","item":[{"name":"Create New Movie","id":"cd099919-7706-4cee-b055-af29143b0e02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Bahubali 2\",\r\n    \"releaseYear\": 2018,\r\n    \"genre\": [\"Action\", \"Fantasy\"],\r\n    \"director\": \"S. S. Rajamouli\",\r\n    \"actors\": [\"Prabhas\", \"Anushka Shetty\"],\r\n    \"language\": \"Telugu\",\r\n    \"country\": \"India\",\r\n    \"rating\": 8.1,\r\n    \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\r\n    \"awards\": \"National Film Award\",\r\n    \"posterUrl\": \"https://example.com/poster2.jpg\",\r\n    \"trailerUrl\": \"https://example.com/trailer2.mp4\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/movies/v1","description":"<p>This API call creates new movie in the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[]}},"response":[{"id":"c9c419a8-1d73-486c-9894-dea7ba9c657a","name":"Create New Movie","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Bahubali 2\",\r\n    \"releaseYear\": 2018,\r\n    \"genre\": [\"Action\", \"Fantasy\"],\r\n    \"director\": \"S. S. Rajamouli\",\r\n    \"actors\": [\"Prabhas\", \"Anushka Shetty\"],\r\n    \"language\": \"Telugu\",\r\n    \"country\": \"India\",\r\n    \"rating\": 8.1,\r\n    \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\r\n    \"awards\": \"National Film Award\",\r\n    \"posterUrl\": \"https://example.com/poster2.jpg\",\r\n    \"trailerUrl\": \"https://example.com/trailer2.mp4\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/movies/v1"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"551"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:50:51 GMT"},{"key":"Etag","value":"W/\"227-gVSvDCJ0IbTyrsktqow6FnSxepQ\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7423248; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Movie added\",\n    \"movie\": {\n        \"title\": \"Bahubali 2\",\n        \"releaseYear\": 2018,\n        \"genre\": [\n            \"Action\",\n            \"Fantasy\"\n        ],\n        \"director\": \"S. S. Rajamouli\",\n        \"actors\": [\n            \"Prabhas\",\n            \"Anushka Shetty\"\n        ],\n        \"language\": \"Telugu\",\n        \"country\": \"India\",\n        \"rating\": 8.1,\n        \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n        \"awards\": \"National Film Award\",\n        \"posterUrl\": \"https://example.com/poster2.jpg\",\n        \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n        \"_id\": \"64feb8c72516f1a58354e25b\",\n        \"reviews\": [],\n        \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n        \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"cd099919-7706-4cee-b055-af29143b0e02"}],"id":"f5539380-227b-4aa0-9cc3-7feb32c8da52","description":"<p>This is collection of APIs used for creation of new movies in the DB</p>\n","_postman_id":"f5539380-227b-4aa0-9cc3-7feb32c8da52"},{"name":"Get Movies From DB","item":[{"name":"Get Movies by Actor Name","id":"362bedd4-ac7d-47fc-a178-bbbe24fc228e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/actor/:actorName","description":"<p>This API call gets movies by actor name from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1","actor",":actorName"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"Prabhas","key":"actorName"}]}},"response":[{"id":"f17f29fc-a35d-41d8-8eb6-eef4e9bd5fb8","name":"Get Movies by Actor Name","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/actor/:actorName","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1","actor",":actorName"],"variable":[{"key":"actorName","value":"Prabhas"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"3834"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:52:58 GMT"},{"key":"Etag","value":"W/\"efa-O4uV/8396ZnfV6cG2lJmglQJhUw\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7423115; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"All movies retrieved by actor name\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feae7a081c4137354f358e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64feb060ea98b6278fbee825\"\n                }\n            ],\n            \"createdAt\": \"2023-09-11T06:06:50.852Z\",\n            \"updatedAt\": \"2023-09-11T06:14:56.109Z\",\n            \"__v\": 1\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"362bedd4-ac7d-47fc-a178-bbbe24fc228e"},{"name":"Get Movies by Director Name","id":"93ed6599-fa49-45e4-a3d8-e6c6c678fe89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/director/:directorName","description":"<p>This API call gets movies by director name from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1","director",":directorName"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"S. S. Rajamouli","key":"directorName"}]}},"response":[{"id":"e0b2b97d-37ae-4ed0-88c1-83a03488e83d","name":"Get Movies by Director Name","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/director/:directorName","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1","director",":directorName"],"variable":[{"key":"directorName","value":"S. S. Rajamouli"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"3837"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:55:00 GMT"},{"key":"Etag","value":"W/\"efd-HqDwvqpNOgVyqfWfku6Vh4JsGW4\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422992; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"All movies retrieved by director name\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feae7a081c4137354f358e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64feb060ea98b6278fbee825\"\n                }\n            ],\n            \"createdAt\": \"2023-09-11T06:06:50.852Z\",\n            \"updatedAt\": \"2023-09-11T06:14:56.109Z\",\n            \"__v\": 1\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"93ed6599-fa49-45e4-a3d8-e6c6c678fe89"},{"name":"Get Movie by Title","id":"f4ecdced-bc86-4199-8dac-41d3e879b133","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/:title","description":"<p>This API call gets movie by title from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1",":title"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"Bahubali: The Beginning","key":"title"}]}},"response":[{"id":"106b3ccb-9d41-4058-8483-9ef6b376fd3b","name":"Get Movie by Title","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/:title","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1",":title"],"variable":[{"key":"title","value":"Bahubali: The Beginning"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"638"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:57:04 GMT"},{"key":"Etag","value":"W/\"27e-xMlijQb5ZCp8fvzx/DYj7443kBk\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422869; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Movie retrieved \",\n    \"movies\": {\n        \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n        \"title\": \"Bahubali: The Beginning\",\n        \"releaseYear\": 2015,\n        \"genre\": [\n            \"Action\",\n            \"Fantasy\"\n        ],\n        \"director\": \"S. S. Rajamouli\",\n        \"actors\": [\n            \"Prabhas\",\n            \"Anushka Shetty\"\n        ],\n        \"language\": \"Telugu\",\n        \"country\": \"India\",\n        \"rating\": 8.1,\n        \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n        \"awards\": \"National Film Award\",\n        \"posterUrl\": \"https://example.com/poster2.jpg\",\n        \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n        \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n        \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n        \"__v\": 1,\n        \"reviews\": [\n            {\n                \"user\": \"64fc06f8e1f25de880d8235e\",\n                \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f4ecdced-bc86-4199-8dac-41d3e879b133"},{"name":"Get All Movies","id":"f58afc17-4dd9-4287-900c-cdb7683bd438","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1","description":"<p>This API call gets all movies from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[]}},"response":[{"id":"579c2dd6-e4b0-4b1e-aaa5-7e3b9e2e1922","name":"Get All Movies","originalRequest":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"9934"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:57:45 GMT"},{"key":"Etag","value":"W/\"26ce-AuMmH3L6HfYZXFiaxsLWg9FMHfo\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422827; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"All movies retrieved\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83ad933dc93a65480c02c\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.367Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.367Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02e\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.599Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.599Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c030\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.833Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.833Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c032\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.066Z\",\n            \"updatedAt\": \"2023-09-06T08:39:54.066Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c036\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.6,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.554Z\",\n            \"updatedAt\": \"2023-09-06T10:45:03.382Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2a63c8933bfe46eb8c\",\n            \"title\": \"Dilwale Dulhania Le Jayenge\",\n            \"releaseYear\": 1995,\n            \"genre\": [\n                \"Romance\",\n                \"Drama\"\n            ],\n            \"director\": \"Aditya Chopra\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.1,\n            \"plot\": \"A young man and woman fall in love on a Europe trip.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster1.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer1.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:14.220Z\",\n            \"updatedAt\": \"2023-09-06T08:41:14.220Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb91\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.333Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.333Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb93\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.577Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.577Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb95\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.817Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.817Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb97\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.065Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.065Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb99\",\n            \"title\": \"3 Idiots\",\n            \"releaseYear\": 2009,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.4,\n            \"plot\": \"Two friends search for their long-lost college buddy.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster7.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer7.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.304Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.304Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb9b\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.9,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.540Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.540Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feae7a081c4137354f358e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64feb060ea98b6278fbee825\"\n                }\n            ],\n            \"createdAt\": \"2023-09-11T06:06:50.852Z\",\n            \"updatedAt\": \"2023-09-11T06:14:56.109Z\",\n            \"__v\": 1\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"f58afc17-4dd9-4287-900c-cdb7683bd438"},{"name":"Get Movies by Genre","id":"935995f1-81a4-4111-a176-e67e6fac2fe2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/genre/:genreName","description":"<p>This API call gets movies by genre from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1","genre",":genreName"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"Action","key":"genreName"}]}},"response":[{"id":"994b8f35-14fa-4c85-b4d6-d7569bf7b90a","name":"Get Movies by Genre","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/genre/:genreName","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1","genre",":genreName"],"variable":[{"key":"genreName","value":"Action"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"3829"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:58:14 GMT"},{"key":"Etag","value":"W/\"ef5-V/xpXuH0jHxZEzGEywWEhfzw/78\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422799; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"All movies retrieved by genre\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feae7a081c4137354f358e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64feb060ea98b6278fbee825\"\n                }\n            ],\n            \"createdAt\": \"2023-09-11T06:06:50.852Z\",\n            \"updatedAt\": \"2023-09-11T06:14:56.109Z\",\n            \"__v\": 1\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"935995f1-81a4-4111-a176-e67e6fac2fe2"}],"id":"ddb6b703-051d-42e0-a942-b0a8d5b81467","description":"<p>This is collection of APIs used for fetching data of movies from DB</p>\n","_postman_id":"ddb6b703-051d-42e0-a942-b0a8d5b81467"},{"name":"Update and Delete","item":[{"name":"Update Movie Details by Id","id":"f4a7489c-4428-4630-b3ed-bba3dfa57124","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Updated Movie Title\",\r\n  \"releaseYear\": 2023\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId","description":"<p>This API call updates movie by Id in the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1",":movieId"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"64fc06f8e1f25de880d8235e","key":"movieId"}]}},"response":[{"id":"3b497307-555b-46a9-a791-3ecdd099d426","name":"Update Movie Details by Id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Updated Movie Title\",\r\n  \"releaseYear\": 2023\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1",":movieId"],"variable":[{"key":"movieId","value":"64fc06f8e1f25de880d8235e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"9926"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 06:58:37 GMT"},{"key":"Etag","value":"W/\"26c6-xhb7rh4cVxyqOabwvHjwLu8cwA4\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422775; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Movie updated\",\n    \"movie\": [\n        {\n            \"_id\": \"64f83ad933dc93a65480c02c\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.367Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.367Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02e\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.599Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.599Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c030\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.833Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.833Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c032\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.066Z\",\n            \"updatedAt\": \"2023-09-06T08:39:54.066Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c036\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.6,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.554Z\",\n            \"updatedAt\": \"2023-09-06T10:45:03.382Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2a63c8933bfe46eb8c\",\n            \"title\": \"Dilwale Dulhania Le Jayenge\",\n            \"releaseYear\": 1995,\n            \"genre\": [\n                \"Romance\",\n                \"Drama\"\n            ],\n            \"director\": \"Aditya Chopra\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.1,\n            \"plot\": \"A young man and woman fall in love on a Europe trip.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster1.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer1.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:14.220Z\",\n            \"updatedAt\": \"2023-09-06T08:41:14.220Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb91\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.333Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.333Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb93\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.577Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.577Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb95\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.817Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.817Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb97\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.065Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.065Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb99\",\n            \"title\": \"3 Idiots\",\n            \"releaseYear\": 2009,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.4,\n            \"plot\": \"Two friends search for their long-lost college buddy.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster7.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer7.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.304Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.304Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb9b\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.9,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.540Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.540Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feae7a081c4137354f358e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64feb060ea98b6278fbee825\"\n                }\n            ],\n            \"createdAt\": \"2023-09-11T06:06:50.852Z\",\n            \"updatedAt\": \"2023-09-11T06:14:56.109Z\",\n            \"__v\": 1\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"f4a7489c-4428-4630-b3ed-bba3dfa57124"},{"name":"Delete Movie","id":"41eeb99a-40c2-4d23-a733-3e77a6d72180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId","description":"<p>This API call deletes movie by id from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1",":movieId"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"64feae7a081c4137354f358e","key":"movieId"}]}},"response":[{"id":"acc803be-3cd6-4de0-b31c-326952f1a481","name":"Delete Movie","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1",":movieId"],"variable":[{"key":"movieId","value":"64feae7a081c4137354f358e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"9341"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 07:01:06 GMT"},{"key":"Etag","value":"W/\"247d-1WacqPeXu80I6NlDX2dT620TqYg\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422627; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Movie deleted\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83ad933dc93a65480c02c\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.367Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.367Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02e\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.599Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.599Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c030\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.833Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.833Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c032\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.066Z\",\n            \"updatedAt\": \"2023-09-06T08:39:54.066Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c036\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.6,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.554Z\",\n            \"updatedAt\": \"2023-09-06T10:45:03.382Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2a63c8933bfe46eb8c\",\n            \"title\": \"Dilwale Dulhania Le Jayenge\",\n            \"releaseYear\": 1995,\n            \"genre\": [\n                \"Romance\",\n                \"Drama\"\n            ],\n            \"director\": \"Aditya Chopra\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.1,\n            \"plot\": \"A young man and woman fall in love on a Europe trip.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster1.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer1.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:14.220Z\",\n            \"updatedAt\": \"2023-09-06T08:41:14.220Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb91\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.333Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.333Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb93\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.577Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.577Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb95\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.817Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.817Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb97\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.065Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.065Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb99\",\n            \"title\": \"3 Idiots\",\n            \"releaseYear\": 2009,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.4,\n            \"plot\": \"Two friends search for their long-lost college buddy.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster7.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer7.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.304Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.304Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb9b\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.9,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.540Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.540Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"41eeb99a-40c2-4d23-a733-3e77a6d72180"}],"id":"cfd02eec-22a5-4e58-aca0-def68bfb7277","description":"<p>This is collection of APIs used for updation or deletion of movie data or movies</p>\n","_postman_id":"cfd02eec-22a5-4e58-aca0-def68bfb7277"},{"name":"Sort Movies","item":[{"name":"Sort Movies by Ratings","id":"967ad5e9-3097-401c-8728-3444444d53d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/sort/ratings","description":"<p>This API call sorts movies by ratings in the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1","sort","ratings"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[]}},"response":[{"id":"1e879dfc-dc44-48e7-a11f-173126956226","name":"Sort Movies by Ratings","originalRequest":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/sort/ratings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"9352"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 07:02:52 GMT"},{"key":"Etag","value":"W/\"2488-hkbTaPktCCMyLr1WPmHsFwG/Q78\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422520; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Movies sorted by ratings\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83ada33dc93a65480c036\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.6,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.554Z\",\n            \"updatedAt\": \"2023-09-06T10:45:03.382Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2a63c8933bfe46eb8c\",\n            \"title\": \"Dilwale Dulhania Le Jayenge\",\n            \"releaseYear\": 1995,\n            \"genre\": [\n                \"Romance\",\n                \"Drama\"\n            ],\n            \"director\": \"Aditya Chopra\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.1,\n            \"plot\": \"A young man and woman fall in love on a Europe trip.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster1.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer1.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:14.220Z\",\n            \"updatedAt\": \"2023-09-06T08:41:14.220Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb99\",\n            \"title\": \"3 Idiots\",\n            \"releaseYear\": 2009,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.4,\n            \"plot\": \"Two friends search for their long-lost college buddy.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster7.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer7.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.304Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.304Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02c\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.367Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.367Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb91\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.333Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.333Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c030\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.833Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.833Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb95\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.817Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.817Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c032\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.066Z\",\n            \"updatedAt\": \"2023-09-06T08:39:54.066Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb97\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.065Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.065Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb9b\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.9,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.540Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.540Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02e\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.599Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.599Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb93\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.577Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.577Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        }\n    ]\n}"}],"_postman_id":"967ad5e9-3097-401c-8728-3444444d53d6"},{"name":"Sort Movies by Release-year","id":"7958232d-811c-43a8-9e9c-d7e13035101e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/sort/release-years","description":"<p>This API call sorts movies by release year in the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1","sort","release-years"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[]}},"response":[{"id":"94954416-f625-4189-a5cf-873c0bb036e4","name":"Sort Movies by Release-year","originalRequest":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/sort/release-years"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"9358"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 07:03:29 GMT"},{"key":"Etag","value":"W/\"248e-j99+EFCmygKKXOVD6Ggjxt0onFI\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422483; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Movies sorted by release years\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83b2a63c8933bfe46eb8c\",\n            \"title\": \"Dilwale Dulhania Le Jayenge\",\n            \"releaseYear\": 1995,\n            \"genre\": [\n                \"Romance\",\n                \"Drama\"\n            ],\n            \"director\": \"Aditya Chopra\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.1,\n            \"plot\": \"A young man and woman fall in love on a Europe trip.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster1.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer1.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:14.220Z\",\n            \"updatedAt\": \"2023-09-06T08:41:14.220Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02c\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.367Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.367Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02e\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.599Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.599Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb91\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.333Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.333Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb93\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.577Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.577Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb99\",\n            \"title\": \"3 Idiots\",\n            \"releaseYear\": 2009,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.4,\n            \"plot\": \"Two friends search for their long-lost college buddy.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster7.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer7.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.304Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.304Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c030\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.833Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.833Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb95\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.817Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.817Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c032\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.066Z\",\n            \"updatedAt\": \"2023-09-06T08:39:54.066Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": \"64fc06f8e1f25de880d8235e\",\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb97\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.065Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.065Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c036\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.6,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.554Z\",\n            \"updatedAt\": \"2023-09-06T10:45:03.382Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb9b\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.9,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.540Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.540Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        }\n    ]\n}"}],"_postman_id":"7958232d-811c-43a8-9e9c-d7e13035101e"}],"id":"f57efe65-f0f6-456e-9e18-5a1e65ca0e42","description":"<p>This is collection of APIs used for sorting movies in the DB</p>\n","_postman_id":"f57efe65-f0f6-456e-9e18-5a1e65ca0e42"}],"id":"aa2a3a40-3ef5-4412-a36d-54eae3ed8edc","description":"<p>This is collection of APIs used for Management of Movies data</p>\n","_postman_id":"aa2a3a40-3ef5-4412-a36d-54eae3ed8edc"},{"name":"Reviews Management","item":[{"name":"Add Review and Rating to Movie","id":"5341a598-aeb2-461c-951d-86f4ce73a104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"authorization","value":":token","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"userId\": \"64fc06f8e1f25de880d8235e\", \r\n  \"rating\": 8,\r\n\t\"review\": \"Good Movie\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId/add-review","description":"<p>This API call adds review and rating to the movie in the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1",":movieId","add-review"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"64f83ad933dc93a65480c02c","key":"movieId"}]}},"response":[{"id":"e6ab9102-1c40-4a9b-828e-84436d2ad4e5","name":"Add Review and Rating to Movie - Success","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4NzY4MywiZXhwIjoxNjk1Mjc0MDgzfQ.axm6tcGBU5bZuym4sBwpaWLwpBoFbQW32BhA_NWZ7lY","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"userId\": \"64fc06f8e1f25de880d8235e\", \r\n  \"rating\": 8,\r\n\t\"review\": \"Good Movie\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId/add-review","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1",":movieId","add-review"],"variable":[{"key":"movieId","value":"64f83ad933dc93a65480c02c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"9589"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 06:01:00 GMT"},{"key":"Etag","value":"W/\"2575-42PpEEZgiigwig+jPIiWNoy0ND0\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6648633; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Review added to the movie\",\n    \"movies\": [\n        {\n            \"_id\": \"64f83ad933dc93a65480c02c\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.367Z\",\n            \"updatedAt\": \"2023-09-20T06:00:59.863Z\",\n            \"__v\": 2,\n            \"reviews\": [\n                {\n                    \"user\": {\n                        \"_id\": \"64fc06f8e1f25de880d8235e\",\n                        \"username\": \"exampleuser\"\n                    },\n                    \"_id\": \"64febbf92516f1a58354e287\"\n                },\n                {\n                    \"user\": {\n                        \"_id\": \"64fc06f8e1f25de880d8235e\",\n                        \"username\": \"exampleuser\"\n                    },\n                    \"_id\": \"650a8a9b42818ec0018e469f\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c02e\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.599Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.599Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ad933dc93a65480c030\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:53.833Z\",\n            \"updatedAt\": \"2023-09-06T08:39:53.833Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c032\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.066Z\",\n            \"updatedAt\": \"2023-09-06T08:39:54.066Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83ada33dc93a65480c036\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.6,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:39:54.554Z\",\n            \"updatedAt\": \"2023-09-06T10:45:03.382Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2a63c8933bfe46eb8c\",\n            \"title\": \"Dilwale Dulhania Le Jayenge\",\n            \"releaseYear\": 1995,\n            \"genre\": [\n                \"Romance\",\n                \"Drama\"\n            ],\n            \"director\": \"Aditya Chopra\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 9.1,\n            \"plot\": \"A young man and woman fall in love on a Europe trip.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster1.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer1.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:14.220Z\",\n            \"updatedAt\": \"2023-09-06T08:41:14.220Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb8f\",\n            \"title\": \"Bahubali: The Beginning\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.095Z\",\n            \"updatedAt\": \"2023-09-09T14:29:51.137Z\",\n            \"__v\": 1,\n            \"reviews\": [\n                {\n                    \"user\": {\n                        \"_id\": \"64fc06f8e1f25de880d8235e\",\n                        \"username\": \"exampleuser\"\n                    },\n                    \"_id\": \"64fc815f2fa29cfb3aa49dc8\"\n                }\n            ]\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb91\",\n            \"title\": \"Lagaan\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Sports\"\n            ],\n            \"director\": \"Ashutosh Gowariker\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Gracy Singh\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.2,\n            \"plot\": \"A group of villagers challenge British officers to a cricket match.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster3.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer3.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.333Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.333Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb93\",\n            \"title\": \"Kabhi Khushi Kabhie Gham\",\n            \"releaseYear\": 2001,\n            \"genre\": [\n                \"Drama\",\n                \"Romance\"\n            ],\n            \"director\": \"Karan Johar\",\n            \"actors\": [\n                \"Shah Rukh Khan\",\n                \"Kajol\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.6,\n            \"plot\": \"A family drama spanning generations and continents.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster4.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer4.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.577Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.577Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2d63c8933bfe46eb95\",\n            \"title\": \"PK\",\n            \"releaseYear\": 2014,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Anushka Sharma\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"An alien visits Earth and questions religious beliefs.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster5.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer5.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:17.817Z\",\n            \"updatedAt\": \"2023-09-06T08:41:17.817Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb97\",\n            \"title\": \"Bajrangi Bhaijaan\",\n            \"releaseYear\": 2015,\n            \"genre\": [\n                \"Drama\",\n                \"Comedy\"\n            ],\n            \"director\": \"Kabir Khan\",\n            \"actors\": [\n                \"Salman Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8,\n            \"plot\": \"A man helps a lost girl reunite with her family.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster6.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer6.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.065Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.065Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb99\",\n            \"title\": \"3 Idiots\",\n            \"releaseYear\": 2009,\n            \"genre\": [\n                \"Comedy\",\n                \"Drama\"\n            ],\n            \"director\": \"Rajkumar Hirani\",\n            \"actors\": [\n                \"Aamir Khan\",\n                \"Kareena Kapoor\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 8.4,\n            \"plot\": \"Two friends search for their long-lost college buddy.\",\n            \"awards\": \"Multiple Filmfare Awards\",\n            \"posterUrl\": \"https://example.com/poster7.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer7.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.304Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.304Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64f83b2e63c8933bfe46eb9b\",\n            \"title\": \"Gully Boy\",\n            \"releaseYear\": 2019,\n            \"genre\": [\n                \"Drama\",\n                \"Musical\"\n            ],\n            \"director\": \"Zoya Akhtar\",\n            \"actors\": [\n                \"Ranveer Singh\",\n                \"Alia Bhatt\"\n            ],\n            \"language\": \"Hindi\",\n            \"country\": \"India\",\n            \"rating\": 7.9,\n            \"plot\": \"A young man from the slums aspires to be a rapper.\",\n            \"awards\": \"Oscar Nomination\",\n            \"posterUrl\": \"https://example.com/poster8.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer8.mp4\",\n            \"createdAt\": \"2023-09-06T08:41:18.540Z\",\n            \"updatedAt\": \"2023-09-06T08:41:18.540Z\",\n            \"__v\": 0,\n            \"reviews\": []\n        },\n        {\n            \"_id\": \"64fb23f743d24cf091b385c8\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:39:03.046Z\",\n            \"updatedAt\": \"2023-09-08T13:39:03.046Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb2448f39342ad579673f0\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:40:24.983Z\",\n            \"updatedAt\": \"2023-09-08T13:40:24.983Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fb246f7f9b260b116de8e7\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-08T13:41:03.745Z\",\n            \"updatedAt\": \"2023-09-08T13:41:03.745Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64fc7c1c2fa29cfb3aa49d9e\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-09T14:07:24.597Z\",\n            \"updatedAt\": \"2023-09-09T14:07:24.597Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64feb8c72516f1a58354e25b\",\n            \"title\": \"Bahubali 2\",\n            \"releaseYear\": 2018,\n            \"genre\": [\n                \"Action\",\n                \"Fantasy\"\n            ],\n            \"director\": \"S. S. Rajamouli\",\n            \"actors\": [\n                \"Prabhas\",\n                \"Anushka Shetty\"\n            ],\n            \"language\": \"Telugu\",\n            \"country\": \"India\",\n            \"rating\": 8.1,\n            \"plot\": \"A man embarks on a journey to rescue his mother from a tyrant.\",\n            \"awards\": \"National Film Award\",\n            \"posterUrl\": \"https://example.com/poster2.jpg\",\n            \"trailerUrl\": \"https://example.com/trailer2.mp4\",\n            \"reviews\": [],\n            \"createdAt\": \"2023-09-11T06:50:47.926Z\",\n            \"updatedAt\": \"2023-09-11T06:50:47.926Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"5341a598-aeb2-461c-951d-86f4ce73a104"},{"name":"Get All Reviews for Movie","id":"886c8725-2fae-4428-8423-695432b8b906","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId/reviews","description":"<p>This API call gets movie reviews by id from the db.</p>\n","urlObject":{"protocol":"https","path":["movies","v1",":movieId","reviews"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"64f83ad933dc93a65480c02c","key":"movieId"}]}},"response":[{"id":"d2e41621-3af3-4fde-a2d8-81996105a0fd","name":"Get All Reviews for Movie","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://be26cw.omkarpatil20.repl.co/movies/v1/:movieId/reviews","protocol":"https","host":["be26cw","omkarpatil20","repl","co"],"path":["movies","v1",":movieId","reviews"],"variable":[{"key":"movieId","value":"64f83ad933dc93a65480c02c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"148"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 11 Sep 2023 07:05:07 GMT"},{"key":"Etag","value":"W/\"94-Mh0LCt7DZJBvBNSBKLllMIhGGxo\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=7422385; includeSubDomains"},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"reviews\": [\n        {\n            \"reviewUser\": {\n                \"_id\": \"64fc06f8e1f25de880d8235e\",\n                \"username\": \"exampleuser\",\n                \"profilePictureUrl\": \"<https://example.com/new-profile.jpg>\"\n            }\n        }\n    ]\n}"}],"_postman_id":"886c8725-2fae-4428-8423-695432b8b906"}],"id":"a2c9a148-bee7-4eab-8ce7-16269c0bec73","description":"<p>This is collection of APIs used for Management of Reviews and Ratings for Movies</p>\n","_postman_id":"a2c9a148-bee7-4eab-8ce7-16269c0bec73"},{"name":"Authentication","item":[{"name":"User Signup","id":"7b07b9d0-2877-42d1-876f-786054188661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"test@example.com\",\r\n  \"password\": \"secretpassword\",\r\n  \"username\": \"test\",\r\n  \"profilePicture\": \"<https://example.com/profile.jpg>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/signup","description":"<p>This API call creates and signs up a new user to the database.</p>\n","urlObject":{"protocol":"https","path":["auth","v1","signup"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[]}},"response":[{"id":"53cdd435-d384-4a74-9c16-896444a9f9f4","name":"User Signup - Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"test@example.com\",\r\n  \"password\": \"secretpassword\",\r\n  \"username\": \"test\",\r\n  \"profilePicture\": \"<https://example.com/profile.jpg>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/signup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"473"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:11:11 GMT"},{"key":"Etag","value":"W/\"1d9-WwmtlRKWHAxHRcBaUl1lHiJr1sI\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6651621; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"New user created\",\n    \"createdUser\": {\n        \"email\": \"test@example.com\",\n        \"password\": \"$2b$10$G8IWOwpQzPSWzQiWs8DwIufdqcfKwHxA9Uj4uRykiDMYoIkhpD0CS\",\n        \"username\": \"test\",\n        \"_id\": \"650a7eefb686dc8c9d9bc944\",\n        \"createdAt\": \"2023-09-20T05:11:11.555Z\",\n        \"updatedAt\": \"2023-09-20T05:11:11.555Z\",\n        \"__v\": 0\n    },\n    \"encodedToken\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4NjY3MSwiZXhwIjoxNjk1MjczMDcxfQ.7CLcG54QNv_OX5FSJuIdRgSdh86cbNgt7Ymzl-oDBVE\"\n}"},{"id":"57b64701-ad45-454e-93e4-9a48fc100ef5","name":"User Signup - Error - Already existing user","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"test@example.com\",\r\n  \"password\": \"secretpassword\",\r\n  \"username\": \"test\",\r\n  \"profilePicture\": \"<https://example.com/profile.jpg>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/signup"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"36"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:11:34 GMT"},{"key":"Etag","value":"W/\"24-5B56xuvmw3IrU+e3WAtyoxowjFk\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6651598; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Email already registered\"\n}"}],"_postman_id":"7b07b9d0-2877-42d1-876f-786054188661"},{"name":"User Login","id":"c98e4748-28de-4d73-a89d-3847ad5306e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"test@example.com\",\r\n  \"password\": \"secretpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/login","description":"<p>This API logs in a registered user from the database.</p>\n","urlObject":{"protocol":"https","path":["auth","v1","login"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[]}},"response":[{"id":"d35539f1-a700-4548-be52-0623288c8ec6","name":"User Login - Suceess","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"test@example.com\",\r\n  \"password\": \"secretpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"464"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:13:03 GMT"},{"key":"Etag","value":"W/\"1d0-h70B+iOfcBf5AcXv1NhJ23fZDZw\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6651510; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User logged in\",\n    \"user\": {\n        \"_id\": \"650a7eefb686dc8c9d9bc944\",\n        \"email\": \"test@example.com\",\n        \"password\": \"$2b$10$G8IWOwpQzPSWzQiWs8DwIufdqcfKwHxA9Uj4uRykiDMYoIkhpD0CS\",\n        \"username\": \"test\",\n        \"createdAt\": \"2023-09-20T05:11:11.555Z\",\n        \"updatedAt\": \"2023-09-20T05:11:11.555Z\",\n        \"__v\": 0\n    },\n    \"encodedToken\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4Njc4MywiZXhwIjoxNjk1MjczMTgzfQ.c_9P6lLk3HS4-Aa2NTh9qy-p-1HpzZZdpgs_rCXr_eg\"\n}"},{"id":"9ed276ca-5931-4a0f-a6a6-161707262655","name":"User Login - Error - user not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"notfound@example.com\",\r\n  \"password\": \"secretpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/login"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"26"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:13:29 GMT"},{"key":"Etag","value":"W/\"1a-2JdoHsw8Ys7KN4vit7Gc+mguXiY\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6651484; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"User Not Found\"\n}"},{"id":"6ef16991-4e38-4062-8617-79eedb963b29","name":"User Login - Error - wrong password","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"test@example.com\",\r\n  \"password\": \"wrongpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/auth/v1/login"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"30"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:14:04 GMT"},{"key":"Etag","value":"W/\"1e-yI8lx7vbpwW+EkxfwKSKzu8+B/0\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6651448; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Incorrect Password\"\n}"}],"_postman_id":"c98e4748-28de-4d73-a89d-3847ad5306e1"},{"name":"Change User Password","id":"2f182930-a163-4c93-bd22-0cdd931b6270","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"authorization","value":":token","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"currentPassword\": \"secretpassword\",\r\n  \"newPassword\": \"newpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/:userId/password","description":"<p>This API changes password of registered User</p>\n","urlObject":{"protocol":"https","path":["user","v1",":userId","password"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"650a7eefb686dc8c9d9bc944","key":"userId"}]}},"response":[{"id":"b0accd92-ce84-4003-a18b-4cbf93defa54","name":"Change User Password - Error - Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"currentPassword\": \"secretpassword\",\r\n  \"newPassword\": \"newpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/650a7eefb686dc8c9d9bc944/password"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"55"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:16:56 GMT"},{"key":"Etag","value":"W/\"37-z7piH5j/V2yaASQxJNVxEuNM2IA\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6651276; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Unauthorised access, please add the token\"\n}"},{"id":"3de3125f-77a1-4059-bd93-48f6017b7a3d","name":"Change User Password - Success","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4NzY4MywiZXhwIjoxNjk1Mjc0MDgzfQ.axm6tcGBU5bZuym4sBwpaWLwpBoFbQW32BhA_NWZ7lY","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"currentPassword\": \"secretpassword\",\r\n  \"newPassword\": \"newpassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/650a7eefb686dc8c9d9bc944/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"241"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:30:30 GMT"},{"key":"Etag","value":"W/\"f1-HviXCF1H/vlr67vqav9jV52v7GA\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650463; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Password changed for the user\",\n    \"user\": {\n        \"_id\": \"650a7eefb686dc8c9d9bc944\",\n        \"email\": \"test@example.com\",\n        \"password\": \"newpassword\",\n        \"username\": \"test\",\n        \"createdAt\": \"2023-09-20T05:11:11.555Z\",\n        \"updatedAt\": \"2023-09-20T05:30:30.500Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"2f182930-a163-4c93-bd22-0cdd931b6270"},{"name":"Update User Profile Picture","id":"e1d68058-0152-4f41-95b7-e849fe29a42f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"authorization","value":":token","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"newProfilePictureUrl\": \"<https://example.com/new-profile.jpg>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/:userId/profilePicture","description":"<p>This API updates profile picture of registered User</p>\n","urlObject":{"protocol":"https","path":["user","v1",":userId","profilePicture"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"650a7eefb686dc8c9d9bc944","key":"userId"}]}},"response":[{"id":"4420bd5c-0cc2-486d-ac4a-836c2f8cc78d","name":"Update User Profile Picture - Error - unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"newProfilePictureUrl\": \"<https://example.com/new-profile.jpg>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/650a7eefb686dc8c9d9bc944/profilePicture"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"55"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:31:45 GMT"},{"key":"Etag","value":"W/\"37-z7piH5j/V2yaASQxJNVxEuNM2IA\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650387; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Unauthorised access, please add the token\"\n}"},{"id":"20344d34-51c8-4a8b-a16f-ebabb27c99c2","name":"Update User Profile Picture - Success","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4NzY4MywiZXhwIjoxNjk1Mjc0MDgzfQ.axm6tcGBU5bZuym4sBwpaWLwpBoFbQW32BhA_NWZ7lY","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"newProfilePictureUrl\": \"<https://example.com/new-profile.jpg>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/650a7eefb686dc8c9d9bc944/profilePicture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"308"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:32:41 GMT"},{"key":"Etag","value":"W/\"134-fYfUx8Fuz4J7UlrTT1bzQusOXy8\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650332; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Profile Picture updated for the user\",\n    \"user\": {\n        \"_id\": \"650a7eefb686dc8c9d9bc944\",\n        \"email\": \"test@example.com\",\n        \"password\": \"newpassword\",\n        \"username\": \"test\",\n        \"createdAt\": \"2023-09-20T05:11:11.555Z\",\n        \"updatedAt\": \"2023-09-20T05:32:41.259Z\",\n        \"__v\": 0,\n        \"profilePictureUrl\": \"<https://example.com/new-profile.jpg>\"\n    }\n}"}],"_postman_id":"e1d68058-0152-4f41-95b7-e849fe29a42f"},{"name":"Update User Contact Details","id":"1c406882-4645-4e18-a854-d5938586be19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"authorization","value":":token","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"phoneNumber\": \"1234546790\",\r\n  \"address\": \"123 Main St, City\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/:userId/contact","description":"<p>This API updates contact details of registered User</p>\n","urlObject":{"protocol":"https","path":["user","v1",":userId","contact"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"650a7eefb686dc8c9d9bc944","key":"userId"}]}},"response":[{"id":"960266a2-06ee-44a5-9806-298251bf0ced","name":"Update User Contact Details - unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"phoneNumber\": \"1234546790\",\r\n  \"address\": \"123 Main St, City\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/650a7eefb686dc8c9d9bc944/contact"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"55"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:33:18 GMT"},{"key":"Etag","value":"W/\"37-z7piH5j/V2yaASQxJNVxEuNM2IA\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650294; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Unauthorised access, please add the token\"\n}"},{"id":"6e235805-db34-441f-9369-0d86cc32ee56","name":"Update User Contact Details - Success","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4NzY4MywiZXhwIjoxNjk1Mjc0MDgzfQ.axm6tcGBU5bZuym4sBwpaWLwpBoFbQW32BhA_NWZ7lY","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"phoneNumber\": \"1234546790\",\r\n  \"address\": \"123 Main St, City\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://be26cw.omkarpatil20.repl.co/user/v1/650a7eefb686dc8c9d9bc944/contact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"363"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:33:55 GMT"},{"key":"Etag","value":"W/\"16b-WaiDAVbkAczaIa3lZVVq2tF5kDE\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650258; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Contact details updated for the user\",\n    \"user\": {\n        \"_id\": \"650a7eefb686dc8c9d9bc944\",\n        \"email\": \"test@example.com\",\n        \"password\": \"newpassword\",\n        \"username\": \"test\",\n        \"createdAt\": \"2023-09-20T05:11:11.555Z\",\n        \"updatedAt\": \"2023-09-20T05:33:55.290Z\",\n        \"__v\": 0,\n        \"profilePictureUrl\": \"<https://example.com/new-profile.jpg>\",\n        \"phoneNumber\": 1234546790,\n        \"address\": \"123 Main St, City\"\n    }\n}"}],"_postman_id":"1c406882-4645-4e18-a854-d5938586be19"},{"name":"Get User by Phone Number","id":"3f9cf7f9-ee45-4cf7-a28d-ed344942ceca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":":token","type":"text"}],"url":"https://be26cw.omkarpatil20.repl.co/user/v1/phone/:phoneNumber","description":"<p>This API call gets user by Phone number from the db.</p>\n","urlObject":{"protocol":"https","path":["user","v1","phone",":phoneNumber"],"host":["be26cw","omkarpatil20","repl","co"],"query":[],"variable":[{"type":"any","value":"1234546790","key":"phoneNumber"}]}},"response":[{"id":"274f771d-d832-43ce-ad0b-0c2eb4dda746","name":"Get User by Phone Number - unauthorized","originalRequest":{"method":"GET","header":[],"url":"https://be26cw.omkarpatil20.repl.co/user/v1/phone/1234546790"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"55"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:34:48 GMT"},{"key":"Etag","value":"W/\"37-z7piH5j/V2yaASQxJNVxEuNM2IA\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650204; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Unauthorised access, please add the token\"\n}"},{"id":"776f31a7-af11-449b-9dc3-b44717cbb701","name":"Get User by Phone Number - Success","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY1MGE3ZWVmYjY4NmRjOGM5ZDliYzk0NCIsImlhdCI6MTY5NTE4NzY4MywiZXhwIjoxNjk1Mjc0MDgzfQ.axm6tcGBU5bZuym4sBwpaWLwpBoFbQW32BhA_NWZ7lY","type":"text"}],"url":"https://be26cw.omkarpatil20.repl.co/user/v1/phone/1234546790"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"344"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Date","value":"Wed, 20 Sep 2023 05:35:58 GMT"},{"key":"Etag","value":"W/\"158-a1yD8+U8hW8G0OPIGdOSugmnmFY\""},{"key":"Expect-Ct","value":"max-age=2592000, report-uri=\"https://sentry.repl.it/api/10/security/?sentry_key=615192fd532445bfbbbe966cd7131791\""},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Replit-Cluster","value":"global"},{"key":"Strict-Transport-Security","value":"max-age=6650134; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Xss-Protection","value":"0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User found\",\n    \"user\": {\n        \"_id\": \"64fc06f8e1f25de880d8235e\",\n        \"email\": \"user@example.com\",\n        \"password\": \"newpassword\",\n        \"username\": \"exampleuser\",\n        \"createdAt\": \"2023-09-09T05:47:37.205Z\",\n        \"updatedAt\": \"2023-09-11T07:09:57.385Z\",\n        \"__v\": 0,\n        \"profilePictureUrl\": \"<https://example.com/new-profile.jpg>\",\n        \"address\": \"123 Main St, City\",\n        \"phoneNumber\": 1234546790\n    }\n}"}],"_postman_id":"3f9cf7f9-ee45-4cf7-a28d-ed344942ceca"}],"id":"b190ec83-88c0-4c0f-a24d-2a8c99055d1f","description":"<p>This provides apis for authentication</p>\n","_postman_id":"b190ec83-88c0-4c0f-a24d-2a8c99055d1f"}]}