I have a code that give me suggestion of keywords from google ads api.

in this code I have a section that select language with language id but in new version of Google Ads API (V13) it's deprecated and removed.

language_rn = client.get_service(         "LanguageConstantService"     ).language_constant_path(language_id) 

What is the alternative of LanguageConstantService Now? How can I set Language in my request?

I find my code from link below: https://www.danielherediamejias.com/python-keyword-planner-google-ads-api/


The Error is:

ValueError: Specified service LanguageConstantService does not exist in Google Ads API v13.

I am using Whatsapp's Business API through Meta's Graph API. One of my end user claimed he didn't receive a business-initiated message however on my end I received (through webhooks) both sent and delivered confirmation.

I then gave him the chatbot's number and when he tried to send a text, he was prompted to accept Whatsapp's Chatbot Privacy Policy (or something like that).

So are we not able to start business-initiated conversations to users that never had prior interaction with a chatbot?

Hey There Developers I am Trying to Integrate What's App Cloud Api from Meta for Developers Console and I am trying to Retrieve The Messages Templates using the api's .Reading it from there documentation i had created the api to retrive the templates but it shows me this error

"error": {         "message": "(#100) Tried accessing nonexisting field (message_templates) on node type (WhatsAppBusinessPhoneNumber)",         "type": "OAuthException",         "code": 100,         "fbtrace_id": "AHUox6aJYuhq3S7NnNDSE03"     } 

It would be a great help if you can help me solve this problem I have been Researching on the same for over a week now .....Thank You in advance

I am looking this api to retrieve all my available templates on the developers console
Meta For Developers

Query Gclids for an specific ConversionName and period

Through Google ads API, Is it possible to query those fields below? I need the list of Gclids, when the conversion happened, conversion value, for only this conversion name “reg” and the period would be: Last 7 days.

GCLID ConversionName Conversion Time ConversionValue EAIaIxxxxxx reg 2024-02-12T11:22:23 1 CjwKCxxxxxx reg 2024-04-13T18:57:03 3

We are testing on the Query Builder, but when using the Conversion_Action table, we can’t see all the fields Could you please help us to build the query?

SELECT GClid(?), conversion_action.name, ConversionTime(?), ConversionValue(?) FROM conversion_action WHERE conversion_action.name = 'reg' and date_time(?)=Last_7_Days

We are not finding those fields: GClid(?), ConversionTime(?),ConversionValue(?),date_time(?) Many Thanks