Got INVALID_ANONYMOUS_BIDDING_STRATEGY_TYPE when setting target CPA for search campaigns

2021-09-30 Thread Zhe Lin
Good day,

My team are using Google Ads API v8 and we have a set of unit test cases 
that run from time to time to check if we are using API in the right way.

>From today, we noticed a test case started failing. It is about setting the 
TARGET_CPA bidding strategy to a Search campaign ( which was created with 
MANUAL_CPC). The last time the case has passed was 2 days ago.
Wonder if any changes in the API in these 2 days and what actions I should 
take to make it work.

Request and response details and the code

*Request*

Method: /google.ads.googleads.v8.services.CampaignService/MutateCampaigns
Host: googleads.googleapis.com
Headers: {
  "developer-token": "REDACTED",
  "login-customer-id": "PLEASE LET ME KNOW IF YOU NEED THIS INFORMATION",
  "x-goog-api-client": "gl-python/3.9.4 grpc/1.39.0 gax/1.31.2 
gapic/13.0.0",
  "x-goog-request-params": "customer_id=PLEASE LET ME KNOW IF YOU NEED THIS 
INFORMATION"
}
Request: customer_id: "PLEASE LET ME KNOW IF YOU NEED THIS INFORMATION"
operations {
  update {
resource_name: "customers/PLEASE LET ME KNOW IF YOU NEED THIS 
INFORMATION/campaigns/14825758506"
bidding_strategy_type: TARGET_CPA
target_cpa {
  target_cpa_micros: 1000
  cpc_bid_ceiling_micros: 1
  cpc_bid_floor_micros: 1000
}
  }
  update_mask {
paths: "resource_name"
paths: "bidding_strategy_type"
paths: "target_cpa.target_cpa_micros"
paths: "target_cpa.cpc_bid_ceiling_micros"
paths: "target_cpa.cpc_bid_floor_micros"
  }
}

*Response*
---
Headers: {
  "google.ads.googleads.v8.errors.googleadsfailure-bin": 
"\n\u0001\n\u0003\u0001\n\u0012ABidding strategy is not supported or cannot 
be used as 
anonymous.\u001a\f*\nTARGET_CPA\"(\u0012\u000e\n\noperations\u0018\u\u0012\b\n\u0006update\u0012\f\n\ntarget_cpa\u0012\u0016sHRSjMmPQ_THj4x-mcNZJw",
  "grpc-status-details-bin": "\b\u0003\u0012%Request contains an invalid 
argument.\u001a\u0001\nCtype.googleapis.com/google.ads.googleads.v8.errors.GoogleAdsFailure\u0012\u0001\n\u0001\n\u0003\u0001\n\u0012ABidding
 
strategy is not supported or cannot be used as 
anonymous.\u001a\f*\nTARGET_CPA\"(\u0012\u000e\n\noperations\u0018\u\u0012\b\n\u0006update\u0012\f\n\ntarget_cpa\u0012\u0016sHRSjMmPQ_THj4x-mcNZJw",
  "request-id": "sHRSjMmPQ_THj4x-mcNZJw"
}
Fault: errors {
  error_code {
bidding_error: INVALID_ANONYMOUS_BIDDING_STRATEGY_TYPE
  }
  message: "Bidding strategy is not supported or cannot be used as 
anonymous."
  trigger {
string_value: "TARGET_CPA"
  }
  location {
field_path_elements {
  field_name: "operations"
  index: 0
}
field_path_elements {
  field_name: "update"
}
field_path_elements {
  field_name: "target_cpa"
}
  }
}
request_id: "sHRSjMmPQ_THj4x-mcNZJw"

( Note since it is in our test case, the request was sent to the sandbox 
environment )

*Code*

import uuid
from google.ads.googleads.client import GoogleAdsClient
from google.ads.googleads.v8.enums.types.bidding_strategy_type import 
BiddingStrategyTypeEnum
from google.api_core import protobuf_helpers


def main(client, customer_id):
uid = uuid.uuid4()
campaign_budget_service = client.get_service("CampaignBudgetService")
campaign_service = client.get_service("CampaignService")

# Create a budget, which can be shared by multiple campaigns.
campaign_budget_operation = client.get_type("CampaignBudgetOperation")
campaign_budget = campaign_budget_operation.create
campaign_budget.name = f"Bidding strategy test campaign budget {uid}"
campaign_budget.delivery_method = (
client.enums.BudgetDeliveryMethodEnum.STANDARD
)
campaign_budget.amount_micros = 1000

campaign_budget_response = (
campaign_budget_service.mutate_campaign_budgets(
customer_id=customer_id, operations=[campaign_budget_operation]
)
)

# Create campaign.
campaign_operation = client.get_type("CampaignOperation")
campaign = campaign_operation.create
campaign.name = f"Bidding strategy test campaign {uid}"
campaign.advertising_channel_type = (
client.enums.AdvertisingChannelTypeEnum.SEARCH
)
campaign.bidding_strategy_type = (
BiddingStrategyTypeEnum.BiddingStrategyType.MANUAL_CPC
)

# Recommendation: Set the campaign to PAUSED when creating it to prevent
# the ads from immediately serving. Set to ENABLED once you've added
# targeting and the ads are ready to serve.
campaign.status = client.enums.CampaignStatusEnum.PAUSED

# Set the bidding strategy and budget.
campaign.manual_cpc.enhanced_cpc_enabled = True
campaign.campaign_budget = 
campaign_budget_response.results[0].resource_name

# Set the campaign network options.
campaign.network_settings.target_google_search = True
campaign.network_settings.target_search_network = True
campaign.network_settings.target_content_network = False
campaign.network_settings.target_partner_search_network = 

RE: GoogleAdsService, how to get customer_id

2021-09-30 Thread Google Ads API Forum Advisor
Hi,

Thank you for reaching out to our API support team.

In the Google Ads API, you should be able to retrieve customer details such as 
the customer_id of your Google Ads accounts using the below features :

List accessible accounts
Get account hierarchy

However, since you also mentioned that "..Now, we get customer_ids by the old 
adwords API..", could you confirm and provide details as to how you are 
currently retrieving the customer_id using the AdWords API, so I can then 
recommend an equivalent feature or workaround using the Google Ads API?

If your response would contain your logs or screenshots which include user / 
account information, you may then send the requested information via the Reply 
privately to author option. If this option is not available, you may send the 
details directly to our googleadsapi-supp...@google.com alias instead.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2OVQoO: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/X7UZM0R0AAMF00zIgWFQQ6S629uFv03wpR1A%40sfdc.net.


Re: Google Ads API - get whole data with final url and tracking parameter

2021-09-30 Thread dominik.r...@gmail.com
So with this ADS API expanded URL It is possible?

adsapi schrieb am Donnerstag, 30. September 2021 um 21:08:50 UTC+2:

> Hi Dominik,
>
> I understand that you are trying to extract the template in the form: 
>
>   "
> www.xxx.com?campaignid=xxx=xxx=xxx=xxx=xxx"
>
> However, this is unavailable in the AdWords API, and given that the API 
> will sunset in April 2022 
> ,
>  
> no more features will be added. I recommend migrating to the Ads API 
> 
>  at 
> your earliest convenience. Additionally, you might try using the Expanded 
> URL in the Ads API 
> 
>  
> to get the URL in the form you mentioned.
>
> Regards,
> Matt
> Google Ads API Team
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2NURRB: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/cdd850de-0f42-4513-a3e4-5ba6149bf825n%40googlegroups.com.


RE: API and transaction ID

2021-09-30 Thread Google Ads API Forum Advisor
Hi Antonio,

Thank you for posting your concern.

Please note that our team's specialty is Google Ads API / AdWords API only, 
with this, I am afraid that we are not familiar with the other eCommerce 
platform and Google Analytics. That said, could you provide more details to 
this field and where it is used so that I can check if this is possible to 
retrieve using the said APIs?

Also, is this transaction Id can be seen in the Google Ads UI? If yes, please 
provide screenshot of the UI where we can see this. You can provide it via 
Reply privately to author option if the screenshot contains confidential 
information. If this option is not available, then send it instead on this 
email address googleadsapi-supp...@google.com.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2OVS4c: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/cFxBY0R0A9S800FSs3znfxQz6Dlno-_bqpWA%40sfdc.net.


RE: Deprecation of version

2021-09-30 Thread Google Ads API Forum Advisor
Hi Jay,

Thank you for posting your concern.

The reason why your Python code has stopped working and encountered the error 
is because it is still using API version (v6) that already sunset. With this, I 
would suggest to upgrade to the newest version to address the error.

Let me know if you have further questions.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2OVSFB: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/X2a5W0R0A9KT00FoSUVcesQaGpTBm179KTWA%40sfdc.net.


RE: Question about API limits and quotas based on specific example

2021-09-30 Thread Google Ads API Forum Advisor
Hello Alex,

Thank you for reaching out to us.

Since you're using the KeywordPlanService and according to this guide, planning 
service methods listed from that guide are subject to separate limits from 
other types of requests.

Regards,

Mark Kevin Albios
Google Ads API Team
ref:_00D1U1174p._5004Q2OVTXQ: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/i0g-S0R0A9CG00ogqhCpmiRAC4grxSIQZzNw%40sfdc.net.


Re: Offline Conversions API Not Working - Empty Response

2021-09-30 Thread Eli Cohen
Ok I have sent them directly to you

On Thursday, September 30, 2021 at 11:31:40 AM UTC-4 adsapi wrote:

> Hi Eli,
>
> Thanks for getting back to us.
>
> So our team can investigate further, could you please provide us with the 
> complete request 
> 
>  
> and response 
> 
>  
> logs, with the request-id 
> 
>  
> when you encountered the issue?
>
> If logging is not yet enabled, you may do so by navigating to the *Client 
> libraries > Your client library (ex. Python) > Logging* documentation, 
> which you can access from this link 
> . 
>
> You may then send the requested information via the *Reply privately to 
> author* option( click on 3 vertical dots on the right hand side). If this 
> option is not available, you may send the details directly to our 
> googleadsa...@google.com alias instead.
>
> Regards, 
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2OV384: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/7374a1d5-d5c7-4cd4-8a9c-ca28a0ed0115n%40googlegroups.com.


Re: GAQL for CampaignAsset - Why is campaign a segment?

2021-09-30 Thread Google Ads API Forum Advisor
Hi Ales,

The campaign_asset.campaign is an attribute in the report since it is also 
included in the list of attributes of a CampaignAsset.

As for the campaign resource being a segmented resource, this should allow 
customers to then segment the report using the (compatible) attributes of the 
campaign itself. As an example on how you can use the campaign segments, you 
may refer below :

SELECT campaign_asset.asset, campaign_asset.campaign, 
campaign.advertising_channel_type, campaign.advertising_channel_sub_type, 
campaign.name FROM campaign_asset

You may then further explore this report using the Query builder or Query 
validator, to also learn more which fields from the campaign resource you can 
use for your campaign asset reporting.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2OUkM7: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/2iMI20R0A23600cFbPP2gLTEOiuuIZ1O9oaQ%40sfdc.net.


RE: API Migration: mapping AdGroupId to ad_group_ad.ad_group

2021-09-30 Thread Google Ads API Forum Advisor
Hello David,

Thanks for your patience on this.

We're happy to inform you that the documentation issue (wherein the mapping of 
the AdGroupId is incorrect) has been updated already and is now reflected.

Regards,

Mark Kevin Albios
Google Ads API Team
ref:_00D1U1174p._5004Q2Kcaux: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/DQRT30R0A1M2000SNBm_oAT2-K8KMkFeRQBQ%40sfdc.net.


RE: Ads api

2021-09-30 Thread Google Ads API Forum Advisor
Hi ChenAi,

Thank you for reaching out to our API support team.

To note, not all the UI features are automatically available in the API. That 
said, the information associated to Advanced bid adj. as seen in your 
screenshot is currently not available via the API.

So that our team may create a feature request, subject for review, could you 
also share your complete use case such as the reason these details are required 
on your end?

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2OVQDS: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/61rCi0R0A1LF0081jdEFhbRnK1YhZmf4akbA%40sfdc.net.


Re: How to translate column names which are collected through Google Ads API?

2021-09-30 Thread 임현수
Hi,
I checked the *Google Cloud Translation API* as you suggested, but I'm 
afraid that this* wouldn't be a proper solution to me* for the following 
reason.

1. *I needed the terms Google use to match the ones in api to other 
languages (e.g. Korean), not the general translation service.*
 - My intention for this translation was to provide reports in Korean for 
marketers in my company, letting them understand more easily.
   This means those convert should be in not only accustomed language, but 
also familiar terms, which can be seen in Google Ads dashboard.
   I can translate column names with any general translation applications, 
but it wouldn't be exactly same to the terms in the dashboard, following to 
the confusion to understand the data.
  That's why I am trying to translate in exact matching words in the 
dashboard.

If the word 'translation' causes the confusion in this communication, I 
would change the question as below:
*"Can I get access to the dictionary, or the data in somewhat shape, which 
Google Ads use to convert terms in API to the ones shown in dashboard?"*
I guess there would be somewhat logic Google Ads use to convert words in 
APIs to the ones shown in the dashboard.
(Not only to foreign languages, but also in English. I checked and found 
that the 'Impression', for example, is converted to 'Impr.'.
  I think this must not the result of general translation service, but of 
any specific logics Googld Ads use)
And I was trying to request if it's available for me to access to the 
information, and thought it wouldn't be impossible and confidential, as 
advertisers can check it in their own dashboards.

To sum up, I thought *general translation application wouldn't be the good 
enough solution, as the translated terms might differ from the ones in the 
dashboard, causing confusions to match them each other.*
So I requested whether I can *access to the way Google Ads utilize to 
convert API words to various languages in the dashboard*.
Thus, I guess the way you suggested, contacting to Google Cloud support 
team, might not fit to my needs, and *would be grateful if you find another 
way for me.*

Best regards,
Hyunsoo Lim

2021년 9월 30일 목요일 오후 11시 48분 36초 UTC+9에 adsapi님이 작성:

> Hi Hyunsoo,
>
> Thanks for providing us the requested information.
>
> Upon checking your concern based on the latest information you’ve provided 
> us, it appears that you’re looking for translating column names to the 
> Korean locale for the data received from the Google Ads API in order to 
> compare it with the report generated by Google Ads UI where it’s column 
> names already in Korean locale.
>
> As your concern is specific to translation from English locale to Korean 
> locale, then, I’m afraid that our team can not provide further support 
> since this is outside of our support scope. However, upon Google search for 
> translating, I would suggest you may also use the Translation API. That 
> said, you may reach out to the *Google Cloud support console* 
>  team, 
> via this link , 
> for further assistance as they might help you regarding your translation 
> concern.
>
> Regards, 
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2OUJnz: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/7eb8bf7a-2c19-4abf-99d4-cff0439e54een%40googlegroups.com.


Re: OfflineUserDataJobOperation - sequence of execution and cancelation

2021-09-30 Thread Google Ads API Forum Advisor
Hi Kaloyana,

To avoid any complications, we recommend using the Customer Match code sample 
provided in the client libraries that handles the sequence of jobs.

As for cancelling a created OfflineUserDataJob, you should be able to use 
CancelOperationRequest.

Regards,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2OTBi6: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/RSNjG0R09KCY00KjcJR_PmTG20rnx82yASWQ%40sfdc.net.


Re: Campaign start date not always consistent between AdWords SOAP API and Google Ads GRPC API

2021-09-30 Thread Google Ads API Forum Advisor
Hi Estanislao,

No updates yet, we are still discussing the options for fixing this issue.

Cheers
Anash
ref:_00D1U1174p._5001UKO81N: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/yMQMo0R09K9A00OYFS9-aSRBuFmNcBaFVccg%40sfdc.net.


Re: Duplicate GAds account automation

2021-09-30 Thread 'EladB' via AdWords API and Google Ads API Forum
Just saw this can be done manually with the Editor.

https://www.webmasterworld.com/google_adwords/3541656.htm
https://lucidgen.com/en/how-to-copy-google-ads-campaign/


Is there an automatic option with the Editor?
Is there an automatic option without the Editor?

On Thursday, September 30, 2021 at 9:39:09 PM UTC+3 EladB wrote:

> Hello,
>
>
> Is there an automated way to duplicate an existing GAds account (create 
> new account & copy an existing account structure into the new one) ?
>
> I have Googled 
> 
>  
> a bit but haven't found such an API (Maybe another way? Ads Editor?)
>
>
> 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/34aede97-6b2c-448f-bd23-7ec4c317e07an%40googlegroups.com.


Re: Google Ads API - get whole data with final url and tracking parameter

2021-09-30 Thread Google Ads API Forum Advisor
Hi Dominik,

I understand that you are trying to extract the template in the form:

"www.xxx.com?campaignid=xxx=xxx=xxx=xxx=xxx"

However, this is unavailable in the AdWords API, and given that the API will 
sunset in April 2022, no more features will be added. I recommend migrating to 
the Ads API at your earliest convenience. Additionally, you might try using the 
Expanded URL in the Ads API to get the URL in the form you mentioned.

Regards,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2NURRB: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/vWw4_0R09H6600hafVOenhTt-hXTZkn-Kr6w%40sfdc.net.


RE: How to set Keyword settting to Audience or Content when I add display keyword via adwords api?

2021-09-30 Thread Google Ads API Forum Advisor
Hi Pete,

Audience targeting is now greyed out, when attempting to select it a popup 
states "Audience keyword targeting is no longer available. To show ads to 
people based on the keywords they’re interested in, create a custom intent 
audience." By default the selection is "Content" and there is no need to set 
anything when using the API to add content keywords.

For setting Audience keyword targeting you can create a CustomAudience based on 
keywords using the CustomAudienceService with CustomAudienceType of "Auto" and 
added keywords as CustomAudienceMembers with CustomAudienceMemberType of 
"KEYWORD".

To attach this audience to an AdGroup you can then use 
https://developers.google.com/google-ads/api/reference/rpc/v8/AdGroupCriterionService
 adding the custom audience as a criterion.

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2Lm77p: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/WBik70R09GSY00XGO5PpPYRs6Rb8gWV3VQpg%40sfdc.net.


Duplicate GAds account automation

2021-09-30 Thread 'EladB' via AdWords API and Google Ads API Forum
Hello,


Is there an automated way to duplicate an existing GAds account (create new 
account & copy an existing account structure into the new one) ?

I have Googled 

 
a bit but haven't found such an API (Maybe another way? Ads Editor?)


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/93c80ff8-2ab4-49f6-ab03-44253d145e29n%40googlegroups.com.


Re: [Google Ads API] Retrieving non-Expanded Dynamic Search Ads

2021-09-30 Thread duca...@gmail.com
Hi Xiaoming and team,

I am checking here to see the current progress or plan to support 
retrieving old DSA data from Google Ads API. 

Thanks,
Caihua.

On Thursday, November 12, 2020 at 12:30:05 PM UTC-8 Google Ads API Forum 
Advisor Prod wrote:

> Hi Caihua,
>
> Thank you for reaching out. Yes, you would need to use the AdWords API to 
> retrieve those old DSA ads. Please keep an eye on our blog 
>  for 
> the alternative way to retrieve those data when the AdWords API is 
> deprecated.
>
>
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>  
> [image: Google Logo] 
> Xiaoming 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q275VUH: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/60b27129-ecc5-4599-8922-5da4aa560465n%40googlegroups.com.


Urgent Help on API VERSION

2021-09-30 Thread Jay
I've been getting from depracation error while i make calls and this is 
affecting lot of my work because clients need data. Can anyone help me 
please? its urgent and its been hours that im waiting for response from 
google but without any help from them. See attached in image, the errors

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e9c31446-3f73-4f03-b8d7-b1ba9e03122en%40googlegroups.com.


RE: Test script doesn't work

2021-09-30 Thread Google Ads API Forum Advisor
Hi,

Thanks for reaching out to us.

So our team can investigate further, could you please provide us with the 
complete request and response logs, with the request-id when you encountered 
the issue?

If logging is not yet enabled, you may do so by navigating to the Client 
libraries > Your client library (ex. PHP) > Logging documentation, which you 
can access from this link. You may then send the requested information via the 
Reply privately to author option. If this option is not available, you may send 
the details directly to our googleadsapi-supp...@google.com alias instead.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2OVRaS: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/MqLSa0R0980N00fUFqGPLaQ0u7296PHVwnlQ%40sfdc.net.


Re: How to use customer match CUSTOMER_MATCH_WITH_ATTRIBUTES?

2021-09-30 Thread Google Ads API Forum Advisor
Hi Chong,

Would you mind responding privately with your complete request and response 
logs for your upload attempt with attributes? This will help us take a closer 
look at the issue.

Thanks,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2OV3KA: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/FgYGS0R097DR00XWcVuqPdQmiLwJdYJfxuIg%40sfdc.net.


Migration from Adwords to Ads api

2021-09-30 Thread 'Romain' via AdWords API and Google Ads API Forum
Hello world,

I'm migrating my app from old Google Adwords api to the new Google Ads Api

I need to display all ad accounts linked to my user.

I used in the old api the ManagedCustomerService 

 and 
it worked fine. 


In the migration guide 
, 
they say we now must use CustomerClientService. ("To get customer clients 
use CustomerClientService")

But when I check on the reference guide, the only method of this service is 
to retrieve one customer based on its id. There is no method to retrieve 
all customers...

How can we do that ? I checked all all services related to Ad Account / 
Customers but I cannot find such a method.

Thanks 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/2f7328ac-529b-44e9-95bb-1cd5c48ced7en%40googlegroups.com.


Re: Offline Conversions API Not Working - Empty Response

2021-09-30 Thread Google Ads API Forum Advisor
Hi Eli,

Thanks for getting back to us.

So our team can investigate further, could you please provide us with the 
complete request and response logs, with the request-id when you encountered 
the issue?

If logging is not yet enabled, you may do so by navigating to the Client 
libraries > Your client library (ex. Python) > Logging documentation, which you 
can access from this link.

You may then send the requested information via the Reply privately to author 
option( click on 3 vertical dots on the right hand side). If this option is not 
available, you may send the details directly to our 
googleadsapi-supp...@google.com alias instead.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2OV384: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/FHZTE0R0974600MeMOv0pxSQGzhaWy31tqrA%40sfdc.net.


Code to call a popup to fetch an existing Google Ads account and link it to a manager account

2021-09-30 Thread RealDigiAds Inc.
We ran into an issue with the code to call a popup to fetch an existing 
Google Ads account in order to link it to a manager account. We can do it 
with the old API version but we're having difficulty with API V8.

Please help to guide us to a relevant example or reference in the latest 
google ads php library.  This code will show the user a login prompt and 
give option of granting permission to access ads account.

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/7e7b8a1e-bb43-462c-bc01-b60f2f354593n%40googlegroups.com.


Re: ConversionTrackingError.DOMAIN_EXCEPTION error

2021-09-30 Thread Titus Filip
Here is the code I use:

// Create an upload conversion for offline conversion imports.
$conversionTracker = new UploadConversion();
$trackerName = 'domain_host';
$conversionTracker->setName($trackerName);
$conversionTracker->setViewthroughLookbackWindow(30);
$conversionTracker->setCtcLookbackWindow(90);

// Create operation.
$operation = new ConversionTrackerOperation();
$operation->setOperand($conversionTracker);
$operation->setOperator(Operator::ADD);

// Create the conversion tracker on the server.
$adwordsService->mutate([$operation]);

On Thursday, September 30, 2021 at 5:48:02 PM UTC+3 Titus Filip wrote:

> Hello<
>
> I try to create an upload conversion for offline conversion imports but I 
> have an error "ConversionTrackingError.DOMAIN_EXCEPTION @ operations[0]".
> I check the description for this error "An exception occurred in the 
> domain layer during an attempt to process a // ConversionTypeOperation." 
> but is too generic and it doesn't help me to find what is the problem.
>
> I would like to know based on that error where the problem could be? Could 
> the problem be with my code (it worked fine until now) ? or something 
> related to that google account ?
>
> I'm using Adwords API v201809,  php library googleads 
>
> Thanks,
> Titus

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/68ab35fb-e9cd-4764-88d1-e51d3b93fd5bn%40googlegroups.com.


Re: Throws "MUTATE_ACTION_NOT_PERMITTED_FOR_CLIENT" error while creating video campaign.

2021-09-30 Thread Google Ads API Forum Advisor
Hi Abbas,

Thank you for following up on this feature request.

Unfortunately, we still have yet to receive information regarding its 
availability. For now, please continue to follow our blog for updates. As a 
workaround, you may check out this article to Create a Video campaign via 
Google Ads UI.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2OV3l8: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/YWBG-0R0956600NAjQDKN-THqtL3lOJi3axw%40sfdc.net.


Re: How to translate column names which are collected through Google Ads API?

2021-09-30 Thread Google Ads API Forum Advisor
Hi Hyunsoo,

Thanks for providing us the requested information.

Upon checking your concern based on the latest information you’ve provided us, 
it appears that you’re looking for translating column names to the Korean 
locale for the data received from the Google Ads API in order to compare it 
with the report generated by Google Ads UI where it’s column names already in 
Korean locale.

As your concern is specific to translation from English locale to Korean 
locale, then, I’m afraid that our team can not provide further support since 
this is outside of our support scope. However, upon Google search for 
translating, I would suggest you may also use the Translation API. That said, 
you may reach out to the Google Cloud support console team, via this link, for 
further assistance as they might help you regarding your translation concern.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2OUJnz: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/IU7o-0R0954F005JAk7447Sme7ehDyvSXUDQ%40sfdc.net.


ConversionTrackingError.DOMAIN_EXCEPTION error

2021-09-30 Thread Titus Filip
Hello<

I try to create an upload conversion for offline conversion imports but I 
have an error "ConversionTrackingError.DOMAIN_EXCEPTION @ operations[0]".
I check the description for this error "An exception occurred in the domain 
layer during an attempt to process a // ConversionTypeOperation." but is 
too generic and it doesn't help me to find what is the problem.

I would like to know based on that error where the problem could be? Could 
the problem be with my code (it worked fine until now) ? or something 
related to that google account ?

I'm using Adwords API v201809,  php library googleads 

Thanks,
Titus

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c6ec038c-9885-4668-82d1-de253b3d3507n%40googlegroups.com.


language_constant doc inconsistent w constants service

2021-09-30 Thread dhmitc...@gmail.com
In 
https://developers.google.com/google-ads/api/fields/v8/language_constant?hl=en 
it lists locale looking strings as valid values (e.g., "en_US") but the 
constant 
service 
https://developers.google.com/adwords/api/docs/appendix/codes-formats#languages 
returns a much smaller list wihout country variants. Which value set does 
campaign.language accept? 
(https://developers.google.com/google-ads/api/reference/rpc/v8/CampaignCriterion)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1e56c4df-e3a6-4e03-a0a7-d374f4d57c38n%40googlegroups.com.


Re: Upgrade version

2021-09-30 Thread Cetin Imre
I was related to Java Client, There should be the same way you can get it 
Perhaps for the other clients as well. 

On Thursday, September 30, 2021 at 4:03:57 PM UTC+2 Jay wrote:

> Hi, 
> Can you elaborate on how and where i need to execute this command please?
>
> On Thursday, September 30, 2021 at 5:32:37 PM UTC+4 
> cetin...@visual-meta.com wrote:
>
>> Hi,
>>
>> Basically, You should be able to change your client version like below as 
>> samples.
>>
>> GoogleAdsClient.newBuilder
>> ().fromProperties(properties).build().getLatestVersion()
>> GoogleAdsClient.newBuilder
>> ().fromProperties(properties).build().getVersion7()
>> GoogleAdsClient.newBuilder
>> ().fromProperties(properties).build().getVersion8()
>>
>> Best,
>> Cetin
>>
>> On Thursday, September 30, 2021 at 3:09:29 PM UTC+2 Jay wrote:
>>
>>> Can someone help me understand what i need to do to upgrade my google 
>>> version from 6 to 8 please? Because non of my calls are working and google 
>>> response is version 6 has been deprecated. Using google ads 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/5a567555-ea3b-4ba6-9066-cd05a94a3647n%40googlegroups.com.


Re: Upgrade version

2021-09-30 Thread Jay
Hi, 
Can you elaborate on how and where i need to execute this command please?

On Thursday, September 30, 2021 at 5:32:37 PM UTC+4 
cetin...@visual-meta.com wrote:

> Hi,
>
> Basically, You should be able to change your client version like below as 
> samples.
>
> GoogleAdsClient.newBuilder
> ().fromProperties(properties).build().getLatestVersion()
> GoogleAdsClient.newBuilder
> ().fromProperties(properties).build().getVersion7()
> GoogleAdsClient.newBuilder
> ().fromProperties(properties).build().getVersion8()
>
> Best,
> Cetin
>
> On Thursday, September 30, 2021 at 3:09:29 PM UTC+2 Jay wrote:
>
>> Can someone help me understand what i need to do to upgrade my google 
>> version from 6 to 8 please? Because non of my calls are working and google 
>> response is version 6 has been deprecated. Using google ads 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/a4718183-4252-415e-b694-0adaacc89dc0n%40googlegroups.com.


Re: Upgrade version

2021-09-30 Thread Cetin Imre
Hi,

Basically, You should be able to change your client version like below as 
samples.

GoogleAdsClient.newBuilder
().fromProperties(properties).build().getLatestVersion()
GoogleAdsClient.newBuilder
().fromProperties(properties).build().getVersion7()
GoogleAdsClient.newBuilder
().fromProperties(properties).build().getVersion8()

Best,
Cetin

On Thursday, September 30, 2021 at 3:09:29 PM UTC+2 Jay wrote:

> Can someone help me understand what i need to do to upgrade my google 
> version from 6 to 8 please? Because non of my calls are working and google 
> response is version 6 has been deprecated. Using google ads 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/e8d97956-aea0-4391-b43f-0c8a79d2f160n%40googlegroups.com.


Upgrade version

2021-09-30 Thread Jay
Can someone help me understand what i need to do to upgrade my google 
version from 6 to 8 please? Because non of my calls are working and google 
response is version 6 has been deprecated. Using google ads 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/c3e94ee9-c8cc-48e5-87f0-714758d47a44n%40googlegroups.com.


Re: Call extensions bug

2021-09-30 Thread Pete Lavetsky (AdWords API Guru)
Was there any resolution to this? We're running into the same thing.

On an existing CallFeedItem, we are changing the 
CallConversionReportingState to USE_ACCOUNT_LEVEL_CALL_CONVERSION_ACTION 
via setCallConversionReportingState ( Google Ads API Client Library for 
Java v 15.0.0 ) 

This mutate succeeds and the field mask for the reporting state is part of 
the mutate

On a subsequent get via the API, the reporting state has not changed ( it's 
still USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION )

We've verified that the Call Extension value did not change in the UI ( or 
the API )

Is there another level that needs to be pulled if the 
CallConversionReportingState is changed via the API?

MethodName: 
google.ads.googleads.v8.services.ExtensionFeedItemService/MutateExtensionFeedItems

Endpoint: googleads.googleapis.com:443

Headers: {developer-token=REDACTED, login-customer-id=ABC, 
x-goog-api-client=gl-java/1.8.0_161 gapic/ gax/2.5.0 grpc/1.40.1}

Body: customer_id: "ABC"

operations {

  update {

resource_name: "customers/ABC/extensionFeedItems/XYZ"

call_feed_item {

  call_conversion_reporting_state: 
USE_ACCOUNT_LEVEL_CALL_CONVERSION_ACTION

  phone_number: "(ABC)766-7318"

  country_code: "US"

  call_tracking_enabled: true

  call_conversion_tracking_disabled: false

}

extension_type: CALL

  }

  update_mask {

paths: "resource_name"

paths: "extension_type"

paths: "call_feed_item.phone_number"

paths: "call_feed_item.country_code"

paths: "call_feed_item.call_tracking_enabled"

paths: "call_feed_item.call_conversion_tracking_disabled"

paths: "call_feed_item.call_conversion_reporting_state"

  }

}

partial_failure: true



Response



Headers: 
Metadata(content-disposition=attachment,content-type=application/grpc,request-id=K1gd1cwA7wE53NnLo9D2fw,date=Tue,
 
28 Sep 2021 18:21:52 GMT,alt-svc=h3=":443"; ma=2592000,h3-29=":443"; 
ma=2592000,h3-T051=":443"; ma=2592000,h3-Q050=":443"; 
ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; 
ma=2592000,quic=":443"; ma=2592000; v="46,43")

Body: results {

  resource_name: "customers/ABC/extensionFeedItems/XYZ"

}

Thanks
Pete

On Wednesday, August 12, 2020 at 12:58:18 PM UTC-4 Google Ads API Forum 
Advisor Prod wrote:

> Hi Roman,
>
> Please try to use the CustomerExtensionsSettingService 
> 
>  
> and see if your extensions return properly with this service.
>
>
> Regards,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q23Ivfv: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/c3e81324-69b1-4008-b824-208cbc81af8an%40googlegroups.com.


Question about API limits and quotas based on specific example

2021-09-30 Thread Alex Papageorgiou
Hi,

Can you please help me understand how the steps below count against the 
basic daily api limits? 

The below is 100 pc based on the code example from  your github page 
https://github.com/googleads/google-ads-python/blob/868bf36689f1ca4310bdead9c46eed61b8ad1d11/examples/planning/add_keyword_plan.py#L31-L280

1.Create a KeywordPlan
2.Add a KeywordPlanCampaign to the KeywordPlan
3.Adds KeywordPlanAdGroups to the KeywordPlanCampaign
4.Add KeywordPlanAdGroupKeywords to the KeywordPlanAdGroups

Would this sequence use 4 out of the 5,000 available mutate operations as 
listed here 
https://developers.google.com/google-ads/api/docs/best-practices/quotas ? 
Or are they counted as regular operations ie 4 out of the 15,000 available? 


Thanks,
Alex Papageorgiou

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8856ee98-d466-443f-9ade-aa7532d8e927n%40googlegroups.com.


Deprecation of version

2021-09-30 Thread Jay
Hey Google support, 

I need urgent help. All my functions on python have stopped working giving 
me response as below:

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/79051973-ba04-4bbd-972d-ff6bbc598068n%40googlegroups.com.


API and transaction ID

2021-09-30 Thread Antonio Paricio
Hello,

I'm starting with the GoogleAds API and the PHP V8 library. I'm interested 
in reporting and I can get campaign data. 

I would like get info about transaction to join with eCommerce (Magento) 
data but I don't know if it is even possible. There is some dimension to 
get the eCommerce transactionId as ga:transactionId in Google Analytics or 
any unique ID from eCommerce?

I'm consulting https://developers.google.com/google-ads/api/docs and I 
would say there is not, but I want to confirm.

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/73c09f16-6622-483f-aa11-4f564ebb1dffn%40googlegroups.com.


RE: Which the name of statuses refer to the value of statuses?

2021-09-30 Thread Google Ads API Forum Advisor
Hi,

Thanks for reaching out to us. This appears to be a client library related 
query as opposed to an API related query. That said, I recommend you reach out 
to the client library owner by filing an issue on issue tracker since they're 
the appropriate to confirm if the mapping of enum to numeral specified on the 
provided link is correct.

Let us know if you have any further questions.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2OVMuI: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/jcGz60R08SRW00IecWQgA9TEOegZxItENA1Q%40sfdc.net.


Test script doesn't work

2021-09-30 Thread developer
PHP 7.3. 
Google Ads API Client Library was installed and connected by composer.

Trying to start script "AuthenticateInWebApplication.php" from page by link 
below:
https://developers.google.com/google-ads/api/docs/client-libs/php/oauth-web

And I have error

How to solve it?

=
Output
=
Fatal error: Uncaught RuntimeException: Failed to listen on 
"tcp://127.0.0.1:0": Cannot assign requested address in 
/home/c23170/api.td-pobedit.ru/www/google-ads-php/vendor/react/socket/src/TcpServer.php:172
Stack trace:
#0 
/home/c23170/api.td-pobedit.ru/www/google-ads-php/vendor/react/socket/src/Server.php(77):
 
React\Socket\TcpServer->__construct('tcp://127.0.0.1...', 
Object(React\EventLoop\StreamSelectLoop), Array)
#1 /home/c23170/api.td-pobedit.ru/www/AuthenticateInWebApplication.php(70): 
React\Socket\Server->__construct(0, 
Object(React\EventLoop\StreamSelectLoop))
#2 
/home/c23170/api.td-pobedit.ru/www/AuthenticateInWebApplication.php(171): 
Google\AdsApi\Examples\Authentication\AuthenticateInWebApplication::main()
#3 {main}
  thrown in 
/home/c23170/api.td-pobedit.ru/www/google-ads-php/vendor/react/socket/src/TcpServer.php
 
on line 172

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/95853aaf-cdcb-408f-a1e3-5c9918439660n%40googlegroups.com.


Re: Image Asset Update Operation does not take place on Google Ads

2021-09-30 Thread Cetin Imre
Hi Ernie,

That was so explanatory would help me solve my problem by changing my 
approach to update Image Asset.
Thanks a lot for your quick response.

Best regards,
Cetin.


On Thursday, September 30, 2021 at 3:33:18 AM UTC+2 adsapi wrote:

> Hi Cetin,
>
> Thank you for posting your concern.
>
> Please note that the update 
> 
>  
> operation of AssetOperation 
> 
>  
> is used to change the mutable fields of Asset 
>  
> object and I am afraid that asset_data 
> 
>  
> is not included there. This is the possible reason why the update did not 
> reflect even though the API request is successful.
>
> With this, you may follow the *Key Point* section of the this document 
> 
>  instead.
>
> Let me know if you have further questions.
>
> Regards,
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2OV4bq: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/f75e232e-506a-4e82-944c-2889d6274d6an%40googlegroups.com.


GoogleAdsService, how to get customer_id

2021-09-30 Thread 梁景熙
hello, my team is using google ads API -- GoogleAdsService to get the ads 
data now.one method of the google_ads_service 

 --  
search_stream needs at least two input args, customer_id and query_sql. 
Now, we get customer_ids by the old adwords API, which   will sunset on *April 
27, 2022* 
.
 
So we want to know how to get the  customer_ids by the new ads API. Are 
there any services can be used or any other solution?
Thanks a lot~

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/aae346e4-18fb-4750-9932-377a27dbc8ffn%40googlegroups.com.


Re: GAQL for CampaignAsset - Why is campaign a segment?

2021-09-30 Thread Ales Sturala
Hi Ernie,

The GAQL queries were only given as an example, the question is rather 
about the documentation and why the same field (imho same field) is once a 
segment and once an attribute.

A

On Wednesday, 29 September 2021 at 10:31:53 UTC+2 adsapi wrote:

> Hi Ales,
>
> Thank you for raising your concern to my team.
>
> To further check your concern, would you be able to provide the complete 
> request 
> 
>  
> and response 
> 
>  
> logs with request ID 
> 
>  
> generated on your end for the 2 queries that you've mentioned?
>
> If you haven't enabled the logging of the API transactions for the 
> specific client library that you are using, then please refer to the 
> specific guide below: 
>
>- Java - 
>https://developers.google.com/google-ads/api/docs/client-libs/java/logging 
>- .Net - 
>
> https://developers.google.com/google-ads/api/docs/client-libs/dotnet/logging 
>- PHP - 
>https://developers.google.com/google-ads/api/docs/client-libs/php/logging 
>- Python - 
>
> https://developers.google.com/google-ads/api/docs/client-libs/python/logging 
>- Ruby - 
>https://developers.google.com/google-ads/api/docs/client-libs/ruby/logging 
>- Perl - 
>https://developers.google.com/google-ads/api/docs/client-libs/perl/logging 
>
>
> You can provide it via *Reply privately to author* option. If this option 
> is not available, then send it instead on this email address 
> googleadsa...@google.com.
>
> Regards,
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2OUkM7: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/45ff667e-48bd-4140-addd-c818feb7cc76n%40googlegroups.com.


Ads api

2021-09-30 Thread lin joinf
Hi,
I am currently calling API to develop advanced bidding function, but I 
encounter a problem:

Advanced bidding. This function is not found in Google ads query builder. 
Yes, view. Is this function API not supported?

[image: 微信截图_20210930154804.png]

Cheers.
ChenAi

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5a254bbe-403e-4ad4-86ce-98a6edbfea95n%40googlegroups.com.


Re: Budget Status is always unspecified

2021-09-30 Thread Google Ads API Forum Advisor
Hi Estanislao,

This is to confirm that I have received the logs and have already performed my 
investigation.

Upon checking, the status attribute is output only, and with this, it would be 
ignored when passed in any mutate requests. As you may also see in this example 
for creating a campaign budget, this attribute is also not included. In 
addition, since the said attribute is output only, specifying the 
response_content_type: MUTABLE_RESOURCE would still not return this in a mutate 
request as the attribute is not a mutable one.

If you wish to query all the attributes of your campaign's budget, you may use 
the campaign_budget view instead. I hope this helps.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2OUTP2: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/TK7Dp0R08KAB00HU6INe1PSVmfCDsYFjI_xw%40sfdc.net.


Re: Error While Uploading Offline Conversion

2021-09-30 Thread Google Ads API Forum Advisor
Hi Aamir,

Thank you for your follow up.

Unfortunately, our team would not be able to comment on how you can enable 
logging for Nuget as it is not included in our supported client libraries. 
However, I could see from the link you provided that it might be using .NET. 
You can try and refer to this .NET guide for logging instead.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2OUP1m: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/zqCM90R08IML0053lFiPySSMyADUYCX4IgHw%40sfdc.net.