google-ads-api icon indicating copy to clipboard operation
google-ads-api copied to clipboard

Google Ads API client library for Node.js

Results 51 google-ads-api issues
Sort by recently updated
recently updated
newest added

Getting the error in case of creating billing setup and customer client links both.

question ❔

Hi, I'm trying to delete a campaign and I'm getting an error: ```js await customer.mutateResources([ { entity: 'campaign', operation: 'remove', resource_name: resource_name, }, ]); ``` ```js { "error_code": { "request_error":...

### I'm submitting a ... - [ ] bug report - [ ] feature request - [ ] question about the decisions made in the repository - [x] question about...

feature request :bulb:

There is no way to fetch in a report `url_custom_parameters` field of SiteFeedItem but it is [documented](https://developers.google.com/google-ads/api/reference/rpc/v8/SitelinkFeedItem) ```js const extensionItems = await client.report({ entity: 'extension_feed_item', attributes: [ 'extension_feed_item.extension_type', 'extension_feed_item.status', 'extension_feed_item.device',...

google ads issue ❕

Hi guys, Trying to migrate to v5 i found this strange behavior: ```typescript const myAd: MutateOperation = { entity: 'ad', ... } ``` This kind of declaration give me an...

question ❔
google ads issue ❕

Hi. I understand that the library is based on [google-ads-node](https://github.com/Opteo/google-ads-node) which contains all generated code from protobufs. But in the end the library supports only one API version which can...

question ❔

``` code: 16, details: 'Failed to retrieve auth metadata with error: invalid_grant', metadata: Metadata { internalRepr: Map(0) {}, options: {} }, note: 'Exception occurred in retry method that was not...

Hello. v15 has been released on the 18th of Oct - https://developers.google.com/google-ads/api/docs/release-notes#v15 Please upgrade the proxy protobufs for v15.

**The below query returns all the campaigns perfectly fine.** ```sql SELECT campaign.id, campaign.name, campaign.status, campaign.bidding_strategy_type, campaign.advertising_channel_type, campaign.start_date, campaign.end_date, campaign_budget.amount_micros, metrics.cost_micros, metrics.clicks, metrics.impressions, metrics.conversions FROM campaign WHERE segments.date DURING TODAY ```...

In any place i have found what does the "1234567890" and "111222333" means in the conversion_action: "customers/1234567890/conversionActions/111222333" on the doc, how can i send this variable to google if i...