diff --git a/dataproc/api/urls.py b/dataproc/api/urls.py
index 9d79eb30f1a2585df9f9f5153562b55859dd165e..791a9516af0b2d0df8450e6f04145874e819d5b8 100644
--- a/dataproc/api/urls.py
+++ b/dataproc/api/urls.py
@@ -35,10 +35,12 @@ from api.views.summaryout_view import *
 from api.views.user_view import *
 from api.views.relationships_view import *
 from api.views.input_view import *
+from api.views.proc_input_view import *
 
 urlpatterns = [
-	
+
     path('storeInput', storeInput, name="store_input"),
+    path('storeProcInput', storeProcInput, name="store_proc_input"),
 
     # # autoPROC urlpatterns
     # path('indexautoPROC', indexautoPROC),
@@ -55,18 +57,18 @@ urlpatterns = [
     # path('destroyBuster', destroyBuster),
 
     # computationhost urlpatterns
-    path('indexComputationhost', indexComputationhost),
-    path('showComputationhost', showComputationhost),
-    path('storeComputationhost', storeComputationhost),
-    path('updateComputationhost', updateComputationhost),
-    path('destroyComputationhost', destroyComputationhost),
+    # path('indexComputationhost', indexComputationhost),
+    # path('showComputationhost', showComputationhost),
+    # path('storeComputationhost', storeComputationhost),
+    # path('updateComputationhost', updateComputationhost),
+    # path('destroyComputationhost', destroyComputationhost),
 
     # construct urlpatterns
-    path('indexConstruct', indexConstruct),
-    path('showConstruct', showConstruct),
-    path('storeConstruct', storeConstruct),
-    path('updateConstruct', updateConstruct),
-    path('destroyConstruct', destroyConstruct),
+    # path('indexConstruct', indexConstruct),
+    # path('showConstruct', showConstruct),
+    # path('storeConstruct', storeConstruct),
+    # path('updateConstruct', updateConstruct),
+    # path('destroyConstruct', destroyConstruct),
     
     # # coordinates urlpatterns
     # path('indexCoordinates', indexCoordinates),
@@ -248,4 +250,4 @@ urlpatterns = [
 
     # relationships urlspatterns for ligands
     path('connectLigandDataset', connectLigandDataset),
-]
+    ]