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

    Interface GetContentProperties

    interface GetContentProperties {
        expand?: string[];
        id: string;
        key?: string[];
        limit?: number;
        start?: number;
    }
    Index

    Properties

    expand?: string[]

    A multi-value parameter indicating which properties of the content to expand. By default, the version object is expanded.

    • content returns the content that the property is stored against.
    • version returns information about the version of the property, such as the version number, when it was created, etc.
    id: string

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

    key?: string[]

    The key of the content property.

    limit?: number

    The maximum number of properties to return per page. Note, this may be restricted by fixed system limits.

    start?: number

    The starting index of the returned properties.