Thursday, 23 June 2016

UAC (Universal App Campaign) Campaigns are Not Receiving With Adwords API V201605 - CampaignService

Hi Adwords API Team,

When we want to take UAC Campaign List (Name, ID ... ) with another Campaigns but Adwords API not returning this campaigns (UAC) with Campaign List from CampaignService Result Set.


You can see our request below and how we will take this UAC Campaign List (Name, ID.... ) ? 

                Selector selector = new Selector();
                selector.fields = new string[] { "Id", "Name", "Status", "AdvertisingChannelType" };

                OrderBy orderByName = new OrderBy();
                orderByName.field = "Name";
                orderByName.sortOrder = SortOrder.ASCENDING;

                selector.ordering = new OrderBy[] { orderByName };

                ((AdWordsAppConfig)user.Config).ClientCustomerId = ClientCustomerID;


                Predicate predicate = new Predicate();
                predicate.field = "Status";
                predicate.@operator = PredicateOperator.IN;
                predicate.values = new string[] { "ENABLED", "PAUSED", "REMOVED" };

            

                selector.predicates = new Predicate[] { predicate };


                CampaignService service =
                    (CampaignService)user.GetService(AdWordsService.v201605.CampaignService);





Many Thanks!   

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
 
You received this message because you are subscribed to the Google
Groups "AdWords 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+unsubscribe@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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/016a9f74-56c3-4ca6-a39e-1a32559c4bae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment