diff --git a/airbyte-integrations/connectors/source-google-ads/source_google_ads/source.py b/airbyte-integrations/connectors/source-google-ads/source_google_ads/source.py index bad864845cf1..3b0d22ba12d1 100644 --- a/airbyte-integrations/connectors/source-google-ads/source_google_ads/source.py +++ b/airbyte-integrations/connectors/source-google-ads/source_google_ads/source.py @@ -84,7 +84,7 @@ def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> raise Exception(f"Custom query should not contain {CustomQuery.cursor_field}") req_q = CustomQuery.insert_segments_date_expr(query, "1980-01-01", "1980-01-01") - google_api.send_request(req_q) + google_api.send_request(req_q, google_api.customer_ids[0]) return True, None except GoogleAdsException as error: return False, f"Unable to connect to Google Ads API with the provided credentials - {repr(error.failure)}"