Copy content from one page into an other
This script will copy the content of a pageĀ into another page.
number source = getPage("CTR", "Copy a page"); //page to copy number newParent = getPage("CTR", "New copy a page"); //destination for the copied page content //sample syntax - copyPageContent(sourcePageId, targetPageId); return copyPageContent(source, newParent);
See Other Recipes
See More Documentation