Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Version published after converting to the new editor

Syntax

createBlog(spaceKey, blogTitle, blogContent)

...

The blogID of the newly created blog.

Example

Code Block
string spaceKey = "PSCONF";
string blogTitle = "New BlogPost";
string blogContent = "<p>This blog was created by Power Scripts!<p>";

number newBlog = createBlog(spaceKey, blogTitle, blogContent);

...