Re: Multiple rows for same AdGroupId, Id in Age Performance Report

2020-02-18 Thread Talha Khan
Hi,
So, I tried out various things.
*Case 1:* When I add 3 fields => [*AdGroupId, Id, Clicks]* for the same 
date(17th Feb 2020), customerId, Ad Performance Report returns 14566 rows.
*Case 2: *As soon as I add 1 more field => [*AdGroupId, Id, Clicks, 
IsNegative] *for the same date, customerId, Ad Performance Report returns 
284 rows, which is okay, since IsNegative For AdPerformanceReport doesn't 
support ZeroImpressions, so adding that attribute, makes ZeroImpression as 
False and returns fewer rows.
But, the issue is, in Case 1: the data is correct(clicks = 35) and 
[AdGroupId and Id] combination is unique.
In Case 2: the data is incorrect and there are 2 rows for one of the 
[AdGroupId and Id] combination, with values of click as [30 and 5], which 
sums up to 35. I want to know, why there are 2 rows in the 2nd Case, though 
I didn't ask for any segment field. It should sum up the click values for 
the [AdGroupId and Id] combination and return 1 row with click value as 35.

On Wednesday, February 19, 2020 at 8:52:17 AM UTC+5:30, Talha Khan wrote:
>
> Hi,
>
> Sorry for the misspelling, It's Ad Performance Report.
> I am getting multiple rows with the same AdGroupId and Id, with different 
> data(as in clicks in one row is 50 and another row is 30) for the Ad 
> Performance Report. And I am *not requesting any segment fields listed in 
> the documentation.* Ideally, shouldn't it be *aggregated at the AdGroupId 
> and Id level,* and there should be a single row with number of clicks as 
> 80?
> Since in the documentation, it's written: "*The Ad Performance report 
> includes all statistics aggregated at the ad level*,* one row per ad.* If 
> other segment fields are used, you may get more than one row per ad"
> My report definition is the following :
>
> {
>>   "id": null,
>>   "selector": {
>> "fields": [
>>   "AbsoluteTopImpressionPercentage",
>>   "AccentColor",
>>   "AccountCurrencyCode",
>>   "AccountDescriptiveName",
>>   "AccountTimeZone",
>>   "ActiveViewCpm",
>>   "ActiveViewCtr",
>>   "ActiveViewImpressions",
>>   "ActiveViewMeasurability",
>>   "ActiveViewMeasurableCost",
>>   "ActiveViewMeasurableImpressions",
>>   "ActiveViewViewability",
>>   "AdGroupId",
>>   "AdGroupName",
>>   "AdGroupStatus",
>>   "AdStrengthInfo",
>>   "AdType",
>>   "AllConversionRate",
>>   "AllConversionValue",
>>   "AllConversions",
>>   "AllowFlexibleColor",
>>   "Automated",
>>   "AverageCost",
>>   "AverageCpc",
>>   "AverageCpe",
>>   "AverageCpm",
>>   "AverageCpv",
>>   "AveragePageviews",
>>   "AveragePosition",
>>   "AverageTimeOnSite",
>>   "BaseAdGroupId",
>>   "BaseCampaignId",
>>   "BounceRate",
>>   "BusinessName",
>>   "CallOnlyPhoneNumber",
>>   "CallToActionText",
>>   "CampaignId",
>>   "CampaignName",
>>   "CampaignStatus",
>>   "ClickAssistedConversionValue",
>>   "ClickAssistedConversions",
>>   "ClickAssistedConversionsOverLastClickConversions",
>>   "Clicks",
>>   "CombinedApprovalStatus",
>>   "ConversionRate",
>>   "ConversionValue",
>>   "Conversions",
>>   "Cost",
>>   "CostPerAllConversion",
>>   "CostPerConversion",
>>   "CostPerCurrentModelAttributedConversion",
>>   "CreativeDestinationUrl",
>>   "CreativeFinalAppUrls",
>>   "CreativeFinalMobileUrls",
>>   "CreativeFinalUrlSuffix",
>>   "CreativeFinalUrls",
>>   "CreativeTrackingUrlTemplate",
>>   "CreativeUrlCustomParameters",
>>   "CrossDeviceConversions",
>>   "Ctr",
>>   "CurrentModelAttributedConversionValue",
>>   "CurrentModelAttributedConversions",
>>   "CustomerDescriptiveName",
>>   "Description",
>>   "Description1",
>>   "Description2",
>>   "DevicePreference",
>>   "DisplayUrl",
>>   "EngagementRate",
>>   "Engagements",
>>   "EnhancedDisplayCreativeLandscapeLogoImageMediaId",
>>   "EnhancedDisplayCreativeLogoImageMediaId",
>>   "EnhancedDisplayCreativeMarketingImageMediaId",
>>   "EnhancedDisplayCreativeMarketingImageSquareMediaId",
>>   "ExpandedDynamicSearchCreativeDescription2",
>>   "ExpandedTextAdDescription2",
>>   "ExpandedTextAdHeadlinePart3",
>>   "ExternalCustomerId",
>>   "FormatSetting",
>>   "GmailCreativeHeaderImageMediaId",
>>   "GmailCreativeLogoImageMediaId",
>>   "GmailCreativeMarketingImageMediaId",
>>   "GmailForwards",
>>   "GmailSaves",
>>   "GmailSecondaryClicks",
>>   "GmailTeaserBusinessName",
>>   "GmailTeaserDescription",
>>   "GmailTeaserHeadline",
>>   "Headline",
>>   "HeadlinePart1",
>>   "HeadlinePart2",
>>   "Id",
>>   "ImageAdUrl",
>>   "ImageCreativeImageHeight",
>>   "ImageCreativeImageWidth",
>>   "ImageCreativeMimeType",
>>   "ImageCreativeName",
>>   "ImpressionAssistedConversionValue",
>>   

Re: DatabaseError.CONCURRENT_MODIFICATION error

2020-02-18 Thread Qian Huang
Hi Nikisha,

For one user list, we will add millions of users, so currently we chunk 
them into several requests, each request will contain 1000 user mutation, 
then we send these requests concurrently. 

If the concurrent modification error is happend on user list level, it 
means we can't send these request concurrently. 

But we have so many users need to add, it would be very slow if we send 
request in one thread, could you give some suggestion in this case?


Best Regards,
Qian


On Wednesday, February 19, 2020 at 2:30:00 AM UTC+8, adsapiforumadvisor 
wrote:
>
> Hello Qian,
>
> The entity in this scenario will refer to the user list that you are 
> trying to update via API for mutating members of the user list. The 
> concurrent modification error indicates that two or more processes are 
> trying to update the same user list at same instance of time. It might also 
> occur when a user in the AdWords web interface is updating the user list 
> while you are updating the same entity via the API as well. Could you 
> please confirm that even after waiting for about 30 seconds before retrying 
> the request again, the issue is still occurring? Please refer to this 
> 
>  guide 
> to avoid such error in future.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UV0nZJ: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/0228fc8c-7c87-4d2c-b455-42db25f00d27%40googlegroups.com.


Re: We can't get ad group ad assets data.

2020-02-18 Thread Liam


Hi Mitchell,

 

  Thank you for the help.

Good news is we found the access email account and enabled the API button, 
there are no error in the response now. But we can still get empty data 
like the log above. We have no idea how to locate the problem further. 
Please help us and let us know if there is any information you need.

Thank you.

在 2020年2月8日星期六 UTC+8上午12:44:55,adsapiforumadvisor写道:
>
> Hi Liam,
>
> Thank you for reaching out. If you are trying to migrate to Google Ads 
> API, you have to enable it in the API Console as explained here 
> .
>  
> I am unable to check which email was used to create that project but it 
> should be the email that was initially used to create your Google Ads 
> manager account. You can also just create a new project and generate new 
> credentials to use for Google Ads API (instructions here 
> 
> ).
>
> You can get support from the Console team by clicking the '?' in the top 
> top-right of the Console screen.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UV084w: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/3923bf7f-9df5-40aa-bb66-4d1393443366%40googlegroups.com.


Re: Multiple rows for same AdGroupId, Id in Age Performance Report

2020-02-18 Thread Talha Khan
Hi,

Sorry for the misspelling, It's Ad Performance Report.
I am getting multiple rows with the same AdGroupId and Id, with different 
data(as in clicks in one row is 50 and another row is 30) for the Ad 
Performance Report. And I am *not requesting any segment fields listed in 
the documentation.* Ideally, shouldn't it be *aggregated at the AdGroupId 
and Id level,* and there should be a single row with number of clicks as 80?
Since in the documentation, it's written: "*The Ad Performance report 
includes all statistics aggregated at the ad level*,* one row per ad.* If 
other segment fields are used, you may get more than one row per ad"
My report definition is the following :

{
>   "id": null,
>   "selector": {
> "fields": [
>   "AbsoluteTopImpressionPercentage",
>   "AccentColor",
>   "AccountCurrencyCode",
>   "AccountDescriptiveName",
>   "AccountTimeZone",
>   "ActiveViewCpm",
>   "ActiveViewCtr",
>   "ActiveViewImpressions",
>   "ActiveViewMeasurability",
>   "ActiveViewMeasurableCost",
>   "ActiveViewMeasurableImpressions",
>   "ActiveViewViewability",
>   "AdGroupId",
>   "AdGroupName",
>   "AdGroupStatus",
>   "AdStrengthInfo",
>   "AdType",
>   "AllConversionRate",
>   "AllConversionValue",
>   "AllConversions",
>   "AllowFlexibleColor",
>   "Automated",
>   "AverageCost",
>   "AverageCpc",
>   "AverageCpe",
>   "AverageCpm",
>   "AverageCpv",
>   "AveragePageviews",
>   "AveragePosition",
>   "AverageTimeOnSite",
>   "BaseAdGroupId",
>   "BaseCampaignId",
>   "BounceRate",
>   "BusinessName",
>   "CallOnlyPhoneNumber",
>   "CallToActionText",
>   "CampaignId",
>   "CampaignName",
>   "CampaignStatus",
>   "ClickAssistedConversionValue",
>   "ClickAssistedConversions",
>   "ClickAssistedConversionsOverLastClickConversions",
>   "Clicks",
>   "CombinedApprovalStatus",
>   "ConversionRate",
>   "ConversionValue",
>   "Conversions",
>   "Cost",
>   "CostPerAllConversion",
>   "CostPerConversion",
>   "CostPerCurrentModelAttributedConversion",
>   "CreativeDestinationUrl",
>   "CreativeFinalAppUrls",
>   "CreativeFinalMobileUrls",
>   "CreativeFinalUrlSuffix",
>   "CreativeFinalUrls",
>   "CreativeTrackingUrlTemplate",
>   "CreativeUrlCustomParameters",
>   "CrossDeviceConversions",
>   "Ctr",
>   "CurrentModelAttributedConversionValue",
>   "CurrentModelAttributedConversions",
>   "CustomerDescriptiveName",
>   "Description",
>   "Description1",
>   "Description2",
>   "DevicePreference",
>   "DisplayUrl",
>   "EngagementRate",
>   "Engagements",
>   "EnhancedDisplayCreativeLandscapeLogoImageMediaId",
>   "EnhancedDisplayCreativeLogoImageMediaId",
>   "EnhancedDisplayCreativeMarketingImageMediaId",
>   "EnhancedDisplayCreativeMarketingImageSquareMediaId",
>   "ExpandedDynamicSearchCreativeDescription2",
>   "ExpandedTextAdDescription2",
>   "ExpandedTextAdHeadlinePart3",
>   "ExternalCustomerId",
>   "FormatSetting",
>   "GmailCreativeHeaderImageMediaId",
>   "GmailCreativeLogoImageMediaId",
>   "GmailCreativeMarketingImageMediaId",
>   "GmailForwards",
>   "GmailSaves",
>   "GmailSecondaryClicks",
>   "GmailTeaserBusinessName",
>   "GmailTeaserDescription",
>   "GmailTeaserHeadline",
>   "Headline",
>   "HeadlinePart1",
>   "HeadlinePart2",
>   "Id",
>   "ImageAdUrl",
>   "ImageCreativeImageHeight",
>   "ImageCreativeImageWidth",
>   "ImageCreativeMimeType",
>   "ImageCreativeName",
>   "ImpressionAssistedConversionValue",
>   "ImpressionAssistedConversions",
>   "ImpressionAssistedConversionsOverLastClickConversions",
>   "Impressions",
>   "InteractionRate",
>   "InteractionTypes",
>   "Interactions",
>   "IsNegative",
>   "LabelIds",
>   "Labels",
>   "LongHeadline",
>   "MainColor",
>   "MarketingImageCallToActionText",
>   "MarketingImageCallToActionTextColor",
>   "MarketingImageDescription",
>   "MarketingImageHeadline",
>   "MultiAssetResponsiveDisplayAdAccentColor",
>   "MultiAssetResponsiveDisplayAdAllowFlexibleColor",
>   "MultiAssetResponsiveDisplayAdBusinessName",
>   "MultiAssetResponsiveDisplayAdCallToActionText",
>   "MultiAssetResponsiveDisplayAdDescriptions",
>   "MultiAssetResponsiveDisplayAdDynamicSettingsPricePrefix",
>   "MultiAssetResponsiveDisplayAdDynamicSettingsPromoText",
>   "MultiAssetResponsiveDisplayAdFormatSetting",
>   "MultiAssetResponsiveDisplayAdHeadlines",
>   "MultiAssetResponsiveDisplayAdLandscapeLogoImages",
>   "MultiAssetResponsiveDisplayAdLogoImages",
>   "MultiAssetResponsiveDisplayAdLongHeadline",
>   "MultiAssetResponsiveDisplayAdMainColor",
>   

Re: Multiple rows for same AdGroupId, Id in Age Performance Report

2020-02-18 Thread Talha Khan
Hi,

Sorry for the misspelling, It's Ad Performance Report.
And, I am getting multiple rows with the same AdGroupId and Id for the Ad 
Performance Report. And I am not requesting any segment fields listed in 
the documentation.
Though in the documentation, it's written: "The Ad Performance report 
includes all statistics aggregated at the ad level, one row per ad. If 
other segment fields are used, you may get more than one row per ad"


On Wednesday, February 19, 2020 at 3:02:48 AM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hi Talha,
>
> Thank you for reaching out to us. I see that you’re encountering multiple 
> rows with the same AdGroupId and Id. This is because Age Range 
> Performance Report 
> 
>  
> is a multiple attribution report 
> ,
>  
> which can be thought of as criteria type-specific reports. Thus you may 
> encounter multiple rows with the same AdGroupId and Id. These multiple 
> attribution reports should not be aggregated together, however, as it may 
> double count impressions and clicks. Let me know if you have further 
> questions.
>
> Thank you,
> Bryan, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UV1OER: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/b703c6e0-cfa2-4205-a245-e6be0f4fa752%40googlegroups.com.


Is there an API for Google Local service ads?

2020-02-18 Thread Sekhar
need to pull all leads data from MCC account. Is there any API to get the 
local service ads lead data. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/43609642-acd3-4d43-969e-7c771fcac640%40googlegroups.com.


Dynamic Ad Targets - Webpage URL

2020-02-18 Thread vaios_panourg...@hotmail.com
Hi,

i am using the AdGroupCriterionService (*API version v201809*) trying to 
fetch Dynamic Ad Targets.

I can successfully retrieve the Webpage criterion objects i am interested 
in (*e.g. their Ids*), but i am not able to get their Urls.

Checking the example here 
,
 
i tried to get the Url like this : 

$adGroupCriterion->getFinalUrls()->getUrls()[0]


but i get an error : "*Call to a member function getUrls() on null*".

The BiddableAdGroupCriterion Object i get looks like this:


[userStatus:protected] =>
[systemServingStatus:protected] =>
[approvalStatus:protected] =>
[disapprovalReasons:protected] =>
[firstPageCpc:protected] =>
[topOfPageCpc:protected] =>
[firstPositionCpc:protected] =>
[qualityInfo:protected] =>
[biddingStrategyConfiguration:protected] =>
[bidModifier:protected] =>
[finalUrls:protected] =>
[finalMobileUrls:protected] =>
[finalAppUrls:protected] =>
[trackingUrlTemplate:protected] =>
[finalUrlSuffix:protected] =>
[urlCustomParameters:protected] =>
[adGroupId:protected] => XXX
[criterionUse:protected] => BIDDABLE
[criterion:protected] => Google\AdsApi\AdWords\v201809\cm\Webpage Object
(
[parameter:protected] =>
[criteriaCoverage:protected] =>
[criteriaSamples:protected] =>
[id:protected] => X
[type:protected] => WEBPAGE
[CriterionType:protected] => Webpage
[parameterMap:Google\AdsApi\AdWords\v201809\cm\Criterion:private
] => Array
(
[Criterion.Type] => CriterionType
)

)

[labels:protected] =>
[forwardCompatibilityMap:protected] =>
[baseCampaignId:protected] =>
[baseAdGroupId:protected] =>
[AdGroupCriterionType:protected] => BiddableAdGroupCriterion
[parameterMap:Google\AdsApi\AdWords\v201809\cm\AdGroupCriterion:private] 
=> Array
(
[AdGroupCriterion.Type] => AdGroupCriterionType
)




Is this the way to get the Webpage Urls i am looking for?


Thanks in advance

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cb7d2b2f-874f-493d-ba17-d9256e502369%40googlegroups.com.


Creation of Display Ads through AdWords API

2020-02-18 Thread Filip Kučanda
I am trying to create ads through AdWords API using Perl client library.
I have already managed to create Responsive Display Ad using 
MultiAssetResponsiveDisplayAd type in API.

Now I have trouble with creation of Display Ad, I don't know what API type 
is equivalent to Display Ad.
I am confused because Display Ads can contain Images as well as zipped 
HTML5 files.

Can you please help me with what API type of ad should I use to create 
Display Ad?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/90115dbd-b055-482f-bcc2-e4c4188d0ba3%40googlegroups.com.


Re: How to get data for "Where Ads showed" tab under Placement Section via Adwords API

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Max,

Please use Reply privately to author option while sharing the details for 
investigation.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV0neT: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/V55jH0Q5X3R500UKwzScBqQQKPSN9jweYA8w%40sfdc.net.


Re: How to get data for "Where Ads showed" tab under Placement Section via Adwords API

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Max,

I am Nikisha from Google Ads API team. Please allow me to support your concerns 
in the absence of my colleague Anthony.

Could you please share the complete report definition along with the client 
customer id for further investigation for me to take a look into the issue with 
Video Performance Report on your end? Also, for your other concern, "Where Ads 
showed" data in the UI can be pulled using the Automatic Placements Report. 
Please check the guide on how the API reports are mapped to the Google Ads UI. 
Let us know if you need any additional information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV0neT: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/KkoxC0Q5X3OJ00fz0OC7sXR724GNdrm2phbQ%40sfdc.net.


Re: Retrieve Headline1 and Headline2 for ads of CallOnlyAd type

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Alex,

You can retrieve these fields using the new Google Ads API here. I submitted a 
feature request on your behalf to include them in AdWords API so please keep an 
eye on our Developer Blog for information on future releases.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1Bkp: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/5367Z0Q5X3MW00MIQ1WOpBRSicdqtQbYlJfA%40sfdc.net.


RE: Issue with Serve Status of campaign

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Pradeep,

Thank you for reaching out. With regards to your concern, the servingStatus 
field of the campaign object will help you determine if the campaign is 
currently serving ads or has ended. You could use CampaignService to retrieve 
the campaign details via API and check for this field to determine the serving 
state of the campaign. If you are observing any discrepancy, please share the 
complete request and response logs along with the client customer id for 
further investigation.

P.S. Please use Reply privately to author option while sharing the details.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV1KDr: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/hFQic0Q5X3DJ00Pjv1MRzBStOGCyjGx78dgQ%40sfdc.net.


RE: Temporary IDs in GoogleAdsService.Mutate

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Mike,

Thank you for reaching out. Did you make sure that the order of your calls is 
correct (you're not referencing a negative ID that doesn't exist yet)? If so, 
please share your complete detailed request and response logs via Reply 
privately to author so that I can further investigate the issue. I know that 
the logs may be very long for a batch operation so if you could try and 
truncate it down to just the relevant calls that are causing the error that 
would be really helpful. You can find information on enabling logging in the 
dropdown of your client library on the left-hand side of the screen here.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV0qjf: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/YqyBM0Q5X2SL00-XXRTkSXRCGCPYReSBtryg%40sfdc.net.


RE: DownloadCriteriaReportWithSelector Error

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Julian,

Thank you for reaching out.  With AdWords API, it is only possible to download 
the report against one client customer account at a time. You need to implement 
the logic on your end to iterate over more than one client customer id to 
download these reports. Let us know if you need any additional information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV1Nw5: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/Ig7ye0Q5X2J900yXs8qAaMQP2tkBEEURXFbw%40sfdc.net.


RE: Multiple rows for same AdGroupId, Id in Age Performance Report

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Talha,

Thank you for reaching out to us. I see that you’re encountering multiple rows 
with the same AdGroupId and Id. This is because Age Range Performance Report is 
a multiple attribution report, which can be thought of as criteria 
type-specific reports. Thus you may encounter multiple rows with the same 
AdGroupId and Id. These multiple attribution reports should not be aggregated 
together, however, as it may double count impressions and clicks. Let me know 
if you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5001UV1OER: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/EER3F0Q5X2HX00qeUz-eD0TuqAM8WUYViV6g%40sfdc.net.


RE: Request manual review of ads

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for reaching out. It is not possible to request a manual review for 
the disapproved ads via API. Please let us know if you need any additional 
information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV1N5V: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/OybGn0Q5X24B00f7gJDBZKSdaMq0bQ40XO2w%40sfdc.net.


Google Ads API - Detail Placement unmatched data

2020-02-18 Thread 'Jessie Labadan' via AdWords API and Google Ads API Forum
Hi,

I have deleted my previous post because it contained sensitive data. This 
is the original link 
of
 
my previous post.

As what suggested by one of the tech in Google Ads API Team, I need to use 
managed_placement_view 
 
to 
matched the data with Google Ads ui Campaigns instead of using 
detail_placement_view 

.

Using managed_placement_view didn't work and we got empty or zero results. 
Using detail_placement_view we're able to download data, but it didn't 
match with what's being displayed in the Google Ads ui.

Please see attached files.

Kind Regards,
Jessie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6cf40428-bcff-45a6-ab64-4a334e3e2742%40googlegroups.com.


RE: Budget estimation

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Duong,

Thanks for reaching out. The budget estimation feature is not supported in the 
Adwords API. I have submitted a feature request to include this functionality 
in the Adwords API. Please keep an eye on our developer blog to monitor the 
updates on the releases.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV1N3U: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/q9-JS0Q5X09T004DsWAfROQkmfCkz8BYiWZQ%40sfdc.net.


RE: I am getting error Failed to refresh Access Token .Net C#

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Jordan,

Thank you for reaching out. The error "Failed to refresh access token" 
indicates that your refresh token is probably expired. There is likely an issue 
with your OAuth Credentials. Can you please try to generate a new set of 
credentials by following this guide and see if that fixes the issue? If you are 
still having an issue, please provide the complete detailed request and 
response logs and the email address used to generate the credentials via Reply 
privately to author so that I can further investigate the issue.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1NJ2: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/bYZuC0Q5X04W00m55eEjaPQue8DKErue9NjA%40sfdc.net.


RE: How to get MCC Account Labels at the sub account level? Ads API Beta

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Chris,

Thank you for reaching out. What is your client customer ID? When you say 
"specifying the sub account" do you mean making the report call using that 
account or filtering the report for that account?

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1JWn: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/JhZvg0Q5WZXQ00Be48d8fMTOuZYKgYnikMXg%40sfdc.net.


RE: Video campaign creation for google AdWord API or any other services.

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Mohan,

Thanks for reaching out. Creating the Youtube Video campaigns via Adwords API 
is currently not supported. A feature request was already submitted to include 
this functionality in the Adwords API. Please keep an eye on our developer blog 
to monitor the updates on the releases.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV1Muz: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/uou-u0Q5WZCZ00OLoV0IVtSyOZ5KCRyxLlPQ%40sfdc.net.


RE: Adgroup Reportig Video Sequence Subtype Campaigns

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Julio,

Thanks for reaching out. The "sequence" subtype in the video campaign is not 
supported in the Google Ads API and this is why you get empty results when 
querying them. A feature request was submitted to include this subtype of video 
campaign in the Google Ads API. please keep an eye on our developer blog to 
monitor the updates on the releases.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV1GR0: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/rlhOi0Q5WY7D001Y94XZfdQ0WcgZqma5sv-g%40sfdc.net.


RE: Missing Billing Settings

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Robert,

Thanks for reaching out. In order for me to further investigate the issue, 
could you please send me the complete SOAP request and response logs and the 
MCC IDs that you have concerns with? You could send them via Reply privately to 
the author option.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV1GJp: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/m4mPx0Q5WX04000SKZk60kSXevSdVyIvJkuw%40sfdc.net.


RE: How to get refresh Token after Consent is given ?

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Atif,

Thank you for reaching out. Please refer to this guide for the steps to be 
followed while making an API call using C# client libraries. This will guide 
you to generate and specify the credentials correctly in your config file. The 
error "Failed to refresh Access Token" is observed when your refresh token is 
probably expired. There is likely an issue with your OAuth Credentials. Could 
you please try to generate a new set of credentials by following this guide and 
see if that fixes the issue? If you are still having an issue, please provide 
the complete request and response logs along with the email address used to 
generate the credentials using Reply privately to author so that I can further 
investigate the issue.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV1Nui: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/X7luD0Q5WWT000myvL5P2uRce5Cf3FEuOiGA%40sfdc.net.


RE: Need Sunset details for AdWords API version

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for reaching out. We do not have any timeline to share for the 
deprecation date or new release date for the AdWords API version. Please keep 
an eye on our release notes for future releases.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV1GPx: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/_FSdO0Q5WW0N00HYPFrZj5QEC02AEtd3MaGg%40sfdc.net.


Re: ConversionUploadService

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello,

Could you please share the complete request and response logs along with the 
client customer id against which you are trying to make the API call? Also, 
please share the email address used while generating the OAuth2 credentials and 
the login customer id specified in the file for me to take a look into this 
further.

P.S. Please use Reply privately to author option while sharing the details.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UUzynP: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/JjKRE0Q5WVPM00p8r4REu5Qd6A36W1pa27Sw%40sfdc.net.


Re: DatabaseError.CONCURRENT_MODIFICATION error

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Qian,

The entity in this scenario will refer to the user list that you are trying to 
update via API for mutating members of the user list. The concurrent 
modification error indicates that two or more processes are trying to update 
the same user list at same instance of time. It might also occur when a user in 
the AdWords web interface is updating the user list while you are updating the 
same entity via the API as well. Could you please confirm that even after 
waiting for about 30 seconds before retrying the request again, the issue is 
still occurring? Please refer to this guide to avoid such error in future.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV0nZJ: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/GYYJw0Q5WU1900SFF2KerXSuGV7ZXhmxyCmg%40sfdc.net.


RE: Google Ads API-how to map campaign enum

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Guikang,

Thanks for reaching out. You could refer to this client library code 
implementation on details of the ENUM types of the AdvertisingChannelType. 
Please let me know if you have any further questions.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV1G2Y: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/rRuj40Q5WSTX00VXVYrl34T4GAvo5vYCN5gA%40sfdc.net.


Re: Payment Failed Status

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Pradeep,

You could consider using the AccountBudgetProposalService to set up account 
budgets to control what an account can spend over a specific period of time by 
defining budget properties like spend limit, start time, and end time. They 
must point to one of the account's billing setups, to indicate which specific 
Payments account will be billed. You could refer to this guide on how to set up 
the account budgets. However, it is not possible to retrieve the billing status 
of the account or if payment or credit card failed via API. I have added a 
comment to the submitted feature request to the team with your updates and 
please keep an eye on our developer blog to monitor the updates on the releases.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV0lJT: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/F45Tb0Q5WRSV00e2RSCHS5RPeG8quiGILYGg%40sfdc.net.


RE: Failed to Refresh Access Token - on server

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Jordan,

Thank you for reaching out. The error "Failed to refresh access token" 
indicates that your refresh token is probably expired. There is likely an issue 
with your OAuth Credentials. Can you please try to generate a new set of 
credentials by following this guide and see if that fixes the issue? If you are 
still having an issue, please provide the complete detailed request and 
response logs and the email address used to generate the credentials via Reply 
privately to author so that I can further investigate the issue.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1G1p: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/IN00o0Q5WR3L00APJzliq3RWybM2KwwVZ74A%40sfdc.net.


Re: How to get Linked Accounts

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hello Mike,

Thank you for writing to us. I will the update the feature request created 
earlier with necessary details to request support for adding and sharing linked 
accounts as suggested. Also, for your concern related to importing conversion 
actions from linked third-party analytics, a feature request is already created 
internally within our team. Please keep an eye on our blog post for more 
updates.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UV0noM: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/kyynP0Q5WQEL00gwXbgd3KTBCuNIGtadRDDA%40sfdc.net.


Re: Retrieve Headline1 and Headline2 for ads of CallOnlyAd type

2020-02-18 Thread Alex Mansour
Thanks for your answer Mitchell. 

We are already retrieving the "description 1" and "description 2" and it's 
working fine. 

But we are missing the headline fields as mentioned above, do you have any 
plans to include them? They are part of the main entity ;) 

Best regards, 
Alex

On Tuesday, February 18, 2020 at 4:17:33 PM UTC+1, adsapiforumadvisor wrote:
>
> Hi Alex,
>
> Thank you for reaching out. As shown here 
> ,
>  
> those fields aren't part of CallOnlyAds so you will not be able to retrieve 
> them. If you are referring to description 1 and description 2, you can 
> retrieve those using the AdService 
>  
> get() method for those fields (here 
> 
>  
> and here 
> )
>  
> or by using the Ad Performance Report 
> 
> .
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UV1Bkp: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/820600b6-5289-499f-a8c4-cb1de35c6a0f%40googlegroups.com.


Re: Issue with Serve Status of campaign

2020-02-18 Thread Pradeep Datla
What we want to know is if a campaign is actually "serving" or if it is 
stopped for some reason - as i have seen sometimes when account is 
suspended or there are issues with billing, campaigns are in eligible state 
- but in api i get servestatus as "serving". so i am not able to know if 
the campaign is actually serving or if it is waiting for some user action

please let me know.

On Monday, February 17, 2020 at 11:45:59 AM UTC-8, Pradeep Datla wrote:
>
> Hi,
>
> After Creating a campaign if the ads get disapproved or account gets 
> suspended, the serve status of the campaign is stuck in "Eligible". But the 
> serve status through adwords api we are getting serve status as "Serving" 
> while google is actually not serving the ads.
> This is causing an issue for us as in our application it actually shows as 
> the campaign is currently serving, but in reality it is still in "eligible" 
> status
>
> How would i determine if a campaign is actually serving ads or not? 
>
> [image: billing.jpg]
>
>
> Thank You,
> Pradeep Datla.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/556d7859-43e7-4f5c-846a-a4345a54f2d5%40googlegroups.com.


Re: Issue with Serve Status of campaign

2020-02-18 Thread Pradeep Datla

What i want to know is if google campaign in actually "serving" ads or if 
it is stopped for some reason. Is there a way to know this?

On Monday, February 17, 2020 at 11:45:59 AM UTC-8, Pradeep Datla wrote:
>
> Hi,
>
> After Creating a campaign if the ads get disapproved or account gets 
> suspended, the serve status of the campaign is stuck in "Eligible". But the 
> serve status through adwords api we are getting serve status as "Serving" 
> while google is actually not serving the ads.
> This is causing an issue for us as in our application it actually shows as 
> the campaign is currently serving, but in reality it is still in "eligible" 
> status
>
> How would i determine if a campaign is actually serving ads or not? 
>
> [image: billing.jpg]
>
>
> Thank You,
> Pradeep Datla.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/72c2084e-6d4d-4708-a755-032d6aa5cc8a%40googlegroups.com.


Re: Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Pete,

Please use the following xml file and give it a try.



http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>



https://adwords.google.com/api/adwords/mcm/v201809; 
soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next; 
soapenv:mustUnderstand="0">

XXX

XXX

XXX

false

false







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



ADD



XXX

XXX

PENDING

My Invitation

false











Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UV0gOQ: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/PwLG20Q5WOFL00P5ZtL6IcS9CiecQRFjEYiw%40sfdc.net.


RE: TOS confirmation

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Dmytro,

Thank you for reaching out. The user TOS is signed in the API Center (which can 
be found under Tools & Settings > Setup when logged in to a manager account). 
As long as that is signed, you should be good to go.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1GQH: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/vykEs0Q5WNT000aeGCa_soRK-8GJmLcrqorg%40sfdc.net.


RE: LinkManagerToClient problem with ACTIVE status

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Damian,

Thank you for reaching out. Make sure you are using the credentials of the 
client account when making the call to accept the invitation. If you believe 
you are doing that, please share the complete detailed request and response 
logs via Reply privately to author so that I can further investigate the issue.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1E06: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/DGq5L0Q5WLYA00Bo9wv5PHTBmIt5Xt-EjZwg%40sfdc.net.


RE: Retrieve Headline1 and Headline2 for ads of CallOnlyAd type

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Alex,

Thank you for reaching out. As shown here, those fields aren't part of 
CallOnlyAds so you will not be able to retrieve them. If you are referring to 
description 1 and description 2, you can retrieve those using the AdService 
get() method for those fields (here and here) or by using the Ad Performance 
Report.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UV1Bkp: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/IhLye0Q5WL4K00RYp9mRiwRNiYPUK9BjpEBA%40sfdc.net.


Multiple rows for same AdGroupId, Id in Age Performance Report

2020-02-18 Thread Talha Khan
Hi,

For Age Performance Report for the date - 20200217, I am getting multiple 
rows with the same AdGroupId and Id.
When I added CriterionId, I found they have different CriterionIds.
But, since, in the request, I've not added CriterionId, so, shouldn't data 
be aggregated across AdGroupId and Id and return a single row summing 
clicks, cost, etc for all the CriterionIds.?
I checked the documentation, it says: "The Ad Performance report includes 
all statistics aggregated at the ad level, one row per ad. If other segment 
fields are used, you may get more than one row per ad." 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bcec3bb5-7a4f-4cb9-8dd0-e65365f21bf6%40googlegroups.com.


Re: Reports attributes behavior

2020-02-18 Thread Oksana Sulyma
Hello! 
It's already a month since last response here... Any information on this 
topic will help to understand the best solution at our side. Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/97a67bae-6aa9-4b00-9442-a59251dcbfc1%40googlegroups.com.


Re: DownloadCriteriaReportWithSelector Error

2020-02-18 Thread Julian Woywad
Thank you for this answer.

Is there a way to get DownloadCriteriaReportWithSelector results for all or 
at least several of your accounts at once, or can I only pull from one 
client ID at a time?  

Right now the Selectors work fine as long as I only use one client ID and 
as long as its not a manager-account. 
However I need to pull from more than just one account and the number is 
increasing, so is there an easy way to just get 'all of them'?
Working in PHP.

Thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4bafd246-c0d5-4858-b65d-77f352ae6355%40googlegroups.com.


How to get refresh Token after Consent is given ?

2020-02-18 Thread Atif ..
I am working in C# .NET
I have authenticated my app for consent and i have received refresh token.  
Then i am creating my user by providing client id, secret and refresh 
token. 

AdWordsUser user = new AdWordsUser();
 user.Config.OAuth2ClientId = "
x.apps.googleusercontent.com";
user.Config.OAuth2ClientSecret = "";
user.Config.OAuth2RefreshToken = "xxx";
user.Config.OAuth2Mode = 
Google.Api.Ads.Common.Lib.OAuth2Flow.APPLICATION;

When i am sending this user object to  call functions functions through 
API, i am getting error "Failed to refresh Access Token".
Where i can find this access token and where i have to provide it ?  
Please guide. 
Thanks. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bfbb52bf-75f8-4241-b442-d82f9e3d12d5%40googlegroups.com.


google api steps could't have the result needed

2020-02-18 Thread trabelsi rami


Hello everybody,

I've recently started to discover Adwords APIs. I’ve basically done almost 
all the steps i’ve send a request for a developer token and they respond 
after 4 days i have created a test account with test campaigns after 
creating the account i got the client id and client secret after i have 
generated the refresh token following the documentation with this command 
in blue

 

‘$ python generate_refresh_token.py --client_id INSERT_CLIENT_ID 
--client_secret INSERT_CLIENT_SECRET’

And i did the oauth2 authentication and i have completed the googleads.yaml 
file with the necessary keys and the json file path 

And the last step is oppening the file get_campaigns.py and execute it so 
that it can generate  me the campaigns i did in my test account but in 
stead it gives me a lot of errors and to insert the developer token even 
though it’s a test account 

After finally reaching the last step "Make your first API call", I get the 
following error 

 

Please if anyone have a solution or he have worked with google api comment 
or send me an e mail to trabelsira...@gmail.com Thank you 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/2f290958-1e41-42fc-b4b3-01ae1916fe5f%40googlegroups.com.


Re: Internal API Error

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Evgeny,

The Engineering team is still looking into this, I will keep you posted as soon 
as progress is made.

Thanks,
Pierrick - Google Ads API Team
ref:_00D1U1174p._5001USwppM: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/pl7ZP0Q5WHDG00H8JmocBNQquTHZe5U-jtVw%40sfdc.net.


Re: Upload HTML5 via Ads API to an App Campaign

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Renan,

The Engineering team is still working on it, we will keep you posted as soon as 
there is any progress.

Thanks,
Pierrick - Google Ads API Team
ref:_00D1U1174p._5001UKMK1u: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/U_-LK0Q5WF5L00K6dSYjMvScaYBU9S116KDg%40sfdc.net.


I am getting error Failed to refresh Access Token .Net C#

2020-02-18 Thread Atif ..
I am woringk in C# .NET
I have authenticated my app for consent and i have received refresh token. 

AdWordsUser user = new AdWordsUser();
 user.Config.OAuth2ClientId = 
"x.apps.googleusercontent.com";
user.Config.OAuth2ClientSecret = "";
user.Config.OAuth2RefreshToken = "xxx";
user.Config.OAuth2Mode = 
Google.Api.Ads.Common.Lib.OAuth2Flow.APPLICATION;

When i am sending this user object to create service object and call 
functions , i am getting error "Failed to refresh Access Token".
Where i can find this access token or how to refresh it ? 
Please guide. 
Thanks. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a2c40d18-ed2c-473c-98f2-680e91710df2%40googlegroups.com.


How to set new bids for specific Placements?

2020-02-18 Thread Sharmila Timsina
Hi, 
I want to set new bids for specific placements. I can set bid modifier for 
placement criteria .

But I want to set new bids not the bid modifier.

Could you suggest me any solution to achieve this using API.

I can achieve it doing manually like this: 


[image: Screen Shot 2020-02-17 at 17.19.59.png] 


































Here also, when I apply changes there is no way to see the changed value in 
columns.

Could you please help me how can I see the changes I made here, and also 
how can I achieve setting new bids for already exists placements using API?



Thank you,
Sharmila Sapkota

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ba4b5292-24a3-4f08-a80e-82552eb295ce%40googlegroups.com.


Request manual review of ads

2020-02-18 Thread guofu Zhong
Hi,

I was told there is the possibility in the AdWords v2 API to request a 
manual review for an ad that was disapproved - is this possible with the 
API?

Thanks,
Guofu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5a3794a0-d5f1-494c-9e00-9a1817d34802%40googlegroups.com.


Re: Request manual review of ads

2020-02-18 Thread guofu Zhong
Could you show me an example?

On Tuesday, February 18, 2020 at 2:17:18 AM UTC-8, guofu Zhong wrote:
>
> Hi,
>
> I was told there is the possibility in the AdWords v2 API to request a 
> manual review for an ad that was disapproved - is this possible with the 
> API?
>
> Thanks,
> Guofu
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5cdcbfec-7f5a-48ca-8de9-b10f83d90e6a%40googlegroups.com.


Budget estimation

2020-02-18 Thread duong xuan toi
Hi,

When i update budget campaign i can see this budget estimation:

[image: budget-estimation.png]

Is there any way to get this via API ?



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5396db9c-af32-4feb-99ba-b2872b85eae1%40googlegroups.com.