Re: Get CAMPAIGN_LOCATION_TARGET unable to get results from a specific campaign ID

2016-04-27 Thread 'Anthony Madrigal' via AdWords API Forum
Hi, Could you please provide me with the SOAP request and response that resulted in this error? Please use *Reply privately to author *when doing so. Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googlead

Re: Get CAMPAIGN_LOCATION_TARGET unable to get results from a specific campaign ID

2016-04-27 Thread Hasmer Salubre
quot;]=> string(7) "Display" ["campaignState"]=> string(7) "enabled" ["ctr"]=> string(5) "0.16%" ["costAllConv"]=> string(1) "0" } } On Wednesday,

Re: Get CAMPAIGN_LOCATION_TARGET unable to get results from a specific campaign ID

2016-04-27 Thread Hasmer Salubre
I have replied in the email from adwordsapia... or every time I reply I use the button here *Reply privately to author?* On Wednesday, April 27, 2016 at 10:38:51 PM UTC+8, Anthony Madrigal wrote: > > Hi, > > Could you please provide me with the SOAP request and response that > resulted in this

How can i get total ads count using Campaign ID? Just Count.

2019-09-09 Thread yogesh patel
Hello, How can I get total ADS count using Campaign ID? I already did some code but it was taking too much time when I have multiple campaigns? $selectorAds = new Selector(); $selectorAds->setFields(['Id']); $selectorAds->setOrder

Re: How to make a query to validate if campaign id exists?

2022-12-23 Thread SUBIN P VASU
There are no campaigns inside MCC accounts On Friday, 23 December 2022 at 23:29:39 UTC+5:30 luiz...@mercadolivre.com wrote: > Hey, how are u? > > I would like to know how I can make a query that validates if there is a > campaign id inside an account, this account can be mcc

Re: How to make a query to validate if campaign id exists?

2022-12-23 Thread 'Luiz Eduardo Da Cruz' via Google Ads API and AdWords API Forum
t;> I would like to know how I can make a query that validates if there is a >> campaign id inside an account, this account can be mcc or even mcc manager. >> >> Thanks! > > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also fin

Re: How to make a query to validate if campaign id exists?

2022-12-24 Thread SUBIN P VASU
search for the campaign id in that account. https://github.com/googleads/google-ads-php/blob/main/examples/BasicOperations/GetCampaigns.php this will help you get all the campaigns from the Google Ads account. You can use the following example to use it for specific campaign id. https

Re: How to make a query to validate if campaign id exists?

2022-12-24 Thread 'Luiz Eduardo Da Cruz' via Google Ads API and AdWords API Forum
Thank you! On Saturday, December 24, 2022 at 9:30:42 AM UTC-3 subin...@gmail.com wrote: > search for the campaign id in that account. > > > https://github.com/googleads/google-ads-php/blob/main/examples/BasicOperations/GetCampaigns.php > > this will help you get all the

Re: How to make a query to validate if campaign id exists?

2022-12-27 Thread SUBINPVASU
There are no campaigns inside MCC or manager accounts. On Fri, Dec 23, 2022 at 11:29 PM 'Luiz Eduardo Da Cruz' via Google Ads API and AdWords API Forum wrote: > Hey, how are u? > > I would like to know how I can make a query that validates if there is a > campaign id i

RE: How to make a query to validate if campaign id exists?

2022-12-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi, Thank you for reaching out to the Google Ads API support team. With regards to your concern, you can use campaign report using the campaign.id field. Let me know if this what you are looking for. If not, could you please provide full screen screenshot of the UI? So that i can further invest

Re: Google Adwords showing record for Campaign Id, while API returns nothing

2017-08-15 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, Could you tell me how you are retrieving the data for your campaigns? Are you using CampaignService or Campaign Performance Report

Re: Which report will get the campaign id or name with gclid?

2022-07-21 Thread JM
Got it thanks! Is the api the only place where campaign id/name and gclid can be looked up together? Does the Google Ads Editor have this information? On Thursday, July 21, 2022 at 2:33:35 AM UTC-4 adsapi wrote: > Hi JM, > > Thank you for reaching us out. I am Sherwin from Googl

Re: Which report will get the campaign id or name with gclid?

2022-07-26 Thread Joe Man
I tried querying the click_view table, but why does it return nothing? Is data not populated in click_view for App campaigns? SELECT campaign.id, campaign.name FROM click_view where segments.date DURING YESTERDAY On Thu, Jul 21, 2022 at 3:18 PM Google Ads API Forum Advisor wrote: > Hi Joe,

Re: Which report will get the campaign id or name with gclid?

2022-07-26 Thread JM
with REST, only this is returned { "fieldMask": "campaign.id,campaign.name" } with JAVA, this is returned INFO: SUCCESS REQUEST SUMMARY. Method: google.ads.googleads.v11.services.GoogleAdsService/SearchStream, Endpoint: googleads.googleapis.com:443, CustomerID: x, RequestID: qnjWppCg

Re: how to get a single campaign with campaign id of course?

2017-12-08 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi, You can use the CampaignService.get() to retrieve campaigns in your account. If you want to retrieve only a single campaign, then you can filter by Id

Re: how to get a single campaign with campaign id of course?

2017-12-08 Thread kendan
I will try this, Ill let you know if this works later. A follow up question, is it possible to use AWQL for deleting data? On Friday, December 8, 2017 at 3:47:30 PM UTC+8, ken...@blvnp.com wrote: > > I want to retrieve a single campaign. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: how to get a single campaign with campaign id of course?

2017-12-08 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi, For removing data like removing campaigns, you cannot use AWQL as "DELETE" query is not supported, only the "SELECT" query is supported. You can refer to this example on how to remove a data pa

Re: how to get a single campaign with campaign id of course?

2017-12-08 Thread kendan
Okay thank you very much! On Friday, December 8, 2017 at 3:47:30 PM UTC+8, ken...@blvnp.com wrote: > > I want to retrieve a single campaign. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.googl

Re: adgroup id,adgroup name,campaign id,campaign name in getkeywords api

2018-02-02 Thread 'Milind Sankeshware (AdWords API Team)' via AdWords API Forum
reference/v201710/AdGroupCriterionService#get> API call. You can then retrieve adGroup name <https://developers.google.com/adwords/api/docs/reference/v201710/AdGroupService.AdGroup#name> , campaign id <https://developers.google.com/adwords/api/docs/reference/v201710/AdGroupService.Ad

AdWords API How can I get the campaign ID and the Group ID

2009-08-11 Thread Larry
Hi,I am a fresh man for adwords API develop. there is a question , how can i get the campaign ID and the Group ID? In api demo : AdGroup adGroup = new AdGroup(); adGroup.setCampaignId(Long.parseLong ("INSERT_CAMPAIGN_ID_HERE")); adGroup.setName("Sample Ad Group"

RE: How can i get total ads count using Campaign ID? Just Count.

2019-09-09 Thread Google Ads API Forum Advisor Prod
Hi Yogesh, Thank you for reaching the support. You could use Ad Performance Report to get the list of the ads associated with a campaign based on the campaign id. Please find below the sample report query for reference. SELECT Id, CampaignId FROM AD_PERFORMANCE_REPORT WHERE CampaignId IN

Re: How can i get total ads count using Campaign ID? Just Count.

2019-09-09 Thread yogesh patel
Hey, I know that things.but i want to get the count of active ads using campaign id? On Tue, Sep 10, 2019 at 2:37 AM Google Ads API Forum Advisor Prod < adsapiforumadvi...@gmail.com> wrote: > Hi Yogesh, > > Thank you for reaching the support. You could use Ad Performance

How to add campaign id when downloading the campaign report in Adwords UI

2016-11-16 Thread Will Yun
We can add the campaign id when downloading the campaign report under MCC account,but not the single adwords report. Is there anyway to get the campaign report with campaign id without using Adwords API. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

How do I get all ad groups with their extensions using campaign id?

2017-03-15 Thread JC Lee
most efficient way to do this? AdGroupExtensionSettingService has no campaign id selector. Must I first get all the ad group ids and use those as the selector? This would require 2 separate calls one after the other which means it takes

Need Campaign Id/Name, Ad Group Id/Name, and Ad in Fewest Calls

2020-04-21 Thread Shannon
I am working on an integration where my primary concern is retrieving Expanded Text Ads for an account and having our app edit them. The Ad Services calls are ok, but I need to get Campaign Id/Name and Ad Group Id/Name when storing them in our system for friendly user display in our app. The

AdWords API Re: How can I get the campaign ID and the Group ID

2009-08-11 Thread AdWords API Advisor
rds API develop. > > there is a question , how can i get the campaign ID and the Group ID? > In api demo : > > AdGroup adGroup = new AdGroup(); >       adGroup.setCampaignId(Long.parseLong > ("INSERT_CAMPAIGN_ID_HERE")); >       adGroup.setName("Sample Ad Group

Re: How to add campaign id when downloading the campaign report in Adwords UI

2016-11-16 Thread 'Peter Oliquino' via AdWords API Forum
Hi Will, Could you confirm if you are using AdWords Scripts or the AdWords API in generating the reports? I noticed you mentioned that you are able to download reports using your MCC account, unfortunately, this is currently not supported in the AdWords API as report generation is supported onl

Re: How do I get all ad groups with their extensions using campaign id?

2017-03-15 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, Yes, you need to retrieve the AdGroupId in a previous request and use these Ids in a predicate in the AdGroupExtensionSettingService selector . If your extensions have non-zero impress

Re: Need Campaign Id/Name, Ad Group Id/Name, and Ad in Fewest Calls

2020-04-21 Thread Shannon
Solved. FYI, you can get everything needed for this scenario using the Ad Performance Report. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message be

How to get all campaign id & name from any type of campaigns - in single request

2016-08-11 Thread Marina Kurtin (DAU-UP)
Hello, I need to get all campaign ids & names from any type of my campaigns. The types I have are: 1. Video 2. Display 3. Multi Channel 4. Search Is it possible to get all of those from: CAMPAIGN_PERFORMANCE_REPORT

How to get - Campaign Id, Budget, Spend, Clicks, Impressions, Advertising channel data as one record

2020-07-24 Thread Girish H
I have few providers and they have many customers under them. I need to get data Campaign Id, Budget, Spend, Clicks, Impressions, Advertising channel for all these customers which needs to be stored into application database. Please suggest whether I should go with Campaign Performance Report

AdWords API v2009: Unable to get a list of ad groups for a given campaign id

2010-03-08 Thread abhijat
While trying to get a list of ad groups by campaign id using v2009 AdGroupService we get the following error response. EntityNotFound.INVALID_ID @ selector; trigger:'CampaignId: 33290390'. Any pointers on where I might be going wrong? Here is some information that might

Re: How to get all campaign id & name from any type of campaigns - in single request

2016-08-11 Thread 'Joyce Lava' via AdWords API Forum
Hello Marina, Yes, you may use Campaign Performance Report <https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report> to get the campaign id and campaign name from any advertisingChannelType (video, display, multi channel, search, etc.). Just inclu

RE: How to get - Campaign Id, Budget, Spend, Clicks, Impressions, Advertising channel data as one record

2020-07-24 Thread Google Ads API Forum Advisor Prod
Hi Girish, Thanks for reaching out. With regards to your concern, you can use the campaign performance report with using field. If you still have any issue, can you please provide the complete report definition you are using as well as the download report,screenshot of the UI and your clientCus

AdWords API Re: v2009: Unable to get a list of ad groups for a given campaign id

2010-03-09 Thread AdWords API Advisor
I Team On Mar 8, 1:53 pm, abhijat wrote: > While trying to get a list of ad groups by campaign id using v2009 > AdGroupService we get the following error response. > EntityNotFound.INVALID_ID @ selector; trigger:'CampaignId: 33290390'. > > Any pointers on where I mig

AdWords API Re: v2009: Unable to get a list of ad groups for a given campaign id

2010-03-17 Thread abhijat
authToken used is generated for an MCC account that > can't contain any campaigns.  Please ensure you are setting the > headers correctly and try your request again. > > Best, > - Eric Koleda, AdWords API Team > > On Mar 8, 1:53 pm,abhijat wrote: > > > While trying t

<    1   2