Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

getBlog(spaceKey, title, postingDate)

...

Parameter name

Type

Required

Description

spaceKey

stringyes

Key of space to search in.

blogTitlestringyesTitle of the blog to search for.
postingDatestringyes

Posting date of the blog to search for. Format: "yyyy-MM-dd".

Return type

number

Examples

Example 1

Code Block
number blog = getBlog("PSCONF", "Some Blog", "2010-01-20");

print("Return " + blog);

...