Get campaigns data with campaign_budget and campaign_criterion

2021-01-16 Thread Antonio Cortina
Hi, I need to get a list of all campaigns and show campaign_budget and campaign_criterion (location) data from them but query is returning an error. This is the query: 'SELECT campaign.id, campaign.name, campaign.status, metrics.impressions, metrics.clicks, metrics.ctr, metrics.cost_micros,

How to associate extension to account on create extension

2021-01-12 Thread Antonio Cortina
Hi, I want to associate extensions to account like ads app does but I cant see how is it. In documentation exists an serving_resource_targeting field but it can only be setted to campaings or ad groups. https://developers.google.com/google-ads/api/reference/rpc/v6/ExtensionFeedItem How can I

Re: update ad with REST throws fieldMask error

2021-01-08 Thread Antonio Cortina
Hi, Thanks for your response. I cant reply privately to author, system says that I have not permission to reply author on this group El jueves, 7 de enero de 2021 a las 23:23:00 UTC+1, adsapiforumadvisor escribió: > Hi Antonio, > > Thank you for reaching out. Could you confirm that the ad y

Re: update ad with REST throws fieldMask error

2021-01-07 Thread Antonio Cortina
Hi, Thanks for your response, but i think that i cant do so much with this info: "GoogleAdsGoogleadsV6Services__AdOperation": { "id": "GoogleAdsGoogleadsV6Services__AdOperation", "properties": { "update": { "$ref": "GoogleAdsGoogleadsV6Resources__Ad", "description": "Update operation: The ad i

Re: update ad with REST throws fieldMask error

2021-01-05 Thread Antonio Cortina
Thanks for your response. Im not using Node.js client library, Im just using REST. The payload sended is something like this: {"operations":[{"updateMask":"final_urls, expanded_text_ad","update":{"resourceName":"customers/193635/ads/4897XXX","final_urls":["http://x.es/anuncio-ed"],"

update ad with REST throws fieldMask error

2021-01-04 Thread Antonio Cortina
Hi, Im using google ads api REST in an angular + node app. I can modify final_urls from google ads but not expanded_text_ad properties. I tried several paths and I cant achieve it. This is part of my code in node with the endpoint and payload object: const url = 'https://googleads.googleap

Update ad with REST, fieldMask error

2021-01-04 Thread Antonio Cortina
Hi, Im using google ads api REST in an angular + node app. I can modify final_urls from google ads but not expanded_text_ad properties. I tried several paths and I cant achieve it. This is part of my code in node with the endpoint and payload object: const url = 'https://googleads.googleap

Re: Mutate keywords with Rest on google ads api

2020-12-29 Thread Antonio Cortina
, so I can create and remove keywords but not modify them from API, is it right? In Google Ads console I can modify them but I think that really it remove the old one and creates new one. Can you confirm this? Thanks El martes, 29 de diciembre de 2020 a las 18:35:50 UTC+1, Antonio Cortina

Re: Mutate keywords with Rest on google ads api

2020-12-29 Thread Antonio Cortina
Hi, Thanks for your response. Im using javascript/node and I cant see any client library. In any case, im interested in use REST and not client because im using several google apis in the same way. Can you help me about modify keywords with REST? Thanks El martes, 29 de diciembre de 2020 a l

Mutate keywords with Rest on google ads api

2020-12-28 Thread Antonio Cortina
Hi, Im new using google ads api with REST and im triying to mutate added keywords from ads console. I can modify status because its in the same object of adGroupCriterion but keyword data its on an object keyword, keyword['text'] and keyword['matchType']. How can i modify them? This is my co