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

    Interface ContentBlueprintDraft

    interface ContentBlueprintDraft {
        ancestors?: { id: string }[];
        space?: { key: string };
        status?: string;
        title: string;
        type: string;
        version: { number: number };
    }

    Hierarchy (View Summary)

    Index

    Properties

    ancestors?: { id: string }[]

    The new ancestor (i.e. parent page) for the content. If you have specified an ancestor, you must also specify a space property in the request body for the space that the ancestor is in.

    Note, if you specify more than one ancestor, the last ID in the array will be selected as the parent page for the content.

    Type declaration

    • id: string

      The content ID of the ancestor.

    space?: { key: string }

    The space for the content.

    Type declaration

    • key: string

      The key of the space

    status?: string

    The status of the content. Set this to current or omit it altogether.

    title: string

    The title of the content. If you don't want to change the title, set this to the current title of the draft.

    type: string

    The type of content. Set this to page.

    version: { number: number }

    The version for the new content.

    Type declaration

    • number: number

      The version number. Set this to 1.