Since the update of v24 of the google ads api (2026-04-22) I've encountered a strange error I have not seen before.
It looks like the api call fails without any error. Metadata and message are empty (could be the parsing inside the sdk).
Logs:
[Google Ads] generateKeywordHistoricalMetrics failed {
customerId: 'xxxxxxxxxx',
keywordCount: 1,
message: 'Google Ads generateKeywordHistoricalMetrics failed: undefined undefined: undefined',
failure: null
}
I don't know if it has anything to do with the new update, but everything worked fine.
If more details are needed I'm happy to provide.
Edit:
I have a healthcheck function which checks if I can access the customer query which works fine:
const { customer } = getGoogleAdsCustomer();
await customer.query(`
SELECT customer.id
FROM customer
LIMIT 1
`);
Since the update of v24 of the google ads api (2026-04-22) I've encountered a strange error I have not seen before.
It looks like the api call fails without any error. Metadata and message are empty (could be the parsing inside the sdk).
Logs:
I don't know if it has anything to do with the new update, but everything worked fine.
If more details are needed I'm happy to provide.
Edit:
I have a healthcheck function which checks if I can access the customer query which works fine: