diff --git a/raml/resources/projects.raml b/raml/resources/projects.raml
index 83f469f9d47c6d8d4ad99593bc1d16d8d64d6d2d..63c913313c04e420ce857e9c1baa376921f590c0 100644
--- a/raml/resources/projects.raml
+++ b/raml/resources/projects.raml
@@ -19,7 +19,19 @@
       404:
         description: Project was not found
 
-/{ProjectId}/template/recalc:
+/recalc:
+  post:
+    description: |
+      Iterates all projects that have a session template.
+      Recalculate if projects' sessions satisfy the template.
+      Returns list of modified session ids.
+    responses:
+      200:
+        description: |
+          Projects' sessions' compliance was recalculated.
+          Returns list of session that were modified.
+
+/{ProjectId}/recalc:
   uriParameters:
     ProjectId:
       type: string
@@ -27,7 +39,7 @@
   post:
     description: |
       Recalculate if sessions in the project satisfy the template.
-      Returns list of modified sessions
+      Returns list of modified session ids.
     responses:
       200:
         description: |
diff --git a/test/integration_tests/abao/abao_test_hooks.js b/test/integration_tests/abao/abao_test_hooks.js
index 6938caafd39dc21cf204bb754e38b9e1a479c2ef..471244e13c40023f868b74c235a71330ad544538 100644
--- a/test/integration_tests/abao/abao_test_hooks.js
+++ b/test/integration_tests/abao/abao_test_hooks.js
@@ -45,7 +45,7 @@ hooks.skip("POST /engine -> 200");
 
 // Skipping until merge with rest of project raml (So we have a ProjectId)
 hooks.skip("POST /projects/{ProjectId}/template -> 200")
-hooks.skip("POST /projects/{ProjectId}/template/recalc -> 200")
+hooks.skip("POST /projects/{ProjectId}/recalc -> 200")
 
 
 hooks.beforeEach(function (test, done) {