Hi
I deal with it too.
Here you can see how to build Google Ads Query  
https://developers.google.com/google-ads/api/fields/v10/conversion_action_query_builder
For example :
SELECT conversion_action.id, conversion_action.name, 
conversion_action.type, conversion_action.status, 
conversion_action.resource_name, conversion_action.app_id FROM 
conversion_action WHERE conversion_action.name = 'ConversionName'
C#:
long customerId = 11111;
 GoogleAdsClient client = new GoogleAdsClient();
GoogleAdsServiceClient googleAdsService = 
client.GetService( Services.V10.GoogleAdsService);
 string query = "SELECT conversion_action.id, conversion_action.name, 
conversion_action.type, conversion_action.status, 
conversion_action.resource_name, conversion_action.app_id " +
                "   FROM conversion_action WHERE conversion_action.name = 
'OfflineSales'";

            SearchGoogleAdsRequest request = new SearchGoogleAdsRequest()
            {
                CustomerId = customerId.ToString(),
                Query = query
            };

  GoogleAdsRow googleAdsRow = googleAdsService.Search(request).First();


Examples how  to run
https://github.com/googleads/google-ads-dotnet/tree/3da251a018cf1dd446b8e5c711b32a18f12de247/examples

On Thursday, February 10, 2022 at 11:13:06 PM UTC-5 
[email protected] wrote:

>   I need your help.I am integrating Google Ads Api and by using this I 
> push offline conversion in Google Ads.But there is one parameter 
> ConversionAction and in that we need to pass ConversionActionId.can you 
> tell me what is ConversionActionId and from where I can find it?I couldn't 
> find it from Google Ads UI.Please help me. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a1f17a63-6ffb-4e03-99ce-e61aba76c7e1n%40googlegroups.com.
  • Re... Jana lebski
    • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum

Reply via email to