diff --git a/src/viadot/sources/cloud_for_customers.py b/src/viadot/sources/cloud_for_customers.py index 57ae97cac..6a7fdba1c 100644 --- a/src/viadot/sources/cloud_for_customers.py +++ b/src/viadot/sources/cloud_for_customers.py @@ -284,7 +284,7 @@ def get_response( return handle_api_response( url=url, params=filter_params, - auth=(username, password), + auth=(username, password.get_secret_value()), timeout=timeout, ) @@ -318,7 +318,7 @@ def to_df( tests: dict[str, Any] = kwargs.get("tests", {}) url = url or self.url - records = self.extract_records(url=url) + records = self.extract_records(url=url, report_url=self.report_url) df = pd.DataFrame(data=records, **kwargs) if dtype: