Re: API limits for TargetingIdeaService

2019-11-24 Thread Thiru K
Hi Anthony, I have replied privately with logs. Can you please confirm if you have recieved? Thanks, Thiru.. On Saturday, 23 November 2019 01:40:48 UTC+5:30, adsapiforumadvisor wrote: > > Hi Thiru, > > We didn't receive your private message. Can you please provide them again? > > Thanks, > Anth

Google Ads' API Basic Access Approval

2019-11-25 Thread Ali K
Hi, Does anyone know how long it takes for Google Ads' API Basic Access approval? I submitted an application for Basic Access two weeks ago however I have not heard back about my application. Right now it just says Test Account. This is the form I filled out: https://services.google.com/fb

Usage of the API (for Python) to add remarketing audience lists.

2021-06-14 Thread Eliza K
Hello, we would like to use the API (for Python) to add remarketing audience lists. We would like to use the 'category' parameter which we will provide the appropriate value according to which the list is to be created. Can we get a sample JSON with completed data that we can follow? When using th

Re: How get CPA for campaigns with MAXIMIZE_CONVERSIONS strategy types

2021-08-09 Thread Olga K
UPD: I figured out how to manage ROAS for campaigns with strategy types MAXIMIZE_CONVERSIONS. понедельник, 9 августа 2021 г. в 12:52:16 UTC+3, Olga K: > Hi, > We try to get data from campaign with strategy types MAXIMIZE_CONVERSIONS. > We get some data but we can't get target_c

Simple conversion tracking via curl request from BE

2021-10-21 Thread Hilko K
Hi, I would like to add conversion tracking to my ads via requests that I can fire directly from BE instead of using the tag manager FE snippets. I need this because some of the conversions are done a couple of days later once someone manually updates something on a account that came in via g

Re: Simple conversion tracking via curl request from BE

2021-10-22 Thread Hilko K
Hi Yasar, thanks for the fast reply! Sorry, with FE I mean frontend html/JS code, like the google tag manager snippets, or any interaction that is blocked by privacy focus users, that use adblockers or don't consent to google cookies. (On top of that in the manual systems behind the frontend I

Re: Simple conversion tracking via curl request from BE

2021-10-25 Thread Hilko K
Hi Yasar, After searching a bit I found this API https://developers.google.com/google-ads/api/docs/samples/upload-offline-conversion Wouldn't that cover my case? like been able to tigger conversion tracking via Google Ads API? If not do you know who or which team I could ask for more infos abou

Ad previews with api

2022-02-22 Thread Ramesh K
Hi, Will you please let me know how to view the ad previews using the new ads api. Thanks, Ramesh -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this messa

How to pin headlines in responsive search ads using google ads API ?

2022-06-02 Thread Vasyl K.
Hi Google Ads Team, Please inform if you have some instructions for pinning headlines in responsive search ads. Many thanks. Regards, Vasyl -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Placeholder Feed Item attributeValues Price extension

2018-01-24 Thread rohan . k
Hi guys, I referred to this table https://developers.google.com/adwords/api/docs/appendix/placeholders#price to fetch data for price extension. My query is, for accounts where there is no "mobile URLs" present, in some cases, the attribute ID "10" is not present, whereas in some cases. the a

create customer match audience using rest interface

2021-02-10 Thread Dhamayanthi K
e operations mainly add and remove users to the user list for customer-match audience type. Thanks, Dhamayanthi K -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You rec

Re: create customer match audience using rest interface

2021-02-22 Thread Dhamayanthi K
Hi, Thank you for your reply. Yes, I was able to upload the user list after I run RunOfflineUserDataJobas rest API. The clarification needed here is that, the client library example doesn't show this step in the example code provided. So whoever uses the client library example to try out, may no

How to PAUSE a Managed Placement of AdGroup

2021-03-03 Thread K Raza
Hi Support, I am using python to build a app for my client. I want to PAUSE a specific Placement using my code. How can I do that? There is no example for this Here is image, for example I want to PAUSE latimes.com placement [image: google_placement.png] -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~

Re: How to PAUSE a Managed Placement of AdGroup

2021-03-03 Thread K Raza
I am using google Ads API v6 On Wednesday, March 3, 2021 at 11:13:55 PM UTC+5 K Raza wrote: > Hi Support, > > I am using python to build a app for my client. I want to PAUSE a > specific Placement using my code. How can I do that? There is no example > for this > >

Can I PAUSE a Managed Placement of AdGroup ?

2021-03-04 Thread K Raza
Hi Can we PAUSE a Managed Placement of AdGroup using Google Ads API? Here is screen shot of my placements that i want to pause using API (v6) Python. [image: google_placement.png] -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blog

Re: How to PAUSE a Managed Placement of AdGroup

2021-03-04 Thread K Raza
I have a python example and that worked for me to pause the placement. +++ def pause_placement (client, customer_id, ad_group_id, criterion_id): agc_service = client.get_service("AdGroupCriterionService", version="v6") ad_group_criterion_operation = client.get_type(

Re: How to PAUSE a Managed Placement of AdGroup

2021-03-05 Thread K Raza
Hi @Anthony I notice that Google Ads Python Library give error on CENTOS6 with Python 3.8. It worked ok On Windows. Here is what I am getting even all is good. ad_group_criterion.resource_name = agc_service.ad_group_criteria_path(customer_id, ResourceName.format_composite(ad_group_id, crite

Re: How to PAUSE a Managed Placement of AdGroup

2021-03-05 Thread K Raza
This is resolved. v6 have some fixes and my script was using old object. Sorry for this. On Friday, March 5, 2021 at 10:49:11 PM UTC+5 K Raza wrote: > Hi @Anthony > > I notice that Google Ads Python Library give error on CENTOS6 with Python > 3.8. It worked ok On Windows. > &

Expiry of Refresh Token / Access Token

2021-03-13 Thread K Raza
My google ads token expired after a week. Can I generate a long life token for server side app? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message

Managed Placement View + Cost of each placement

2021-04-07 Thread K Raza
Hi, Is this possible using google ads API that we can fetch cost of each placement. When I try to add cost metrics, I get error that invalid field. It works ok with impressions. I am using managed_placement_view Thanks -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on

Access Token and Refresh Tokens of Google Ads API

2021-04-20 Thread Lakshmi k
Hi All, Our company is working on getting some of the data points like clicks, cost etc., from Google Ads API using the SSIS packages (Rest API) When working on this using API documentation, we came up to see that the refresh and access tokens works for some time. We generally schedule the SSIS

Ad Group Asset (image) URL Required

2021-04-30 Thread K Raza
Hi, I want to fetch Assets of my AdGroup/Ads. I can see there are example to fetch assets, but I want to fetch link of a particular asset with my Ad. There is a AdGroupAdAssetView, but that not return info for Display Ads. Can you please help Thanks -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: Where can I find an a Google Ads API pro to hire?

2021-04-30 Thread K Raza
Hi, I can be helpful Thanks. On Friday, April 30, 2021 at 10:08:08 PM UTC+5 high...@gmail.com wrote: > We're moving away from the Adwords API v201809 over to the new Google Ads > API v6/7. I'm looking for someone who has experience with the new API and > is well versed in the object model/gra

API limits for TargetingIdeaService

2019-11-26 Thread Thiru K
This thread is related to https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/adwords-api/RCTedE2ByNU/QbedyUYvCQAJ Considering the suggestion, we have increased the number of seed per request to 200 for Keyword ideas and page size as 800. But when I increase seeds above 100

Re: API limits for TargetingIdeaService

2019-11-26 Thread Thiru K
Hi Anthony, I have created a new thread, will upload logs once I get a reply. Thanks, Thiru... On Monday, 25 November 2019 21:02:00 UTC+5:30, adsapiforumadvisor wrote: > > Hi Thiru, > > Unfortunately, we still didn't receive them. Please click the dropdown > then select the *reply privately to

Re: API limits for TargetingIdeaService

2019-11-26 Thread Thiru K
Hi Anthony, I have created a new thread as suggested and will upload logs once I got a reply. https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/adwords-api/d7Q7M1_ZbLU/GYokM-eOCQAJ Thanks, Thiru.. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on o

Re: API limits for TargetingIdeaService

2019-12-16 Thread Thiru K
Hi, I have sent the requested info in reply privately. can you please confirm if you have received. Once I sent I am seeing its message sent alert. If you are still not able to see request to share your mail id where i can send you the details. Thanks, Thiru.. On Wednesday, 27 November 2019 0

How to send a notification when the status of the ad, campaign is updated?

2020-05-12 Thread CH K
Hello! I am managing ad service using adwords api, and currently having one problem. The problem is that it is difficult to check in real time when the advertisement is stopped because of some sort of reason. I want to detect when the status of an advertising entity such as a campaign changes.

Ad, Placement, Region DMA, Impr., Clicks, and Cost into 1 Report

2024-12-30 Thread Steven K
Hi, How do I get Ad, Placement, DMA Region, Impr., Clicks, and Cost all into 1 report? Is that possible in FiveTran and Downstream SQL? The Google Ads UI doesn't allow it in custom reporting and blanks it out. Does that mean I can't do it downstream either? Thanks, -- -- =~=~=~=~=~=~=~=~=~=

Re: conversion post for gbraid & wbraid click identifiers

2024-12-03 Thread O K
Still, there is clarification needed. In case GBRAID and user identifiers cannot be processed in one API call, I found that I can call once with GBRAID and a second time with the user identifier. There is no error in this case. But still, I don't know how to check which identifier was used b

Re: why is historical data in google ads changing when pulled again?

2025-03-24 Thread K T
Hi, We are pulling *campaign* and *ad_group_ad* reports. Also, what is the maximum number of days of past data that can be updated? Thanks, KT On Monday, March 24, 2025 at 5:35:04 PM UTC+5:30 Google Ads API Forum Advisor wrote: > Hi, > > Thank you for reaching out to the Google Ads API supp

Re: why is historical data in google ads changing when pulled again?

2025-03-26 Thread K T
Hi, Thanks for the detailed response. 8650666401is the customer id. On Wednesday, March 26, 2025 at 5:45:24 PM UTC+5:30 Google Ads API Forum Advisor wrote: > Hi, > > I understand that you are fetching data using Fivetran which is internally > using Google Ads API >

Re: why is historical data in google ads changing when pulled again?

2025-03-26 Thread K T
stable. We would like to understand how many past days' metrics can be expected to change or adjust and when these metrics will stabilize. In your initial response, you mentioned that the metrics do adjust. On Wednesday, March 26, 2025 at 3:28:57 PM UTC+5:30 K T wrote: > My concern is

Re: why is historical data in google ads changing when pulled again?

2025-03-26 Thread K T
My concern is related to Google Ads API itself On Tuesday, March 25, 2025 at 7:35:38 PM UTC+5:30 Google Ads API Forum Advisor wrote: > Hi, > > Please note that your concern is related to Google Ads and our team only > provides support for *Google Ads API* >

Re: why is historical data in google ads changing when pulled again?

2025-03-27 Thread K T
Thanks, waiting for the response from another support team. On Wednesday, March 26, 2025 at 7:02:47 PM UTC+5:30 Google Ads API Forum Advisor wrote: > Hi, > > I'm adding another support team for their expertise in troubleshooting > your issue. You should receive an email to assist you shortly. >

Re: issue with generateshareable previews service

2025-03-03 Thread Ramanajee K
Thank you for your response. On Mon, 3 Mar 2025 at 19:58, Google Ads API Forum Advisor < adsapi@forumsupport.google> wrote: > Hi Ramanajee, > > There are no updates to share on this issue quite yet. Rest assured we > will reach out to you as soon as there is an update to share. > > > Thanks, > >

Why is historical data in Google Ads changing when pulled again?

2025-03-24 Thread K T
Hi, We are pulling data from Google Ads using *Fivetran*, but we’ve noticed that when we fetch the same data (from 2 days back) again as per our scheduled runs, the numbers have changed. This is impacting our reports and analysis. For example, the cost we have received on 11th is $1000, on t

Re: Why is historical data in Google Ads changing when pulled again?

2025-03-24 Thread K T
Just a correction, For example, the cost we have received on Mar 11th is $1000, on the next day, it was increased to $1100 and on the following day, it reduced to $900 for the same date i.e. Mar 11th On Monday, March 24, 2025 at 1:43:29 PM UTC+5:30 K T wrote: > Hi, > > We are pulling

Re: why is historical data in google ads changing when pulled again?

2025-03-25 Thread K T
Hi, I was asking how many days of past data changes /adjusts. For example, can we trust the metrics of the date 2025-03-23 that I have pulled today. Will those metrics change tomorrow or future and when can I expect that the metrics won't change? On Tuesday, March 25, 2025 at 1:41:56 PM UTC+5:

Re: why is historical data in google ads changing when pulled again?

2025-03-25 Thread K T
Hi, It seems that you misunderstood my question. You have mentioned "*Yes, this is expected behavior as the backend is adjusting metrics and this is also related to data freshness discussed in this document . *" So, How many days of

[no subject]

2023-03-24 Thread Erika con k
-- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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

Google Adwords API oauth issue

2014-04-28 Thread Indrani K G
I've selected default.aspx as a start page,then i enter client ID and press "Get campaings"and always receive Failed to get campaigns. Exception says "OAuth provider cannot be null when selecting Authorization method as "OAuth"." What am i doing wrong?I have refresh token,oauth client id,secret

Upload Promotional code (coupon) code through API

2013-10-23 Thread Maciej K. Wisniewski
Is there any feature in the API that would allow to upload a Promotional code (coupon) to the account ? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~

One adword API developer token for multiple account

2014-10-29 Thread Shijo k j
I have to download report from multiple Adwords accounts, they are not linked under the same MCC hierarchy. I have registered with one of them and have a developer token for that account. Now I want to use this developer token with all other accounts if it is possible to download report?. Can I

Re: One adword API developer token for multiple account

2014-10-31 Thread Shijo k j
y to do this is to link the accounts under the same > MCC hierarchy. You should be able to link them this way without disrupting > other means of accessing the accounts. > > Regards, > Mike, AdWords API Team > > On Wednesday, October 29, 2014 3:24:55 AM UTC-4, Shijo k j wrote

Get total metrics of all shopping campaigns per each day

2014-11-18 Thread lukasz . k . malec
Hello, I'm involved in developing application which generates monthly reports with AdWords Reporting API. One of primary parts of that report is a chart which presents values of particular metrics for each day over month period. Here is sample picture below for Search Network: I'm using Accou

Get total metrics per each day for of all shopping campaigns

2014-11-21 Thread lukasz . k . malec
Hello, I'm involved in developing application which generates monthly reports with AdWords Reporting API. One of primary parts of that report is a chart which presents values of particular metrics for each day over month period. Here is sample picture below for Search Network: I'm using Accou

Re: Get total metrics of all shopping campaigns per each day

2014-11-21 Thread lukasz . k . malec
Hey Josh, Thanks for your answer. All things you mentioned are clear to me. I'm fully aware of that all requests are done against one account. But as far as I know CAMPAIGN_PERFORMANCE_REPORT with filter applied: *AdvertisingChannelType=SHOPPING* will contain one row per each campaign for a req

Issue with adding additional product partition in shopping campaign with API

2016-02-12 Thread Shijo k j
I am implementing the code to call the adwords api for shopping campaign. I want to use the feature for product partition under the adgroup criterion service. I created the campaign with shopping type and created the adgroup under the campaign. And then, I tried to run the example code in Add

Issue with adding product partition tree in shopping campaign with API

2016-02-12 Thread Shijo k j
I am implementing the code to call the adwords api for shopping campaign. I want to use the feature for product partition under the adgroup criterion service. I created the campaign with shopping type and created the adgroup under the campaign. And then, I tried to run the example code in Add

i am getting an error in adwords Api

2011-03-14 Thread Bakkesh K S
Hi sir, I have downloaded all files in php and i have changed according to the video but i am getting this error please can u help me out. SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://adwords.SOAP- ERROR: Parsing WSDL: Couldn't load from 'https://adwords.google.com/ api/adwords/

Need to show all result with complete URL (landing page) not with domain name

2011-04-21 Thread Bakkesh K S
Hi sir/madam, I am working on google adwords api here i am giving keywords and i am getting all related keywords from the goggle,but i am getting only index pages that website but not other pages in that website so any one help in this plz, Thanks, Bakkesh -- =~=~=~=~=~=~=~=~=~=

Re: How do I get Campaigns clustered by Labels at the keyword level?

2019-07-05 Thread Markus K-T75
Hi, thanks for your reply again. I know you said that there is no workaround. But wouldn't it be possible to calculate the values from KEYWORD_PERFORMANCE by my own? The next question: The data I need is already there in the UI of google ads. Is there a way to download my self created report vi

Campaign Feed creation for Sitelink thrown exception

2019-11-25 Thread Swaroop k l
Hi Team, When we are creating campaign feed for sitelinks which is throwing an exception saying that " INVALID_FUNCTION_FORMAT". Could you please assist here? And also, please provide an example for "Add sitelinks to a campaign using feeds" in Java. Request --- MethodName: google.ads.googl

Feed-based Extensions Migration

2021-09-01 Thread Swaroop k l
Hi Team, After first automatic migration for ad extensions on October 20, 2021, can we create new account with feed based extensions in adwords API? What about accounts that are created after Oct 20 ? Will we be able to create feed based extensions for them as well? Thanks & Regards, Swaroop

Feed-based migration

2021-09-01 Thread Swaroop k l
Hi Team, After first automatic migration for ad extensions on October 20, 2021, can we create new account with feed based extensions in adwords API? 1). What about accounts that are created after Oct 20 ? Will we be able to create feed based extensions for them as well? 2). can we add feed base

Corresponding UI fields in query builder

2021-11-10 Thread Rakesh G K
Hello, I am using the REST feature for Google Ads., I am trying to build a query using the query builder, but its difficult to find some of the fields, I see them in UI but not in the query. Can you please help me identify these fields in query - Ad Group Status Reason - Custom fields. Regard

Re: Corresponding UI fields in query builder

2021-11-21 Thread Rakesh G K
Hi Team, I had replied the details to the author. Any updates here. On Thursday, November 11, 2021 at 2:12:17 AM UTC+5:30 adsapi wrote: > Hi Rakesh, > > Could you send us privately a screenshot of the UI showing these fields? > > Reminder: Share your feedback about the Google Ads (AdWords) API!

Apache Log4j vulnerability

2021-12-15 Thread Swaroop k l
Hi Team, We are using Adwords API version v201809 and Apache Log4j(1.18 and 2.0Beta4) in prod as of now. Do we need to update Apache Log4j version now though we don't use GoogleAds? Thank you. Swaroop -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://go

deprecation and sunset of Feeds

2022-01-05 Thread Swaroop k l
Hi Team, Below google blog says that auto migration date for CALL extension is on February 15, 2022. But Call asset API's are still not working in google ads to remove feed extension. May I know what could be the auto migration date for CALL assets? https://ads-developers.googleblog.com/2021/

API availability for audience size displayed while creating new custom segment

2022-02-25 Thread Sreelal K M
Hi, I am already using the Google Ads API v9 and I am looking for an API that can return the estimated audience size that is displayed on the right side while creating a new custom segment (screenshot attached). Path to above mentioned feature on GA UI: Audience manager -> Segments -> Custom s

Re: KeywordPlanService.GenerateHistoricalMetricsRequest only returns GLOBAL results

2022-05-24 Thread Anthony K GROSS
Hi there, We are also facing to this problem. We did v9 or v10, from google-ads on Python and via REST directly : same issue : generate_historical_metrics doesn't care about geo_constant_target, network, ... and return metrics without any parameters except Keywords. Even previewing the keyword_

Data mismatch between keyword planner UI and targetingIdea service in adwords API

2020-09-15 Thread Sreelal K M
I am trying to implement the keyword planner utility using adwords api python sdk. But it looks like the keyword ideas provided by the keyword planner UI is entirely different from the adwords api response. *Example:* seed keyword - face location - india (default) language - english (default)

Data mismatch between keyword planner UI and targetingIdeas service response in adwords API

2020-09-15 Thread Sreelal K M
Hi I am trying to implement the keyword planner utility using adwords api python sdk. But it looks like the keyword ideas provided by the keyword planner UI is entirely different from the adwords api response. *Example:* seed keyword - face location - india (default) language - english (defau

How to get image extensions beta support

2020-11-12 Thread Sreelal K M
Hi I went through the documentation of new image extension feature which is in beta at the moment and it looks like not all advertiser accounts has access to this feature. I would like to know the steps required to get access to the image extension feature in my ad account. Also, I would like

Re: How to get image extensions beta support

2020-11-15 Thread Sreelal K M
Hi Team, Thanks for that information. Regards. *Sreelal K M* Shopalyst Technologies +91-9496585250 On Mon, Nov 16, 2020 at 12:58 PM Google Ads API Forum Advisor Prod < adsapiforumadvi...@gmail.com> wrote: > Hi Sreelal, > > The image extension type > <https://developers.

API to get audience size / traffic estimates for affinity or in-market audience

2020-12-18 Thread Sreelal K M
Hi Is there any adwords / google ads API that provides audience size or traffic estimates for affinity or in-market audiences (NOT custom audiences) ? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~

TrafficEstimatorService results different from forecast tool in google ads UI

2021-01-21 Thread Sreelal K M
Hi I have been using the TrafficEstimatorService from adwords API to get impression/spend forecast for a set of input search keywords. But the impression per day / spend per day values returned by the API seems to be much less than the values shown on the Google ads keywords forecast tool avai

Matching function in dynamic display ad

2020-05-20 Thread Sreelal K M
Hello I am trying to create a dynamic display remarketing campaign using a dynamic display ad feed (custom). For the ad, I am using TemplateAd using an HTML zip which contains my template file. I need to target a subset of feed items from the feed for the campaign and I am trying to use a match

Final URL in dynamic display ad feed

2020-05-20 Thread Sreelal K M
Hello I am trying to create a dynamic remarketing display campaign with a TemplateAd using HTML5 zip file. The ad template represents a product carousel where each product item has an image and a title and I am using a dynamic display ad feed linked with my campaign to achieve this. Each produ

venkatesan.website

2020-03-23 Thread k Venkatesan kalimoorthy pillySA
venkatesan.website -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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

Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-23 Thread k Venkatesan kalimoorthy pillySA
On Wednesday, 11 March 2020 16:59:48 UTC+5:30, Seungha Kim wrote: > > I am trying to get ExtensionFeedItems(type=AFFILIATE_LOCATION)data, using > CustomerExtensionSetting > but, the following query does not return resourceNames. > > *SELECT customer_extension_setting.extension_type, > customer_

Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-23 Thread k Venkatesan kalimoorthy pillySA
On Wednesday, 11 March 2020 16:59:48 UTC+5:30, Seungha Kim wrote: > > I am trying to get ExtensionFeedItems(type=AFFILIATE_LOCATION)data, using > CustomerExtensionSetting > but, the following query does not return resourceNames. > > *SELECT customer_extension_setting.extension_type, > customer_

Uploading conversion adjustments

2022-02-09 Thread 'Anastasia K.' via Google Ads API and AdWords API Forum
Could you please advise which way is better for Uploading conversion adjustments: uploading to a file through the Google Ads interface, or by transmitting the data through the Google Ads API (AdWords API) . Are there any important differences

iOS 14 update and passing gclid

2021-04-30 Thread 'Eric K' via AdWords API and Google Ads API Forum
I know that Google stopped passing gclid for iOS 14 clicks due to ATT changes that Apple is implementing. However, this week Apple updated its guidance (see below) and the way i'm reading it passing gclid in order to track conversions is now allowed under ATT. How can we ask the Google tech tea

Campaigns data missing

2021-12-14 Thread &#x27;K Sai Manoj Reddy' via AdWords API and Google Ads API Forum
Hi support team, Spend and other metrics from API are mismatching compared to the dashboard. We found out that the `Performance Max` campaign data is not getting in the API response of `ad_group_ad` resource. And, we are able to get the campaign details in the `campaign` resource. Could you ex

Campaigns data missing

2021-12-14 Thread &#x27;K Sai Manoj Reddy' via AdWords API and Google Ads API Forum
Hi support team, Spend and other metrics from API are mismatching compared to the dashboard. We found out that the `Performance Max` campaign data is not getting in the API response of `ad_group_ad` resource. And, we are able to get the campaign details in the `campaign` resource. Could you ex

<    1   2