Skip to end of banner
Go to start of banner

createPage

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

Description

Creates an issue based on the provided arguments.

Parameters

Return Type

number

The page ID of the newly created page.

Examples

Example 1

string spaceKey = "PSCONF";
number parentPageId = 11801;
string pageTitle = "New Page";
string pageContent = "<p>This page was created by Power Scripts!<p>";
number newPage = createPage(spaceKey, parentPageId, pageTitle, pageContent);
%newPage%.labels += "new";

Example 2

number homePage = getPage("PSCONF", "Power Scripts for Confluence Home");
number newPage = createPage(%homePage%.space, %homePage%.id, "New Page", %homePage%.content);
%newPage%.labels += "new";

See also

  • No labels