hi

i'm using the AdGroupAdService service to create a template ad of HTML 5 
bundle type 
i manage to create the ads (all sizes) but i need to find a way to update 
the content (due to some changes in the html)
can i do that using the api ? 


----

// here is the code i wrote for the create 
public long SaveHTMLTemplateAd(HTMLTemplateAdDetails Details)
        {
            var service = 
(AdGroupAdService)this.user.GetService(AdWordsService.v201708.AdGroupAdService);

            // TemplateAds 
            // types, fields names and more info can be found here:
            // 
https://developers.google.com/adwords/api/docs/guides/template-ads
            // note! beside each template type you can find its id, the 
supported dimensions and fields

            var templateAd = new TemplateAd()
            {                
                name = Details.Name,
                templateId = Details.TemplateId,
                finalUrls = new string[] { Details.URL },
                displayUrl = Details.URL,
                dimensions = new Dimensions() {
                    width = Details.Width,
                    height = Details.Height
                }
            };

            var mediaBundle = new MediaBundle()
            {
                data = Details.ZipFileContent,
                entryPoint = "index.html",
                type = MediaMediaType.MEDIA_BUNDLE
            };

            templateAd.templateElements = new TemplateElement[] {
                new TemplateElement() {
                    uniqueName = "adData",
                    fields = new TemplateElementField[] {
                        new TemplateElementField() {
                            name = "Custom_layout",
                            fieldMedia = mediaBundle,
                            type = TemplateElementFieldType.MEDIA_BUNDLE
                        },
                        new TemplateElementField() {
                            name = "layout",
                            fieldText = "Custom",
                            type = TemplateElementFieldType.ENUM
                        },
                    },
                }
            };

            var adGroupAd = new AdGroupAd
            {
                ad = templateAd,
                adGroupId = Details.AdGroupId
            };

            var operations = new AdGroupAdOperation[] {
                new AdGroupAdOperation {
                    @operator = Operator.ADD,
                    operand = adGroupAd                    
                }
            };
            
            var adGroupAdReturnValue1 = service.mutate(operations);
            return adGroupAdReturnValue1.value.First().ad.id;           
        }

------


thanks, Roby (-:

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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+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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@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/e98cb77d-0749-4388-8e30-f1a039bb317f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to