There is a way to create Ad extensions, for example callout, without assign to a campaign or ad group?
For example, I want to create 3 ad extensions but no assign to a campaign or ad group. Then I want to retrieve the ad extension and assign to a campaign, like the AdWords site, they create callout individually and then assign it to a campaign.
Example:
createCallout(args)
createCallout(args)
createCallout(args)
retrieveCallout(id)
create calloutCampaign():
callout = retrieveCallout(id)
callout2 = retrieveCallout(id)
feed_service = self.client.GetService(
'AdGroupExtensionSettingService'
)
operation = [{
'operator': 'ADD',
'operand': {
'adGroupId': ad_group_id,
'extensionType': 'CALLOUT',
'extensionSetting': {
'extensions': [callout, callout2]
}
}
}]
There is a way to do this with python?