Update: I am now able to update (but not read) the final_url, with the following lines (Python)
# Update fields *operation.update.final_urls = ["https://www.mysite.dk/12345"]* operation.update.dynamic_custom_asset.item_title = "Updated Title5" operation.update.dynamic_custom_asset.item_description = "Updated Description5" operation.update.dynamic_custom_asset.price = "12.99 USD" # Create the update mask operation.update_mask.CopyFrom( field_mask.FieldMask(paths=[ * "final_urls",* "dynamic_custom_asset.item_title", "dynamic_custom_asset.item_description", "dynamic_custom_asset.price" ]) ) On Saturday, October 18, 2025 at 1:30:36 AM UTC+2 Jesper Jørgensen wrote: > In the UI you can see the Final URL that has been uploaded: > [image: datafeed.jpg] > > How do I get the final url value with GAQL like > query = f""" > SELECT > asset.resource_name, > asset.dynamic_custom_asset.item_title, > asset.dynamic_custom_asset.item_description, > asset.dynamic_custom_asset.price > FROM asset > WHERE asset.dynamic_custom_asset.id = '11009' > """ > And how do you change the value through the API? > Had a look at this, that does not have a final url > > > https://developers.google.com/google-ads/api/reference/rpc/v22/DynamicCustomAsset > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 visit https://groups.google.com/d/msgid/adwords-api/741dbd66-a9cb-4407-8403-15fce7d65f44n%40googlegroups.com.
