Hi, The first answer provided by Sreelakshmi in the forum thread you linked is still valid. Since there is still no direct feature that would clone an entity (e.g. campaigns, ad groups, etc.), then you need to follow the steps below (for copying a campaign and its dependencies) :
- Use CampaignService.get() <https://developers.google.com/adwords/api/docs/reference/v201710/CampaignService#get> method to get the specific campaign with fields that you want to copy from. - Using the returned object in the first step, make necessary changes like changing the campaign name and then use that object as parameter in CampaignService.mutate() <https://developers.google.com/adwords/api/docs/reference/v201710/CampaignService#mutate> . - Since the step 2 only creates a new campaign, and not its dependencies like ad groups and criterion, then you need to use the service of each entity (e.g. AdGroupService <https://developers.google.com/adwords/api/docs/reference/v201710/AdGroupService> , AdGroupCriterionService <https://developers.google.com/adwords/api/docs/reference/v201710/AdGroupCriterionService>, etc.) to copy these entities and repeat steps 1 and 2 for each service. As for your concern if we have a full list of objects/entities that you need to copy from a campaign, we only have a guide <https://developers.google.com/adwords/api/docs/guides/objects-methods#object_hierarchy_and_scope> for the object hierarchies that you can refer from. As additional information, you can also check the Campaign Drafts and Experiments guide <https://developers.google.com/adwords/api/docs/guides/campaign-drafts-experiments> if you wish to create draft and trial campaigns. Let me know if you have further clarifications. Thanks, Vincent AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords 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 "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/c652f3a7-20c9-47fe-9777-02f5504976a6%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
