Tuesday, 29 November 2016

Re: Trying to find some c# sample code for sending a Dynamic Remarketing csv file up to Google's AdWords system.

Ah! ok .. 

brb ..

yep - got it!

for those still following this thread ... here's the c#

var selector = new Selector
{
    fields = new[] { "FeedId", "Status", "AttributeValues"},
    predicates = new[]
        {
        Predicate.Equals("FeedId", feedId),
        Predicate.Equals("Status", FeedMappingStatus.ENABLED.ToString())
    },
    paging = new Paging
    {
        numberResults = 10000, // This max was suggested by the AdWords API Team.
        numberResultsSpecified = true,
        startIndex = 0,
        startIndexSpecified = true
    }
};

kewl! i'm nearly there now :)

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/836342d8-2880-45cb-b5af-36087014e1e5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment