Re: fetching Conversion Actions list

2019-08-14 Thread michele
Thank you, much appreciated! On Tuesday, August 13, 2019 at 7:50:25 PM UTC+2, adsapiforumadvisor wrote: > > Hi Michele, > > Thank you for trying that. The conversion actions that are imported from > Google Analytics are not accessible via the API. I have raised a feature > request to the team re

Re: fetching Conversion Actions list

2019-08-13 Thread Google Ads API Forum Advisor Prod
Hi Michele, Thank you for trying that. The conversion actions that are imported from Google Analytics are not accessible via the API. I have raised a feature request to the team regarding this. The conversion actions that are listed here should be supported through the API. Please keep an eye o

Re: fetching Conversion Actions list

2019-08-13 Thread michele
Hello, I'm still trying out all the options, but I don't seem to be able to fetch imported conversions, such as those coming from Analytics.. Is there any way of listing them through the APIs? Thanks for all the support! Michele On Friday, August 9, 2019 at 7:04:40 PM UTC+2, adsapiforumadvisor

Re: fetching Conversion Actions list

2019-08-09 Thread Google Ads API Forum Advisor Prod
Hi Michele, If you're using Google Ads API, please find the query below to pull the conversion actions: SELECT conversion_action.category, conversion_action.id, conversion_action.name, conversion_action.status FROM conversion_action If you're using AdWords API, the code snippet in Java should b

Re: fetching Conversion Actions list

2019-08-09 Thread michele
Hello, I don't seem to be able to get a GAQL query working, but that's alright since we'll be focusing on the AdWords API for now.. But I'm having issues with those too: the ConversionTrackerService doesn't seem to return trackers not included in Conversions, no matter the values I pass in the

Re: fetching Conversion Actions list

2019-08-08 Thread Google Ads API Forum Advisor Prod
Hi Michele, One other option to retrieve these details is using the conversion_action resource directly using the GAQL in your search query. You may find a similar code sample here as a reference. You may then include the fields that should be required and pull those details. Code samples in ot

Re: fetching Conversion Actions list

2019-08-08 Thread michele
Thank you very much Bharani, really helpful! Is there any easy way of fetching all of them using the the new Ads API? On Wednesday, August 7, 2019 at 10:35:41 PM UTC+2, adsapiforumadvisor wrote: > > Hi Michele, > > The AdWords API/Google Ads API have the same functionality as the Google > Ads UI

RE: fetching Conversion Actions list

2019-08-07 Thread Google Ads API Forum Advisor Prod
Hi Michele, The AdWords API/Google Ads API have the same functionality as the Google Ads UI. However, the naming is a bit different from the backend services. If you are looking to pull the list of Conversion actions in the account, you may use the ConversionTrackerService.get() in AdWords API.

fetching Conversion Actions list

2019-08-07 Thread michele
Hello, We're trying to fetch the list of Conversion Actions available within an account, but the ConversionTypeService that seems to be used by the AdWords interface doesn't seem to be available via the API, both the old and the new one. I found it mentioned here