Avidan Menashe
unread,Jan 27, 2025, 10:27:36 AMJan 27Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Ads API and AdWords API Forum
Hi ,
I have a data feed that on the ui of google ads i can filter it by the status of the element , possible statuses are Eligible and Eligible (Limited).
but , when i do a query to the api to the asses_set of type PAGE_FEED that contain both element with the status Eligible or Eligible (Limited) i get the same values for the fields
asset.policy_summary.review_status and asset.policy_summary.approval_status.
this is the query that i use:
SELECT asset_set_asset.asset, asset.resource_name, asset.policy_summary.approval_status , asset.policy_summary.review_status
FROM asset_set_asset
WHERE asset_set_asset.asset_set = '{asset_set_resource_name}' AND asset_set_asset.status != 'REMOVED' AND asset.policy_summary.approval_status = '{status}'
this is the values that i get for both element on status Eligible and Eligible (Limited) :
policy_summary {
review_status: REVIEWED
approval_status: APPROVED
My question is based on which field on the google ads api i can to differ between the element on the asses_set that seems that on the ui have a different value on status [Eligible and Eligible (Limited) ] but the result on the api says different.
Thanks in advance !