I'm trying to create a new ad customizer feed using the Python2.7 and API version 'v201809'
The mutate function doesn't seem to work and is giving the following error:
GoogleAdsServerFault: [OperationAccessDenied.ACTION_NOT_PERMITTED @ class com.google.ads.api.serviceimpls.campaignmgmt.feed.adcustomizer.MutateActio]
adc_service = adwords_client.GetService('AdCustomizerFeedService', version='v201809')
Code Snippet:
feed_operator = {
'feedName': 'Name',
'feedAttributes': [
{'type': 'STRING', 'name': 'Name1'},
{'type': 'STRING', 'name': 'Name2'}
]
}
feed_creator_operation = {'operator': 'ADD',
'operand': feed_operator}
feed_call_response = adc_service.mutate(feed_creator_operation)
The get call is working perfectly though as I'm able to read all the feeds in the account.
What's the issue here? Is it a problem with the authentication?