RE: How to map Adwords ConversionTracker fields to Google API ConversionActions

2022-01-16 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Rachel,

Thank you for reaching out.

You are correct that the ConversionTrackerService should map to the 
ConversionActionService of the new Google Ads API. You may also refer here, for 
more information on how to map AdWords API to Google Ads API services.

However, the OriginalConversionTypeId attribute does not appear to be supported 
in the Google Ads API's ConversionAction resource. That being said, if this 
attribute is currently supported in the Google Ads UI, you may provide our team 
with the UI screenshots containing the said attribute so our team can then 
create a feature request, subject for review, for its support. You may then 
provide your complete use case so we can include those in the request.

Should the screenshot contain your user / account information, you may then 
send the requested information via the Reply privately to author option. If 
this option is not available, you may send the details directly to our 
googleadsapi-supp...@google.com alias instead.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2Uk5uz:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/WEOj70R5U37100vx-9ICJoRx2NxjSHz5xmPg%40sfdc.net.


Re: How to map Adwords ConversionTracker fields to Google API ConversionActions

2022-01-14 Thread Rachel Suddeth
The one that concerns me most is "OriginalConversionTypeId". I think we 
were actually using that, but I couldn't see an equivalent?

Otherwise, my best guess is
---
conversion_action.id,
conversion_action.type,
conversion_action.name,
conversion_action.status,
conversion_action.category,
conversion_action.tag_snippets,
customer.remarketing_setting.google_global_site_tag,
conversion_action.attribution_model_settings.data_driven_model_status,
conversion_action.owner_customer,
conversion_action.view_through_lookback_window_days,
conversion_action.click_through_lookback_window_days,
conversion_action.counting_type,
conversion_action.value_settings.default_value,
conversion_action.value_settings.default_currency_code,
conversion_action.value_settings.always_use_default_value,
conversion_action.primary_for_goal,
conversion_action.attribution_model_settings.attribution_model,
metrics.conversion_last_conversion_date,
metrics.conversion_last_received_request_date_time
---


On Friday, January 14, 2022 at 8:36:41 AM UTC-6 Rachel Suddeth wrote:

> I currently have code that uses ConversionTrackerService to retrieve (all 
> the?) fields, and it's not clear to me how I can get the same information 
> from the new ConversionActionService. I understand the new way is to query 
> the GoogleAdsService, but mapping from old fields to new query fields is 
> unclear in many cases. Current code from Adwords (python SDK) uses a 
> selector with fields of 
> ---
> 'Id',
> 'OriginalConversionTypeId',
> 'Name',
> 'Status',
> 'Category',
> 'GoogleEventSnippet',
> 'GoogleGlobalSiteTag',
> 'DataDrivenModelStatus',
> 'ConversionTypeOwnerCustomerId',
> 'ViewthroughLookbackWindow',
> 'CtcLookbackWindow',
> 'CountingType',
> 'DefaultRevenueValue',
> 'DefaultRevenueCurrencyCode',
> 'AlwaysUseDefaultRevenueValue',
> 'ExcludeFromBidding',
> 'AttributionModelType',
> 'MostRecentConversionDate',
> 'LastReceivedRequestTime'
> ---
> Is there anywhere I can find mapping from these fields to new Google Ads 
> object, or know for sure if there's no equivalent?
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b4d8e8b0-1d36-4efb-8912-307b24bd6662n%40googlegroups.com.


How to map Adwords ConversionTracker fields to Google API ConversionActions

2022-01-14 Thread Rachel Suddeth
I currently have code that uses ConversionTrackerService to retrieve (all 
the?) fields, and it's not clear to me how I can get the same information 
from the new ConversionActionService. I understand the new way is to query 
the GoogleAdsService, but mapping from old fields to new query fields is 
unclear in many cases. Current code from Adwords (python SDK) uses a 
selector with fields of 
---
'Id',
'OriginalConversionTypeId',
'Name',
'Status',
'Category',
'GoogleEventSnippet',
'GoogleGlobalSiteTag',
'DataDrivenModelStatus',
'ConversionTypeOwnerCustomerId',
'ViewthroughLookbackWindow',
'CtcLookbackWindow',
'CountingType',
'DefaultRevenueValue',
'DefaultRevenueCurrencyCode',
'AlwaysUseDefaultRevenueValue',
'ExcludeFromBidding',
'AttributionModelType',
'MostRecentConversionDate',
'LastReceivedRequestTime'
---
Is there anywhere I can find mapping from these fields to new Google Ads 
object, or know for sure if there's no equivalent?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6d230b3e-cdda-4316-a5c1-ba7519e322e5n%40googlegroups.com.