diff --git a/lumapps/api/client.py b/lumapps/api/client.py index f54a0517..e1acccb0 100644 --- a/lumapps/api/client.py +++ b/lumapps/api/client.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +import json +import logging from copy import deepcopy from functools import lru_cache, partial from io import FileIO @@ -79,6 +81,11 @@ def __init__( self.cache = DiscoveryCacheDict() self.dry_run = dry_run self._langs = None + extra_http_headers = { + **({"LumApps-Organization-Id": str(self.customer_id)}), + **(extra_http_headers or {}), + } + logging.warning(f"SDK Headers are: {json.dumps(extra_http_headers)}") super().__init__( api_info, auth_info=auth_info,