diff --git a/src/controller/mod.rs b/src/controller/mod.rs
index 15f8ce2ec91d3147d6456fc1239beb365af4a596..46b082483d1bf1e31eee945567a29d18a3bfdd70 100644
--- a/src/controller/mod.rs
+++ b/src/controller/mod.rs
@@ -7,6 +7,6 @@ pub mod notification;
 pub fn route_stage() -> AdHoc {
     return AdHoc::on_ignite("Initializing controller routes...", |rocket| async {
         rocket
-            .mount("/", routes![notification::subscribe, notification::unsubscribe])
+            .mount("/", routes![notification::subscribe, notification::unsubscribe, notification::receive])
     });
 }
diff --git a/src/controller/notification.rs b/src/controller/notification.rs
index fe291ee27227e06b927e574f03d58aa8a83c577a..1b7e27bbef3b8f484eed7086e1e9712618bf659f 100644
--- a/src/controller/notification.rs
+++ b/src/controller/notification.rs
@@ -19,4 +19,12 @@ pub fn unsubscribe(product_type: &str) -> Result<Json<SubscriberRequest>> {
         Ok(f) => Ok(Json::from(f)),
         Err(e) => Err(e)
     };
+}
+
+#[post("/receive", data = "<notification>")]
+pub fn receive(notification: Json<Notification>) -> Result<Json<Notification>> {
+    return match NotificationService::receive_notification(notification.into_inner()) {
+        Ok(f) => Ok(Json::from(f)),
+        Err(e) => Err(e)
+    };
 }
\ No newline at end of file