diff --git a/src/service/print/dataImporter.js b/src/service/print/dataImporter.js
index 81ede6f2fb68e80af22a611f57ce13354e84b2e3..25187a6a4bdef70ad4575649045d5a52b8f8433b 100644
--- a/src/service/print/dataImporter.js
+++ b/src/service/print/dataImporter.js
@@ -77,7 +77,7 @@ function getQuestionFromItem(itemID, marks) {
 }
 
 const getQuestionForSection = async (id) => {
-  const url = `${envVariables.baseURL}/action/content/v4/hierarchy/${id}?mode=edit`;
+  const url = `${envVariables.baseURL}/action/collection/v4/hierarchy/${id}?mode=edit`;
   let status;
   return fetch(url)
     .then((r1) => {
@@ -114,7 +114,7 @@ const getQuestionForSection = async (id) => {
 const getData = async (id) => {
   let error = false;
   let errorMsg = "";
-  const url = `${envVariables.baseURL}/action/content/v4/hierarchy/${id}?mode=edit`;
+  const url = `${envVariables.baseURL}/action/collection/v4/hierarchy/${id}?mode=edit`;
   return fetch(url)
     .then((r4) => r4.json())
     .then((r) => {