What's the least expensive way to create the entire Campaign hierarchy, from the Campaign down to the Ads/Keywords, using the AdWords API?
I have a tool for creating/organizing Campaigns, AdGroups, and Ads/Keywords. I'm sending this data to Google via the AdWords API.
Is there a way to do all of this in one single MutateJobService?
From all my research it seems the only way to do this is by
- Creating the Campaigns job.
- waiting for it to finish, extracting all Campaign ids and matching them to the AdGroups.
- Creating an AdGroups job.
- waiting for it to finish, extracting all AdGroup ids and matching them to the ads/keywords.
- Creating an Ads/Keywords job.
Is there a simple way that I'm somehow missing?