Hi, Thank you for reaching out to the Google Ads API support team.
Based on the information provided, I understand that you would like to pull Performance Max (Pmax) campaign cost data with the start date field for the campaigns in your account. You can retrieve Pmax campaign cost data by using the campaign resource and include the fields campaign.id, campaign.start_date, and metrics.cost_micros in your query. I would recommend referring to this document for more information about the Performance Max campaign report. You can try this sample query to pull the cost data for Pmax campaigns: SELECT campaign.id, metrics.cost_micros, campaign.start_date FROM campaign WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX' AND campaign.id = 1234567 Also, you can utilize GoogleAdsService.SearchStream or GoogleAdsService.Search to retrieve the objects. I would suggest you use the Query Builder to build your query and Query Validator to validate your query. This message is in relation to case "ref:!00D1U01174p.!5004Q02vF7vY:ref" (ADR-00263906) Thanks, Google Ads API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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/TNusG000000000000000000000000000000000000000000000SIHWRM00YSBVlmGVRXe1h5xIVJjHKw%40sfdc.net.
