Hi,
Thanks for reaching out to the Google Ads API Forum.
It appears that you have received an INVALID_CUSTOMER_FOR_CLICK error. This error indicates that the click associated with the given identifier or iOS URL parameter isn't from the account where conversion tracking is set up. Kindly note that for uploading Click conversions in the Google Ads API, you would need to set customer_id of the UploadClickConversionsRequest to the customer ID of the effective conversion tracking account of the click's Google Ads account. Otherwise, the conversion upload will result in a ConversionUploadError.INVALID_CUSTOMER_FOR_CLICK error.
You can check your account's conversion tracking setup and confirm conversion tracking is enabled by issuing the following query with GoogleAdsService.searchStream:
First, determine if the account is using cross-account conversion tracking by comparing the customer.conversion_tracking_setting.google_ads_conversion_customer to the customer.resource_name. I’ve tried on end below GAQL:
SELECT
customer.conversion_tracking_setting.conversion_tracking_id,
customer.conversion_tracking_setting.conversion_tracking_status,
customer.conversion_tracking_setting.cross_account_conversion_tracking_id,
customer.conversion_tracking_setting.google_ads_conversion_customer
FROM customer
You may need to check the account reflected in google_ads_conversion_customer that manages conversions for the account. That said, you may need to upload to the correct account to avoid said error.. You may give it a try, and let me know how this goes on your end.
If API error persists, you may provide us with the complete logs in the format of the request and response logs along with the request-id without redacting account Id's, as seen in their respective links.
Please send these logs via reply privately to author option.
![]() |
Google Ads API Team |
Hi there,
Thank you for the updates, and letting us know that it is working as expected now. Feel free to reach us back by opening a new forum thread / email for any additional questions.