Re: Getting keyword final URLs

2021-12-15 Thread Дмитро Булах
Hi Mark, following on this: I've tried running the same query using Python SDK and everything works smoothly. Looks like this is a particular Ads Script implementation problem, I'll post this to corresponding forum. Thanks for your time On Wednesday, December 15, 2021 at 5:27:24 AM UTC+2 adsap

Re: Getting keyword final URLs

2021-12-14 Thread Дмитро Булах
Hi Ernie, unfortunately, I can't provide the exact request and response since I've been running these queries in Google Ads Scripts that hides all the requests details. here's the query: var query_ga = 'SELECT ad_group.id, ad_group_criterion.cpc_bid_micros, ad_group_criterion.final_urls, ad_gr

Getting keyword final URLs

2021-12-13 Thread Дмитро Булах
Hi I'm trying to retrieve keyword final URLs. When making a request for `ad_group_criterion.final_urls` in `ad_group_criterion` I'm getting `null` for specified field. At the same time AWQL `SELECT Criteria, CriteriaType, FinalUrls FROM CRITERIA_PERFORMANCE_REPORT` works fine and returns desired

BigQuery Ads Transfer Failed

2021-09-06 Thread Дмитро Булах
could anybody help find a reason for having empty `VideoConversionStats_` view in Bigquery? Running a 'Select * ' query returns 0 rows. running a query for VIDEO_PERFORMANCE_REPORT return valid data for all ConversionCategoryName, ConversionTypeName combinations. -- -- =~=~=~=~=~=~=~=~=~=~=~=~

Re: validate_only doesn't throw exceptions

2021-03-18 Thread Дмитро Булах
Thanks Peter, Here's one of my sample mutate operations: (I'm using python SDK and Test account) adgroupOperations = [ { 'operator': 'SET', 'operand': { 'id': 114550458410, 'biddingStrategyConfiguration': { 'targetRoasOverride': 1.0 } } }, { 'operator': 'SET',

validate_only doesn't throw exceptions

2021-03-17 Thread Дмитро Булах
Hi there, I got a problem with using `validateOnly` header. when set to `True` I got no exceptions for malformed mutate operations. I've just rolled back to example from https://github.com/googleads/googleads-python-lib/blob/9bfa25c1bbd45957a8d670c7d744523c8457dd32/examples/adwords/v201809/campai

developer token scope

2019-05-31 Thread Дмитро Булах
Hi, I've recently been approved for basic access level with my developer token. That token was only approved to read access with no mutate operations requested. Now I'm working on another app that suggests using mutate operations. I'd like to know if I can use an existing token for mutate on test

PercentageMobileFriendlyClicks value in LANDING_PAGE_REPORT

2019-03-05 Thread Дмитро Булах
Hi there, I'm using `PercentageMobileFriendlyClicks` field in LANDING_PAGE_REPORT (python library) in response rows this is represented as '96.63%' Is there any possibility to get plain double value like 0.9663xx instead of percentage format? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: CRM based UserList update

2018-01-03 Thread Дмитро Булах
t; example shows how to add a user list and upload members to populate the > list. Example code in other languages is available here > <https://developers.google.com/adwords/api/docs/clientlibraries>. Let me > know if you have any other questions. > > Thanks, > Bharan

CRM based UserList update

2017-12-28 Thread Дмитро Булах
Hello I'm trying to replace all records in my CRM based user list with given list of hashed emails. Here are the steps I'm following: 1. Get the list based on its ID 2. Call `mutate` with operator `SET` for retrieved list 3. Call `mutateMembers` with operator `ADD` and my list of hashed emails.