Re: Callout extensions: Ad group extension and Ad group extension

2017-04-12 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, Could you enable logging and provide the SOAP request and response logs for the requests where you encountered this error? Please use *Reply privately to author* when responding. Thanks, Shwetha, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on

Re: Callout extensions: Ad group extension and Ad group extension

2017-04-12 Thread radim . kleinpeter
Hi, could you help me with API error ExtensionSettingError.INCOMPATIBLE_UNDERLYING_MATCHING_FUNCTION which I get always I call the requet to create new callout in Account level. Everything works great when I create new callout related to AdGroup od Campaign (Using CampaignExtensionSettingService

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-27 Thread dima
Yes, this what I did in line: _customerExtensionSettingService.RequestHeader.clientCustomerId = customerId; the code snippet I posted is working example that I wrote, I posted it here as an example if some one will look for solution On Monday, March 27, 2017 at 9:03:10 AM UTC+3, Ivan Bautista wr

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-26 Thread 'Ivan Bautista' via AdWords API Forum
Hi, As mentioned by my colleague earlier, to include the clientCustomerId in the request header at runtime, you can programmatically set it by following the instructions (refer to the section of the language you are using) provided in this guide

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-26 Thread dima
Hi, Thank you for assistance, this is code snippet that I wrote for adding call out extension for account: public CustomerExtensionSettingReturnValue SetAccountCallOutExtention(string customerId, string calloutText) { CustomerExtensionSettingService customerExtensionSettingSer

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-23 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, You need to set the clientCustomerId in the request header to add an extension at the customer level using CustomerExtensionSettingService

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-23 Thread dima
Hi, the problem with CustomerExtensionSettingService that I can't find where customerId can be set ? I need to set callout extension for specific customer and not for all ManagedCustomers under t

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-21 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, To create callout extensions at the account level, you'll need to use CustomerExtensionSettingService to add CalloutFeedItem

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-21 Thread dima
Hi, Can you advise how to make callout extensions can be added on account level ? On Friday, January 13, 2017 at 12:33:32 AM UTC+2, Matthew Wawrin wrote: > > Hi, > > You can use the AdGroupExtensionSettingService similar to how the document > you reference uses the CampaignExtensionSettingServi

Re: Callout extensions: Ad group extension and Ad group extension

2017-03-21 Thread dima
Implementation according to your answer: public AdGroupExtensionSettingReturnValue CreateAccountCalloutExtension(long adGroupId, string calloutText) { AdGroupExtensionSetting adGroupExtensionSetting = new AdGroupExtensionSetting { adGroupId = adGro

Re: Callout extensions: Ad group extension and Ad group extension

2017-01-12 Thread Matthew Wawrin
Hi, You can use the AdGroupExtensionSettingService similar to how the document you reference uses the CampaignExtensionSettingService, but instead of specifying a campaignId, you specify an adGroupId. See the reference: https://developers.google.com/adwords/api/docs/reference/v201609/AdGroupExte

Re: Callout extensions: Ad group extension and Ad group extension

2017-01-12 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, Yes, you should be able to create 'CALLOUT' extension at AdGroup level. We dont have a sample for this specific case, but you could refer to this

Callout extensions: Ad group extension and Ad group extension

2017-01-12 Thread dima
How can I create callout extensions as Ad group extension or/and Ad group extension I can create callout extensions in Campaign extension level according to example: https://developers.google.com/adwords/api/docs/guides/extension-settings#callout_extensions but I can't find how can it be create