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 wrote:
>
> 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 be helpful to 
> build a similar request in the client library you are using: 
>
> SelectorBuilder builder = new SelectorBuilder();
> Selector selector = builder
> .fields(ConversionTrackerField.values())
> .orderAscBy(CampaignField.Name)
> .offset(offset)
> .limit(PAGE_SIZE)
> .build();
> ConversionTrackerPage page
> page = campaignService.get(selector);
>
> Please refer to the similar code sample 
> <https://github.com/googleads/googleads-php-lib/blob/d552b800ad53c400b1a50c7852e7ad184245d2ea/examples/AdWords/v201809/BasicOperations/GetAdGroups.php>
>  
> in PHP as a reference. Code samples in other languages can be found here 
> <https://developers.google.com/adwords/api/docs/clientlibraries>. Could 
> you please give this a try and let us know if you encounter any issues?
>
> Thanks,
> Bharani, Google Ads API Team 
>
>
> ref:_00D1U1174p._5001UEIFmI:ref


-- 
This email is private and confidential. If you have received this email in 
error, please notify the sender and delete all copies (including any 
attachments) from your system. In such circumstances, you must not make any 
use of this email or its contents. Thanks. 
By sending emails to us we will 
process your personal data. To find out more, please read our Privacy 
Policy <https://www.precisdigital.com/privacy/>. Precis Digital AB. is a 
company registered in Sweden. Registered number: 556889-3324. Registered 
office: Alströmergatan 20A, 112 47 Stockholm, Sweden. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/59280990-cf30-444c-ad6d-65fe80774819%40googlegroups.com.

Reply via email to