diff --git a/index.js b/index.js
index 3b68780d0d2e959b0b62a0039afd486ab8d98546..2f01124eb56adf9a667bd7756078125d74d01591 100644
--- a/index.js
+++ b/index.js
@@ -38,7 +38,7 @@ const { verifyContract } = __webpack_require__(1599)
 const { terminateContract } = __webpack_require__(1601)
 const { getContractStartDate } = __webpack_require__(1602)
 const { getAccount, saveAccountData } = __webpack_require__(1603)
-const { getAccountId } = __webpack_require__(1605)
+const { iSLocal } = __webpack_require__(1604)
 
 moment.locale('fr') // set the language
 moment.tz.setDefault('Europe/Paris') // set the timezone
@@ -53,6 +53,7 @@ let startDailyDateString = startDailyDate.format('YYYY-MM-DD')
 const startLoadDate = moment().subtract(7, 'day')
 const endDate = moment()
 const endDateString = endDate.format('YYYY-MM-DD')
+const ACCOUNT_ID = iSLocal() ? 'default_account_id' : 'enedis-sge-grandlyon'
 
 module.exports = new BaseKonnector(start)
 
@@ -67,7 +68,7 @@ module.exports = new BaseKonnector(start)
  */
 async function start(fields, cozyParameters) {
   log('info', 'Konnector configuration ...')
-  const ACCOUNT_ID = await getAccountId()
+
   const pointId = fields.pointId
   let baseUrl = fields.wso2BaseUrl
   let apiAuthKey = fields.apiToken
@@ -228295,24 +228296,6 @@ function iSLocal() {
 module.exports = { iSLocal }
 
 
-/***/ }),
-/* 1605 */
-/***/ ((module) => {
-
-function getAccountId() {
-  try {
-    return process.env.NODE_ENV === 'development' ||
-      process.env.NODE_ENV === 'test'
-      ? 'fakeAccountId'
-      : JSON.parse(process.env.COZY_FIELDS).account
-  } catch (err) {
-    throw new Error(`You must provide 'account' in COZY_FIELDS: ${err.message}`)
-  }
-}
-
-module.exports = { getAccountId }
-
-
 /***/ })
 /******/ 	]);
 /************************************************************************/