diff --git a/src/controller/mod.rs b/src/controller/mod.rs
index fcdeefc1c14dabe88326a8d7b2c658aafd40f40f..df6df1a2a3c3ee7c538caba296b381784260470a 100644
--- a/src/controller/mod.rs
+++ b/src/controller/mod.rs
@@ -7,6 +7,6 @@ pub fn route_stage() -> AdHoc {
     return AdHoc::on_ignite("Initializing controller routes...", |rocket| async {
         rocket
             .mount("/product", routes![product::create, product::list, product::read, product::delete])
-            .mount("/notification", routes![notification::subscribe])
+            .mount("/notification", routes![notification::subscribe, notification::unsubscribe])
     });
 }
\ No newline at end of file
diff --git a/src/controller/notification.rs b/src/controller/notification.rs
index 0f18dd25caccdc2aeeda5ef920b6718ed27ea3bb..bb5e3f1e7b3f4eca35046f2140409cecfe50744d 100644
--- a/src/controller/notification.rs
+++ b/src/controller/notification.rs
@@ -11,4 +11,12 @@ pub fn subscribe(product_type: &str, subscriber: Json<Subscriber>) -> Result<Cre
         Ok(f) => Ok(Created::new("/").body(Json::from(f))),
         Err(e) => Err(e)
     };
+}
+
+#[post("/unsubscribe/<product_type>?<url>")]
+pub fn unsubscribe(product_type: &str, url: &str) -> Result<Json<Subscriber>> {
+    return match NotificationService::unsubscribe(product_type, url) {
+        Ok(f) => Ok(Json::from(f)),
+        Err(e) => Err(e)
+    };
 }
\ No newline at end of file