Hi Team,
I’m working on automating the creation of in-app purchase conversion actions using the Google Ads API.
While creating a conversion in the UI, I see options for:
Post-install conversion window
Engaged-view conversion window
But I don’t see any related fields for these in the API reference:
👉 ConversionAction
I also checked the available fields in the API and confirmed that options like engaged_view_lookback_window_days or anything for post-install are not present.
Could you please confirm:
Are these two windows configurable via the API?
If yes, what are their field names?
If not, are they managed automatically by Google or set only through the UI?
I’ve attached a screenshot from the UI for reference.
Thanks
![]() |
Google Ads API Team |
[2025-04-10 09:50:11Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01pSRbq:ref" (ADR-00299394)
Thank you for your helpful assistance.
I have one more question regarding the App campaign subtype — specifically the App engagement option. When selecting this subtype and choosing an app in the UI, I receive the following message:
“For this campaign to work, you need to know when users take conversion actions in your app.”
Could you please clarify:
Is there an API available that allows us to check this validation programmatically?
Is it possible to verify whether conversion actions exist for a specific app using its app_id, or is there another recommended method or API endpoint to use for this validation?
I appreciate your guidance on this.
>>Is there an API available that allows us to check this validation programmatically?
There is no end point for such validation checks of the error you're observing in Google Ads UI.
>>Is it possible to verify whether conversion actions exist for a specific app using its app_id, or is there another recommended method or API endpoint to use for this validation?
SELECT conversion_action.app_id, conversion_action.id, conversion_action.name, conversion_action.resource_name FROM conversion_action WHERE conversion_action.id = 'xxxxxxxxxx'You can try making a request using the Search or SearchStream by passing the customer Id. Also, you can use QueryBuilder to create your query and QueryValidator to validate your query.
![]() |
Google Ads API Team |
[2025-04-10 12:05:05Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01pSRbq:ref" (ADR-00299394)