How I can access budgets, created throw AdWords API methods in Google Ads API calls? If budget created in Google Ads API, it can be selected by
resource_name = 'customers/4380668749/campaignBudgets/6595135879' ga_service = client.get_service('GoogleAdsService', version='v2') query = ('SELECT campaign_budget.id, campaign_budget.name, ' 'campaign_budget.resource_name FROM campaign_budget WHERE ' 'campaign_budget.resource_name = "{}"'.format(resource_name)) But for budgets created in Adwords API v201809 it can not be selected. Query result is empty. Direct API call also fails with error "Resource not found". resource_name = 'customers/4380668749/campaignBudgets/6595135879' campaign_service = client.get_service('CampaignBudgetService', version='v2') budget = campaign_service.get_campaign_budget(resource_name) Response: Request made: ClientCustomerId: None, Host: googleads.googleapis.com:443, Method: /google.ads.googleads.v2.services.CampaignBudgetService/GetCampaignBudget, RequestId: Q9BEd1fnj8P_0Z4A6j8KDA, IsFault: True, FaultMessage: Resource not found. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 "AdWords API and Google Ads 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/df5fcde5-fc13-4693-a208-a258b446632f%40googlegroups.com.