update campaign target location

2023-06-02 Thread Oleg Disrupt
Hello
I want to remove all locations in campaign and update new locations.
I tried it to use in google-php-sdk examples but some locations still exist
foreach ($locationIds as $locationId) {
// Creates a campaign criterion.
$campaignCriterion = new CampaignCriterion([
'campaign' => $campaignResourceName,
'location' => new LocationInfo([
'geo_target_constant' => ResourceNames::
forGeoTargetConstant($locationId)
])
]);

// Creates a campaign criterion operation.
$campaignCriterionOperation = new CampaignCriterionOperation();
$campaignCriterionOperation->setCreate($campaignCriterion);

$campaignCriterionOperations[] = $campaignCriterionOperation;
}

// Submits the criteria operations and prints their information.
$campaignCriterionServiceClient = $this->googleAdsClient->
getCampaignCriterionServiceClient();
$response = $campaignCriterionServiceClient->mutateCampaignCriteria(
$customerId,
$campaignCriterionOperations
);

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/7ceb2bcf-17eb-46e7-a3f8-9d73e7c87062n%40googlegroups.com.


Re: Assisted Conversions

2023-06-02 Thread Google Ads API and AdWords API Forum


Hi Oksana, 

Thanks for reaching out to the Google Ads API Forum. I hope you are doing 
well today.

With regards to your concern, I'm afraid that as of this time, Assisted 
Conversions reporting is not yet supported in the Google Ads API's reports. 
However, this is a current feature request to be supported in Google Ads 
API. For now, kindly keep an eye on our blog post and to the *Release Notes 
in Google Ads API* for updates or announcements when it becomes available.

Reference Links:

   - 
   
   Release Notes in Google Ads API : 
   https://developers.google.com/google-ads/api/docs/release-notes
   - 
   
   Blog post: 
   https://ads-developers.googleblog.com/search/label/google_ads_api 
   

Have a great day.

Regards,
Google Ads API Team

On Wednesday, May 31, 2023 at 1:00:33 AM UTC+8 Oksana Sulyma wrote:

> Hi Google Ads API team!
>
> Could you please help me, I'm trying to find a resource (ideally report) 
> to pull Assisted Conversions from API. 
> Here is data I'm looking for
> [image: Screenshot 2023-05-30 at 19.57.44.png]
> Is it possible to pull it from API?
> Thanks in advance,
> Oksana
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/4cc8f13c-ee2d-4907-ba83-97775e270727n%40googlegroups.com.


Re: How to Reproduce This UI Report With The API?

2023-06-02 Thread Chad Wood
Hello, I've made some progress since the last email. Feel free to disregard 
it and I'll just update the thread.I've moved the questions still in need 
of help to the bottom of this email.
For reference, I was able to get the data I wanted with the following query 
(extra stuff in here too):

SELECT 
  ad_group_ad.ad.id, 
  ad_group_ad.ad.name, 
  ad_group_ad.ad_group, 
  ad_group_ad.status, 
  ad_group_ad.policy_summary.review_status, 
  ad_group_ad.policy_summary.approval_status, 
  ad_group_ad.policy_summary.policy_topic_entries, 
  ad_group.id, 
  ad_group.name, 
  ad_group.campaign, 
  ad_group.status, 
  campaign.id, 
  campaign.name, 
  campaign.status, 
  campaign.serving_status, 
  campaign.primary_status, 
  campaign.primary_status_reasons 
FROM ad_group_ad 

One thing I didn't see that would be nice is something like "last served 
date" or "last impression date" at the ad level, to get a sense for when 
the ad was last used.
Is there another way to figure out when an ad was last used?

Also is there any way to check what previous states of an ad were, at a 
given time? I'm interested in a time series analysis of statuses at the ad 
level.

Thanks!

On Friday, June 2, 2023 at 9:41:47 AM UTC-7 Chad Wood wrote:

> Hello, hope all is well
>
> I would like to reproduce the following report with the API (screenshot at 
> bottom).
> Disregarding the dates, how can I structure my query to receive the 
> 0. `Ad ID`,
> 1. `Approval Reasons`, 
> 2. `Ad State`, and 
> 3. `Ad Status` ?
>
> Second, is there any way to get the historic states/statuses/reasons of 
> the ads? If an ad is removed today, can I see what its status was 
> yesterday? Lastly, is there a maximum amount of time before I can no longer 
> see historic states of ads?
>
> Thanks!
>
> [image: Report-editor-Google-Ads.png]
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/9196e6a3-bae9-4b40-869b-b05d17120e7an%40googlegroups.com.


Re: Cannot get click_view data for app campaign

2023-06-02 Thread Google Ads API and AdWords API Forum


Hi, 

Thanks for reaching out to the Google Ads API Forum. I hope you are doing 
well today.

Moving forward to your concern about “click_view data for app campaign”, 
for our team to further compare, investigate, and validate why you are 
encountering issues, can you provide more information?


   - 
   
   Provide the complete (request and response with request-id) logs with 
   request ID generated as shown in the respective links.
   - 
   
   Complete or uncropped screenshots from the Google Ads UI (optional)
   
 

We do this to check if there’s an error thrown on your side and provide 
accurate recommendations. 

 

If you haven't enabled logging yet, it can be enabled by navigating to the 
Client libraries > Your client library (ex. Java) > Logging documentation, 
which you can access from this link. For REST interface requests, you can 
enable logging via the curl command by using the -i flag. This will cause 
the tool to include the HTTP response headers in the output.

You can provide these via the Reply privately to author option. If this 
option is not available, then send it instead on this email address 
googleadsapi-supp...@google.com .

Reference links:

   - 
   
   Logging documentation - 
   
https://developers.google.com/google-ads/api/docs/best-practices/logging#client_library_logging
   - 
   
   Request - 
   
https://developers.google.com/google-ads/api/docs/concepts/field-service#request
   - 
   
   Response - 
   
https://developers.google.com/google-ads/api/docs/concepts/field-service#response
   - 
   
   Request-id - 
   
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request-id
   

Have a great day.

Regards,
Google Ads API Team


On Tuesday, May 30, 2023 at 5:13:22 PM UTC+8 t.br...@affise.com wrote:

> Hello, I have a problem with getting click_view data for app campaign 
> clicks.
> When I execute the following query
> SELECT ad_group_ad.ad.name, metrics.all_conversions, metrics.clicks, 
> segments.date FROM ad_group_ad WHERE segments.date = '2023-05-28'
> I get
> ad:{resource_name:"customers/***/ads/***" type:APP_AD}} 
> metrics:{all_conversions:689 clicks:3638} segments:{date:"2023-05-28"}
>
> However, when after that I send the following query (with the same 
> credentials, customer id and everything)
> SELECT click_view.gclid FROM click_view WHERE segments.date = '2023-05-28'
> I get no results. Same when adding a specific gclid to WHERE condition in 
> the click_view query.
>
> I did see this part in documentation about click_view: "For non-Search 
> campaigns, metrics.clicks represents the number of valid and invalid 
> interactions.". But does that mean, that for non-Search campaigns there is 
> no way to get per-click info from click_view?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/77cf9f14-4286-449d-8348-d5dc8f8ce3f9n%40googlegroups.com.


RE: negativekeywordslist.addnegativekeywords() not working

2023-06-02 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Dennis,

I'm from the Google Ads API team. I hope you're doing well today.

Kindly note that this forum channel is intended for discussion of technical 
implementation issues and related concerns to Google Ads API. If you're 
encountering issues with the said API, please provide more context on your 
concern along with some screenshots of the issue and the complete request and 
response logs with request-id so we can further investigate.

Otherwise, if you're encountering issues in Google Ads Scripts, I suggest you 
post the details of your concern on their forum to get further assistance.

Reference links:
Google Ads API - https://developers.google.com/google-ads/api/docs/start
request - 
https://developers.google.com/google-ads/api/docs/concepts/field-service#request
response - 
https://developers.google.com/google-ads/api/docs/concepts/field-service#response
request-id - 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request-id
forum - https://groups.google.com/forum/#!forum/adwords-scripts

This message is in relation to case "ref:_00D1U1174p._5004Q2lv5S5:ref"


Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/C97Ap0RVN1HF00ZPjkNNpgSHSjEiJLQehH-A%40sfdc.net.


Re: google account cannot access api

2023-06-02 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for your response.

I could see that you've already an existing case with the subject "The account 
cannot access the API, and our company's development pre research is" that has 
the same questions for your recent response on this thread. For better tracking 
of this issue, we recommend continuing the conversation on the existing thread 
moving forward, as our team already responded to you on the said thread.

This message is in relation to case "ref:_00D1U1174p._5004Q2ltxff:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/UN4eM0RVN0ZL00cyDv_nakQt6-09N_3uQ6wQ%40sfdc.net.


RE: unexpected userpermissiondenied exception when querying campaigns

2023-06-02 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hello Jack,

Thanks for reaching out to the Google Ads API Team.

With regards to the UserPermissionDenied error, please note that If you're 
accessing a client customer, the manager's customer ID must be set in the 
login-customer-id header. Learn more at 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#cid.

UserPermissionDenied - 
https://developers.google.com/google-ads/api/reference/rpc/v12/AuthorizationErrorEnum.AuthorizationError#user_permission_denied

Can you please provide us with the complete request and response logs with 
request ID generated on your end when you performed your API requests and an 
uncropped screenshot of the UI since you mentioned that you “verified that this 
customer is able to view the requested campaigns from the UI” so we can 
investigate further and provide recommendations?

Request - 
https://developers.google.com/google-ads/api/docs/concepts/field-service#request
Response - 
https://developers.google.com/google-ads/api/docs/concepts/field-service#response
Request ID - 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request-id

You can provide it via Reply privately to the author option. If this option is 
not available, then send it instead on this email address 
googleadsapi-supp...@google.com.

This message is in relation to case "ref:_00D1U1174p._5004Q2lvLDT:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/Nsv7M0RVN0BU00_4LA0Q4kQJOCG_wH1-lxdA%40sfdc.net.


Developer Token not enabled for ReachPlanningService.

2023-06-02 Thread 'Sai Teja Makani' via Google Ads API and AdWords API Forum
Hello Team,

We have standard access dev token and yet making calls 
to ReachPlanningService gave this error "This request is not authorized to 
call ReachPlanningService. Developer Token not enabled."

Below is the complete request and response. I am following this 
snippet 
https://github.com/googleads/google-ads-python/blob/main/examples/planning/forecast_reach.py
 

Let me know if you need any other information from our end. Our business 
needs this functionality and please enable it for our dev token.

##
c:/Users/SaiTejaMakani/Downloads/google-ads-python-main/google-ads-python-main/examples/planning/forecast_reach.py
[2023-06-02 13:18:07,806 - INFO] Request

Method: 
/google.ads.googleads.v13.services.ReachPlanService/ListPlannableLocations
Host: googleads.googleapis.com
Headers: {
"developer-token": "REDACTED",
"login-customer-id": "3868760994",
"x-goog-api-client": "gl-python/3.8.10 grpc/1.47.0 gax/2.10.1 gccl/21.1.0 
pb/4.22.1"
}
Request: 
Response

Headers: {
"google.ads.googleads.v13.errors.googleadsfailure-bin": 
"\na\n\u0002H\u0007\u0012YThis request is not authorized to call 
ReachPlanningService. Developer Token not 
enabled.\"\u\u0012\u0016f0gr53xzNvF66xKM_B698Q",
"grpc-status-details-bin": "\b\u0007\u0012#The caller does not have 
permission\u001a\u0001\nDtype.googleapis.com/google.ads.googleads.v13.errors.GoogleAdsFailure\u0012{\na\n\u0002H\u0007\u0012YThis
 
request is not authorized to call ReachPlanningService. Developer Token not 
enabled.\"\u\u0012\u0016f0gr53xzNvF66xKM_B698Q",
"request-id": "f0gr53xzNvF66xKM_B698Q"
}
Fault: errors {
error_code {
authorization_error: ACTION_NOT_PERMITTED
}
message: "This request is not authorized to call ReachPlanningService. 
Developer Token not enabled."
location {
}
}
request_id: "f0gr53xzNvF66xKM_B698Q"

[2023-06-02 13:18:07,809 - WARNING] Request made: ClientCustomerId: None, 
Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v13.services.ReachPlanService/ListPlannableLocations, 
RequestId: f0gr53xzNvF66xKM_B698Q, IsFault: True, FaultMessage: This 
request is not authorized to call ReachPlanningService. Developer Token not 
enabled.
Request with ID "f0gr53xzNvF66xKM_B698Q" failed with status "%s" and 
includes the following errors:
Error with message "This request is not authorized to call 
ReachPlanningService. Developer Token not enabled.".

##

Regards,
Sai Teja Makani

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/ba0430e5-48de-40b6-bf0a-559d29f50aecn%40googlegroups.com.


Re: Google Ads API Conversion Events

2023-06-02 Thread David Levin
Here is a list of the accounts I manage:

416-023-8313
981-298-5284
657-942-4380
907-081-5615
995-358-1921
688-190-2893
905-549-9027
705-115-8695
851-504-6060
808-922-1575
400-755-0788
575-611-2070 <-- most urgent
709-899-8791
270-923-9615
703-398-0978
662-091-1292
657-344-3355

On Fri, Jun 2, 2023 at 9:23 AM Google Ads API Forum Advisor
 wrote:

> Hey David,
>
> It looks like this allowlist is per-account, and doesn't propagate down
> from a manager. With that said, if you can send me the IDs for the client
> accounts you'd like allowlisted, I can submit a request for all of them at
> once.
>
> This message is in relation to case "ref:_00D1U1174p._5004Q2ggGJM:ref"
>
> Thanks,
>
> [image: Google Logo]
> Ben Karl
> Google Ads API Team
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/CAJr50840YU5_zLtVrYj12NinWw6vfGCBE_Gh55GdJMLfHsn0Rg%40mail.gmail.com.


Re: Google Ads API Conversion Events

2023-06-02 Thread David Levin
Ok, thanks for the update. I appreciate your help!

Dave

On Fri, Jun 2, 2023 at 7:15 AM Google Ads API Forum Advisor
 wrote:

> Hi David -
>
> Thank you, I do see your other message now, but let's continue on using
> this thread.
>
> I'm double-checking to see whether the allowlist permissions for
> conversion environment propagate down to child accounts. It's possible that
> we may need to allowlist client accounts individually, which is something I
> wouldn't have expected earlier. Once I figure that out I'll let you know
> what next steps should be.
>
> This message is in relation to case "ref:_00D1U1174p._5004Q2ggGJM:ref"
>
> Thanks,
>
> [image: Google Logo]
> Ben Karl
> Google Ads API Team
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/CAJr5086XtimYXmHCN6op0n_tG8v4wWuJYnCy0E4EQMDfmAHBsg%40mail.gmail.com.


Re: Unable to create Asset Group Signal via. API call

2023-06-02 Thread Dmitriy Lezhnev
Yeah, our tests are no longer red. Seems to be OK now.

On Fri, 2 Jun 2023 at 11:15, Google Ads API Forum Advisor
 wrote:

> Hi Everyone,
>
> Upon checking, this has already been resolved on our end. Can you please
> try once again and let us know how it goes on your end?
>
>  This message is in relation to case "ref:_00D1U1174p._5004Q2bCvlU:ref"
>
> Thanks,
>
> [image: Google Logo] Google Ads API Team
>
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/CAASCZndeXDqaZmDFE-L0ey9-H7D8iN2skBELTtGDFNusbhkY8g%40mail.gmail.com.


keyword_forecasts field has disappeared in GenerateForecastMetricsResponse

2023-06-02 Thread 조경호
I have used GenerateForecastMetricsRequest.
> 
https://developers.google.com/google-ads/api/reference/rpc/v13/GenerateForecastMetricsRequest


But Today
GenerateForecastMetricsResponse don't have keyword_forecasts field.
> 
https://developers.google.com/google-ads/api/reference/rpc/v13/GenerateForecastMetricsResponse#:~:text=ad%20group%20forecasts.-,keyword_forecasts,-%5B%5D

The keyword_forecasts field has disappeared.

What was going on?

Google Ads Status Dashboard is all green.
https://ads.google.com/status/publisher/

I still have a problem.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/fe3efffa-eb40-43a5-abd3-df10bfc2c2a2n%40googlegroups.com.


Re: tax free costs

2023-06-02 Thread Iana Ladygina
Hi,

Thanks for your response. I would like to know whether the cost metric
available in Google Ads UI includes taxes or not.

Kind regards,
Iana

[image: image.png]

On Fri, 2 Jun 2023 at 11:52, Google Ads API Forum Advisor
 wrote:

> Hi Iana,
>
> If the field that you were referring to is available to Google Ads UI,
> then there's a high possibility that it is available via API as well. In
> order for us to confirm this further, could you please provide to us a
> screenshot (un-cropped) of your Google Ads UI showing the entity/metrics
> that you want to get via API?
>
> This message is in relation to case "ref:_00D1U1174p._5004Q2lv00K:ref"
>
> Thanks,
>
> [image: Google Logo] Google Ads API Team
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/CA%2BZ5qxdP1pqDbvcT_NbO13kY7Jm_CL%3D3O7XP5kRqQS8zXgNhxw%40mail.gmail.com.


Re: audience in google ads version 13

2023-06-02 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thanks for getting back to us.

As mentioned previously in our email, can please share with us the Google Ads 
UI screenshot (without cropping with CID shown) of the data you are trying to 
retrieve via API? Please also share to us the complete API logs (request and 
response with request-id and request header) generated on your end? This is so 
we can check on our end as well and investigate further. You can provide it via 
the Reply privately to author option. If this option is not available, then 
send it instead on this email address googleadsapi-supp...@google.com.

Reference links included in this email:

request: 
https://developers.google.com/google-ads/api/docs/concepts/field-service?hl=en#request
response: 
https://developers.google.com/google-ads/api/docs/concepts/field-service?hl=en#response
request-id: 
https://developers.google.com/google-ads/api/docs/concepts/call-structure?hl=en#request-id
request header - 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request_headers

This message is in relation to case "ref:_00D1U1174p._5004Q2lKkVD:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/FnxYp0RVM7D000KpNoxWorR--359mCvZv1oA%40sfdc.net.