getPages
Syntax | getPages(parentId) | Package | |
Alias | Pkg Usage |
Description
Returns all descendants of a page (all levels, not only direct children) or a set of pages matching space key and title.
Parameters
Parameter name | Type | Required | Description |
|---|---|---|---|
parent ID | Number | Yes | ID of the selected page for which to retrieve all child pages. |
Return Type
Number []
Example
number [] allChildren = getPages(11801);
for(number childPage in allChildren) {
%childPage%.labels += "newLabel";
}