RE: Gmail Ad image URL

2019-09-02 Thread Google Ads API Forum Advisor Prod
Hi Alex,

Unfortunately, it is currently not supported to retrieve the image URL of Gmail 
ads. The only available fields for images of Gmail ads are:

GmailCreativeHeaderImageMediaId
GmailCreativeLogoImageMediaId
GmailCreativeMarketingImageMediaId

You may follow our blog for any upcoming features and updates.

Regards,
Hiroyuki
Google Ads API Team
ref:_00D1U1174p._5001UHFP8t:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/dVQYH0PX8PBD000QrUYHN-RI6ikn_x06ZAPg%40sfdc.net.


When mutating bids for a large number of ad groups multiple times : RateExceededError

2019-09-02 Thread Afaq Alam Ansari

Hi Team,

I am trying mutate bids for around 400k ad_groups in an account. This 
account exists in a Test Account. Although, the developer token I have has 
Standard Access, I keep getting rate exceeded errors.
Can someone please explain the reason behind this issue.

Following is the SOAP response of the error:

http://schemas.xmlsoap.org/soap/envelope/;>

https://adwords.google.com/api/adwords/cm/v201809;>

00059192a062ede40a37d70d06081bb4


AdGroupService


mutate


5000


1107






soap:Client


[RateExceededError rateName=OperationsPerDay, 
rateKey=sandbox_request, rateScope=ACCOUNT, retryAfterSeconds=86400]


https://adwords.google.com/api/adwords/cm/v201809;
>

[RateExceededError rateName=OperationsPerDay, 
rateKey=sandbox_request, rateScope=ACCOUNT, retryAfterSeconds=86400]


ApiException

http://www.w3.org/2001/XMLSchema-instance; xsi:type=
"RateExceededError">



RateExceededError.RATE_EXCEEDED


RateExceededError


RATE_EXCEEDED


OperationsPerDay


ACCOUNT


86400








-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5f2c4b04-9044-4608-8eea-719e9e90d240%40googlegroups.com.


Retrieve top bid lower range CPC of keyword

2019-09-02 Thread Line Rahal
Is it possible to retrieve the top bid lower range CPC of a keyword using 
the API? For the moment I use the Targeting Idea service and retrieve the 
AVERAGE_CPC field for a keyword, but I would also like to have the top bid 
lower range.
Thanks in advance for your help.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bfc3c581-28ae-4b6d-8a01-ee4019644e83%40googlegroups.com.


How can I bid for keywords with googleads-php-lib?

2019-09-02 Thread Dmitry
Using ReportDefinition (KEYWORDS_PERFORMANCE_REPORT) I get FirstPageCpc and 
keywordId

$selector = new Selector();
$selector->setFields(["Id", "AdGroupId", "AdGroupName", 
"Criteria", "AbsoluteTopImpressionPercentage", "Impressions", "Ctr", 
"AveragePosition", "FirstPositionCpc", "TopOfPageCpc", "FirstPageCpc"]);

// Create report definition.
$reportDefinition = new ReportDefinition();
$reportDefinition->setSelector($selector);
$reportDefinition->setReportName(
'Criteria performance report #' . uniqid()
);
$reportDefinition->setDateRangeType(
ReportDefinitionDateRangeType::LAST_7_DAYS
);
$reportDefinition->setReportType(
ReportDefinitionReportType::KEYWORDS_PERFORMANCE_REPORT
);
$reportDefinition->setDownloadFormat(DownloadFormat::CSV);

How can I bid (FirstPageCpc) for keywordid with googleads-php-lib? Thx.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ecdecba7-efcb-4d3a-b329-76c8b12979b9%40googlegroups.com.


Data cannot be pulled out

2019-09-02 Thread 'Yanfang Li' via AdWords API and Google Ads API Forum
 

Hi team,




I have something needs your help. The customer can’t pull the data from 
Google Adwords with the api 
https://adwords.google.com/api/adwords/reportdownload/v201809 but actually 
there's data in Google Ads. The api return“Total, --, --,0,0,0,0.00, --”. 
The data of last three days cannot be pulled out. However, the data can be 
pulled out in the previous days, no code has been revised before. Could you 
please provide any advice about how to fix the issue?




Note: Google Adwords Account ID: 838-270-3084




Thanks


Yanfang Li

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/18b40c26-da7b-451a-ae48-7ee291a4de45%40googlegroups.com.


Re: Can I create a mcc account in program way?

2019-09-02 Thread Google Ads API Forum Advisor Prod
Hi,

Unfortunately, you can only create manager accounts through the UI. In the API 
perspective, you can only create client accounts.

Regards.
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UHFOGc:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/XARDW0PX778900Asi_PM67S_GjuljDcYeWtA%40sfdc.net.


Re: Error message : AuthorizationError.CUSTOMER_NOT_ACTIVE

2019-09-02 Thread 오인기
hi

i use google account (*5499933739*) and it has many ad_account_ids  as you 
know 2167454421 is one ot them 
the hardest thing for me to understand is that the error happens in all 
those accounts since from July 26, 2019
none of the normal accounts in the attached file get a single report. In 
all cases, the following error occurs

*PHP Fatal error:  Uncaught Google\AdsApi\AdWords\v201809\cm\ApiException: 
Details: [fieldPath: ; trigger: ; errorString: A  
 uthorizationError.CUSTOMER_NOT_ACTIVE] in 
/home/NEOWIZ/ohinki2/project/Mkbank/googleads-php-lib/src/Google/AdsApi/AdWords/Report
 
ing/v201809/ReportDownloader.php:234*

i think something is wrong 


2019년 9월 2일 월요일 오후 3시 5분 52초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi,
>
> Based from the logs you provided privately, it seems that account 
> 2167454421 specified in your request is the one encountering the 
> CUSTOMER_NOT_ACTIVE error.
>
> While checking the account 2167454421, I can confirm that this account is 
> indeed cancelled. This is the reason why you are encountering this error. 
> If you wish to activate this account again for you to download the report, 
> you may refer to this guide 
> 
>  on 
> how to do so.
>
> The screenshot you provided shows a different account (5499933739). Upon 
> checking, this account is indeed active and needs no further action.
>
> Regards,
> Dannison
> Google Ads API Team
>
> ref:_00D1U1174p._5001UEHbej:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b4be989a-ba3d-45a6-bc3f-44c1c19fda4b%40googlegroups.com.


RE: Cost column of adword UI and adword API doesn't match

2019-09-02 Thread Google Ads API Forum Advisor Prod
Hi Siddhartha,

Thank you for posting your concern.

So I can further investigate the issue, could you provide the complete report 
definition and the screenshot of the Google Ads UI that you are comparing via 
Reply privately to author?

Regards,
Hiroyuki
Google Ads API Team
ref:_00D1U1174p._5001UHFOUZ:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c8heB0PX6YT500plqPuHZgSaqyTu1djDSjUw%40sfdc.net.


RE: Is it possible to get google ads client id from token

2019-09-02 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out.

Unfortunately, this is not supported in the AdWords API. OAuth2 Credentials 
such as the client ID and client secret can only be retrieved through the 
Google API Console Credentials page.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UHFOGh:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4qYWQ0PX6YDY00WcZGHG4rSLGA-aiDBeD0YA%40sfdc.net.


Cost column of adword UI and adword API doesn't match

2019-09-02 Thread Siddhartha Choubey
I am fetching data via ads api and Cost column is showing data more than 
what adword UI shows.
clientCustomerId = "7141052510"

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4662a024-addf-41ea-a491-69a28369e6ef%40googlegroups.com.


RE: Reliable Way of Fetching Display Campaign Feed ID

2019-09-02 Thread Google Ads API Forum Advisor Prod
Hi Patrick,

Thank you for reaching out.

Instead of using the CampaignFeedService, you can use the FeedService.get() as 
this service will be able to get all feeds associated in your account. However, 
it is also not possible to get feeds associated to the Merchant Center. The 
feeds supported are only the feeds created by user and feeds that are system 
generated by AdWords.

Let me know if this answers your concern.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UHFOG8:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/zM8M00PX6X1300MatRDFFyR_CGaJdtO_Pqvw%40sfdc.net.


Re: Error message : AuthorizationError.CUSTOMER_NOT_ACTIVE

2019-09-02 Thread Google Ads API Forum Advisor Prod
Hi,

Based from the logs you provided privately, it seems that account 2167454421 
specified in your request is the one encountering the CUSTOMER_NOT_ACTIVE error.

While checking the account 2167454421, I can confirm that this account is 
indeed cancelled. This is the reason why you are encountering this error. If 
you wish to activate this account again for you to download the report, you may 
refer to this guide on how to do so.

The screenshot you provided shows a different account (5499933739). Upon 
checking, this account is indeed active and needs no further action.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UEHbej:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/Z8DTW0PX6WX900xlhyBZXVTHSWLcwEsThvGQ%40sfdc.net.