createBlog
Description
Creates a blog based on the provided arguments.
Return Type
number
The blogID of the newly created blog.
Example
string spaceKey = "PSCONF";
string blogTitle = "New BlogPost";
string blogContent = "<p>This blog was created by Power Scripts!<p>";
number newBlog = createBlog(spaceKey, blogTitle, blogContent);
See also
Peacock