diff --git a/addons/iap/models/iap.py b/addons/iap/models/iap.py
index a89f501ec041f5f828115d5184cfec3fd25805f9..801b8c3da33b92fa68db25b49f6f91ab1a2d82d0 100644
--- a/addons/iap/models/iap.py
+++ b/addons/iap/models/iap.py
@@ -180,7 +180,8 @@ class IapAccount(models.Model):
                 # Flush the pending operations to avoid a deadlock.
                 self.flush()
                 IapAccount = self.with_env(self.env(cr=cr))
-                IapAccount.search(domain + [('account_token', '=', False)]).unlink()
+                # Need to use sudo because regular users do not have delete right
+                IapAccount.search(domain + [('account_token', '=', False)]).sudo().unlink()
                 accounts = accounts - accounts_without_token
         if not accounts:
             with self.pool.cursor() as cr: