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

    Interface CopyPageRequest

    interface CopyPageRequest {
        body?: { editor2?: ContentBodyCreate; storage?: ContentBodyCreate };
        copyAttachments?: boolean;
        copyCustomContents?: boolean;
        copyLabels?: boolean;
        copyPermissions?: boolean;
        copyProperties?: boolean;
        destination: CopyPageRequestDestination;
        pageTitle?: string;
    }
    Index

    Properties

    body?: { editor2?: ContentBodyCreate; storage?: ContentBodyCreate }

    If defined, this will replace the body of the destination page.

    copyAttachments?: boolean

    If set to true, attachments are copied to the destination page.

    copyCustomContents?: boolean

    If set to true, custom contents are copied to the destination page.

    copyLabels?: boolean

    If set to true, labels are copied to the destination page.

    copyPermissions?: boolean

    If set to true, page permissions are copied to the destination page.

    copyProperties?: boolean

    If set to true, content properties are copied to the destination page.

    pageTitle?: string

    If defined, this will replace the title of the destination page.