Confluence.js - Cloud and Server API library
    Preparing search index...

    Interface GetContentChildren

    interface GetContentChildren {
        expand?: OneOrMany<string>;
        id: string;
        limit?: number;
        parentVersion?: number;
        start?: number;
    }
    Index

    Properties

    expand?: OneOrMany<string>

    A multi-value parameter indicating which properties of the children to expand, where:

    • attachment returns all attachments for the content.
    • comments returns all comments for the content.
    • page returns all child pages of the content.
    • Custom content types that are provided by apps are also supported.
    id: string

    The ID of the content to be queried for its children.

    limit?: number

    The maximum number of content children to return per page.

    parentVersion?: number

    The version of the parent content to retrieve children for. Currently, this only works for the latest version.

    start?: number

    The starting index of the returned content children.