Re: GEO_PERFORMANCE_REPORT LocationType issue

2020-10-02 Thread denma test
Hi Found the causes, issue in below line ->where('IsTargetingLocation')->in(['true','false']) need to pass as string, i used as true, false constant. On Thursday, October 1, 2020 at 7:29:39 PM UTC+5:30 adsapiforumadvisor wrote: > Hello, > > What is the error you are facing when using this

Unsupported media type issue

2020-10-02 Thread denma test
Hi I have created Gmail Ad using images and was working fine without issues, but when looking to create today with same code and same images, but i received API error as MediaError.UNSUPPORTED_TYPE. Have not done any changes in code and image level. Please let me know the reason for this

Re: Promotion Extensions Editing

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hi Roman, Thank you for the feedback and clarifications. I was able to reproduce the issue and to fix it by setting the field "percentOff" to "-1" instead of "None". Could you give it a try on your side? Thanks, Pierrick - Google Ads API Team ref:_00D1U1174p._5004Q25Y07u:ref -- --

Re: Associate an uploaded extension with campaigns issue (EntityNotFound.INVALID_ID).

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hi, We took a closer look and the issue is that the ExtensionSetting Services can only work with system-created feeds which is not the case here. To use user-defined feeds like the one you use here, you will need to use the CampaignFeedService instead. Thanks, Pierrick - Google Ads API Team

RE: Unknown Billing Error when enabling Google Ads API

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hi Adam, Thank you for reaching out. Please try to disable all Google Chrome extensions and ad-blockers and then sign into Google Cloud Console and add the Google Ads API. Thanks and regards, Xiaoming, Google Ads API Team Xiaoming Google Ads API Team ref:_00D1U1174p._5004Q25Ye7U:ref -- --

RE: error when creating new ad schedule (campaign criterion)

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hi Frank, You will need to set the campaign just like how the example you provided did. In the campaignCriterion object, you will need to add 'campaign' => $campaignResourceName You'll also need to provide pass the variable in the function that creates the ad schedule. Regards, Anthony Google

Re: Google Ads Query Ad Schedule fetch

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hello, Here is an example query you can use to get ad schedule data. SELECT ad_schedule_view.resource_name, campaign.serving_status, campaign.id FROM ad_schedule_view WHERE campaign.serving_status = 'SERVING' You can create valid queries using the Interactive Query Builder here. Cheers, Anthony

Offline Conversion Upload in cross account conversion tracking

2020-10-02 Thread Andrea Cau
Hi all. I'm trying to upload offline conversion but I get the following partial error message: "This customer does not have an import conversion action that matches the conversion action provided., at conversions[0].conversion_action" In attachment I share the snippet of code. In the method

error when creating new ad schedule (campaign criterion)

2020-10-02 Thread fru...@adzlocal.de
Hi there, i'm trying to create a set of adgroup criteria for a campaign (ad schedules) with the new php v5 library. But all i get is an error message saying that the field 'campaign' is missing. This is the debug log output: [2020-10-02 13:41:06] google-ads.WARNING: Request made: Host:

Re: Create a new label using Ads API

2020-10-02 Thread Peter Vanek
Thank you VERY much. So the documentation is not very well, written, it suggests that you should wrap the TextLabel in a LabelOperation DIRECTLY, but the actual way is to wrap the TextLabel in a Label and the Label should be wrapped in the LabelOperation. Thanks again. On Friday, October 2,

Unknown Billing Error when enabling Google Ads API

2020-10-02 Thread Adam Ghoumrassi
Hello, I am attempting to access the Google Ads API but every time I do, I encounter the following error: “Unknown Billing Error. Tracking number: c8524429390098731" Would you be able to assist me in figuring out how to fix this error? I notice that others in the Adwords have also

Re: Google Ads Query Ad Schedule fetch

2020-10-02 Thread beyond Clicks
Whenever I've attempted to add ad_schedule_view to the query I placed in my question, I get a 400 error back, the documentation doesn't clearly show how it should be formatted. .campaign.ad_schedule_view in the select doesn't work, nor does simply trying to put ad_schedule_view in the FROM

Re: Promotion Extensions Editing

2020-10-02 Thread Roman Bondarenko
Hello! Firstly, I want to point that in link which you left in your response there is a banner which says: "*Note:* You can use either the ADD or SET operator here, since the two operators are equivalent in extension setting services." And I did try with SET operation but result was the

RE: Get Website visitors Remarketing list via Google Ads API

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hi Chung, In the Google Ads API perspective, visitors to your website type of userlists are usually created with a RuleBasedUserListInfo object. To retrieve them via the GAQL, you can include a condition in your query wherein the (user_list) user_list.type = RULE_BASED. I hope this helps.

RE: Google Ads Query Ad Schedule fetch

2020-10-02 Thread Google Ads API Forum Advisor Prod
Hi, Thanks for posting your concern. On the Google Ads API perspective, you can use the ad_schedule_view report as it summarizes the performance of campaigns by AdSchedule criteria. You can also include the queries from the provided report to the ad_schedule_view report as campaign resource

Google Ads Query Ad Schedule fetch

2020-10-02 Thread beyond Clicks
Currently my query reads as; SELECT campaign.id, campaign.name, campaign.status, metrics.cost_micros, campaign_budget.amount_micros, metrics.search_impression_share FROM campaign WHERE campaign.serving_status = SERVING AND segments.date DURING TODAY ORDER BY campaign.id I'm looking for

Get Website visitors Remarketing list via Google Ads API

2020-10-02 Thread Chung Trần
Hi the Google Ads API Team, In Google Ads > Audience Manager, I can create audience remarketing list with Website visitors type, but I wonder how to get all Website visitors type list by API using Google Ads Query Language. Best Regards, Chung -- --

Re: Create keyword label via Google Ads API

2020-10-02 Thread Peter Vanek
Thanks a lot for your response, I will try it and I will let you know if I still have some problems, thanks On Thursday, October 1, 2020 at 9:41:02 PM UTC+2 adsapiforumadvisor wrote: > Hi Peter, > > Thank you for reaching out. You could use the >