some service. Is it
possible?
Thanks!
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
You received
ok Im tring to get my google campain to wor but I need help
--~--~-~--~~~---~--~~
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
Looking through the Adwords API documentation for MutateJobService I can
find references to BulkMutateJob objects, but no way to submit them. We
would like the ability to create a job and then add streams of operations
to it as described in the BulkMutateJob documentation. From looking online
I
Hi Takeshi, Akil,
I'm having the same issue. Could we please have an update on this issue?
Cheers,
Jake
On Sunday, January 27, 2013 7:29:19 PM UTC-8, Takeshi Hagikura (AdWords API
Team) wrote:
>
> Unfortunately, it's not possible to track the status externally.
>
> Be
when trying to uploads clicks via API I'm getting the above error, is
someone able to decipher it please? code is below:
client_id, client_secret, developer_token = settings.CLIENT_ID,
settings.CLIENT_SECRET, settings.DEVELOPER_TOKEN
credentials = oauth2.GoogleRefreshTokenClient(
client_id,
cl
do you have the required code in python please?
On Thursday, July 28, 2022 at 11:57:43 AM UTC+1 adsapi wrote:
> Hi Jake,
>
> Thanks for reaching out to the Google Ads API Support.
>
> Since you encountered an error while uploading the offline conversions,
> could you p
onversion.gclid}" '
f'to "{uploaded_click_conversion.conversion_action}"'
)
On Thursday, July 28, 2022 at 12:56:55 PM UTC+1 adsapi wrote:
> Hi Jake,
>
> Thank you for the reply. I work with Yasar and allow me to assist you
> here. If you mean the logging inst
hi peter,
where am I able to get the logs once running the above code? the client
library is configured elsewhere in my application but i can confirm that
part works as expected.
many thanks,
Jake.
On Thursday, July 28, 2022 at 2:55:37 PM UTC+1 adsapi wrote:
> Hi Jake,
>
> Than
hi peter,
I sent you the logs, is there anything else you require?
On Thursday, July 28, 2022 at 3:22:29 PM UTC+1 Jake Haslam wrote:
> hi peter,
>
> where am I able to get the logs once running the above code? the client
> library is configured elsewhere in my application but i
is anyone able to help me with this please? I have the logs
On Friday, July 29, 2022 at 9:07:14 AM UTC+1 Jake Haslam wrote:
> hi peter,
>
> I sent you the logs, is there anything else you require?
>
> On Thursday, July 28, 2022 at 3:22:29 PM UTC+1 Jake Haslam wrote:
>
>>
I am building a simple web app to connect to our Adwords MMC and spit out
some reports.
In the Google API Console I created a new Client ID. I chose Installed
Application even though this is a web-based PHP tool I'm making. This page:
https://developers.google.com/adwords/api/docs/guides/auth
I am building a simple web app to connect to our Adwords MMC and spit out
some reports.
In the Google API Console I created a new (Installed Application) Client
ID. I chose Installed Application even though this is a web-based PHP tool
I'm making. This page:
https://developers.google.com/adw
I am building a simple web app to connect to our Adwords MMC and spit out
some reports.
In the Google API Console I created a new Client ID. I chose Installed
Application even though this is a web-based PHP tool I'm making. This page:
https://developers.google.com/adwords/api/docs/guides/aut
I'm using the PHP lib.
According to the following page:
https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201309-AdGroupService
I should be able to query for the following values:
BidType
BiddingStrategyId
BiddingStrategyName
BiddingStrategySource
BiddingStrategyType
Cam
alityScore',
SelectorError.INVALID_FIELD_NAME @ serviceSelector;
trigger:'PageOnePromotedStrategyGoal', SelectorError.INVALID_FIELD_NAME @
serviceSelector; trigger:'PercentCpaBidSource',
SelectorError.INVALID_FIELD_NAME @ serviceSelector; trigger:'PricingMo
examples in the PHP Lib for these objects.
Can anyone point me in the right direction?
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.go
the account IDs via the API. They don't show up in the web
interface that I have seen.
Jake
On Thursday, March 6, 2014 10:12:10 AM UTC-7, Frank Tolsma wrote:
>
> Ray,
>
> So the MCC info should be in the ads.properties file and then I should be
> able to iterate thr
Using the PHP Lib, there is the ReportUtils.php class(es). The way the
example scripts work for reporting is that your report is downloaded to a
file on your computer. The file is pre-formatted sort of like this:
Report Title Blah Blah StartDate - End Date
CSV column description
data rows (csv
Ah excellent. I will look into that approach. Thanks!
Jake
On Friday, March 14, 2014 8:02:41 AM UTC-6, Josh Radcliff (AdWords API
Team) wrote:
>
> Hi,
>
> Although the example shows how to download to a file, you can download a
> report and just process it in memory. Simpl
Trying to get an ad performance report for a custom range:
$reportDefinition = new ReportDefinition();
$reportDefinition->selector = $selector;
$reportDefinition->reportName = 'Ad performance report #' . uniqid();
$reportDefinition->dateRange = new DateRange('20140101', '20140110');
$reportDefinit
Doh! Thanks!
On Tuesday, March 18, 2014 5:28:31 AM UTC-6, Danial Klimkin wrote:
>
> Hello Jake,
>
>
> The date range is part of the selector, not definition, so:
>
> $selector->dateRange = new DateRange('20140101', '20140110');
>
We have multiple accounts in our MMC. Right now, in order to fetch a list
of campaigns, it's on a per-account basis. That is, we have to specify
which account we want to fetch campaigns for:
$user = new AdWordsUser();
$user->setClientCustomerId($accountId);
$campaignService = $user->GetServic
Also, I've tried to do a "structure report", but it tells me "The client
customer ID must be specified for report downloads."
Any clues on this?
On Tuesday, April 22, 2014 12:27:12 PM UTC-6, Jake Wilson wrote:
>
> We have multiple accounts in our MMC. Right now,
I'm looking at all the ads for a campaign. I want to fetch the top
performing ad from the campaign. By top performing I guess I would choose
the ad with the highest CTR maybe? Or maybe the Conversion rate. Anyways,
I'm doing this kind of thing:
$user = new AdWordsUser();
$user->setClientCus
en running the report, just not when fetching report
> definitions.
>
> Regards,
> Mike, AdWords API Team
>
> On Wednesday, May 28, 2014 6:51:47 PM UTC-4, Jake Wilson wrote:
>>
>> I'm looking at all the ads for a campaign. I want to fetch the top
>> performin
eferencing.
The query works just fine without the ORDER BY clause.
On Thursday, May 29, 2014 8:56:23 AM UTC-6, Jake Wilson wrote:
>
> Ah okay that wasn't clear to me. Thank you!
>
> On Thursday, May 29, 2014 7:32:40 AM UTC-6, Michael Cloonan (AdWords API
> Team) wro
I also get a similar error when using LIMIT...
Any clues?
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Yo
Thank you for looking into this Michael. If you could reply to this post
when you discover the answer or if/when it's fixed I would appreciate it.
In the meantime I will run my query to grab everything and then sort it
locally.
Thanks,
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
I need to add 20 ipAddresses to a campaign IpBlock using Google Adwords
API. I need to conserve my API calls and potentially improve speed, so is
it possible to NegativeCampaignCriterion using an ipAddressArray instead of
one ipAddress at a time. Appreciate pointers if it is possible to add an
I am seeing, there is no specified
`retryAfterSeconds`, I have been using 30 seconds. Is that a good amount of
time to pause?
Thanks,
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https
0 operations per day and have been communicating with the AdWords API
& Third Party Compliance team about gaining Standard access.
Is exceeding the operation limit causing these errors?
How can I get more information about what is going on?
Thanks,
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=
this before, but haven't come across
an explicit answer. Is there a way to use a postal code criterion with the
TargetingIdeaService?
Thank you,
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.
Will I have to aggregate the ad_group level data to get the reports for the
campaign level, or is there a way to leverage the Google Ads API
differently to get the data on the Campaign level?
Thanks,
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://g
n] *will not segment* metrics in your SELECT clause."
Will I have to aggregate the data on the *ad_group *level to get the
reports for the *campaign *level, or is there a way to leverage the Google
Ads API differently to get the data on the *campaign *level?
Thanks,
Jake
--
--
=~=~=~=~=~=
a very basic use case.*
case 2-546035345
Kind regards,
Jake
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
You received this message because you are subscribed to
Hi Google Ads API Team,
We have the same issue - can you please provide an update on our status?
Our case number is: 5-306234781
We have provided supporting documentation but have not received a response.
Thank you,
Jake
On Friday, January 12, 2024 at 5:45:44 PM UTC-5 Google Ads API
I've also been waiting for weeks to hear back. Could someone please get in
touch with me or my team so we can push this application process forward?
On Tuesday, February 27, 2024 at 12:12:58 PM UTC-5 Google Ads API Forum
Advisor wrote:
> Hi,
>
> Thank you for reaching out to the Google Ads API
37 matches
Mail list logo