diff --git a/index.js b/index.js
index 0582c0ef6483fe1014a5c43d250962c29781a857..2f82e064ce3d0d9e8db1b316d4d79286e8b93321 100644
--- a/index.js
+++ b/index.js
@@ -223932,8 +223932,13 @@ async function updateBoConsent(url, token, consent, serviceId) {
 
   try {
     log('info', consent.ID)
+    let consentId = ''
+    if (consent.ID) {
+      consentId = consent.ID.toString()
+    }
+    log('info', consentId)
     const { data } = await axios.put(
-      `${url}/consent/${consent.ID?.toString()}`,
+      `${url}/consent/${consentId}`,
       {
         ...consent,
         serviceId: parseInt(serviceId),
diff --git a/onDeleteAccount.js b/onDeleteAccount.js
index 7422b3168bf0a1b54294021b6cf55b49709c90be..5e267364a0011c2aa4c62f28e4196d43145b0e94 100644
--- a/onDeleteAccount.js
+++ b/onDeleteAccount.js
@@ -223324,8 +223324,13 @@ async function updateBoConsent(url, token, consent, serviceId) {
 
   try {
     log('info', consent.ID)
+    let consentId = ''
+    if (consent.ID) {
+      consentId = consent.ID.toString()
+    }
+    log('info', consentId)
     const { data } = await axios.put(
-      `${url}/consent/${consent.ID?.toString()}`,
+      `${url}/consent/${consentId}`,
       {
         ...consent,
         serviceId: parseInt(serviceId),