Hi Michael,
Thank you for reaching out. The returned results in the response showed that the conversion tracker does not use snippets. Please make sure the conversion tracker had the googleGlobalSiteTag Set up correctly. If you still have concerns, please share the complete request and response logs along with the screenshots of the UI that show the discrepancy via the Reply privately to author option for us to further investigate.
Thanks and regards,
Xiaoming, Google Ads API Team
|
||||||
Hi Michael,
Thank you for reaching out. You could fetch the conversion_action.id from the conversion_action resource. Once you have the conversion id, you could use it in the global tag snippet and install it on each page of your website. You could also use Google Tag Manager to achieve it. Please refer to this article for more information.
Thanks and regards,
Xiaoming, Google Ads API Team
Hi Souvik,
Thank you for reaching out to us.
Kindly note that you can see what conversion action attributes are available via the API here: https://developers.google.com/google-ads/api/fields/v14/conversion_action. With that being said, upon checking, it seems that the conversion label you are referring to is the conversion_action.name (https://developers.google.com/google-ads/api/fields/v14/conversion_action#conversion_action.name). However, if this is not what you are referring to, then you may please provide us with the entire UI screenshot without cropping where you can see this so that we can further check this and provide you with an appropriate answer.
You may then send the requested information via the Reply privately to author option. If this option is not available, you may send the details directly to our googleadsa...@google.com alias instead.
![]() |
Google Ads API Team |
Hello Souvik,
Thank you for getting back to us.
Upon checking, obtaining these data via API is not yet available. However, our team already raised a feature request for this to become available in the API. Kindly note that this is a subject for review and what we can do is to advise you to keep an eye on our blog post for the updates and releases.
![]() |
Google Ads API Team |
SELECT conversion_action.tag_snippets FROM conversion_action"
And parsing with the following Java pattern:
Pattern.compile(".*'send_to': 'AW-([^/]+)/([^']+)'.*", Pattern.DOTALL);
group 1 is the id and group 2 is the label
![]() |
Google Ads API Team |