@makehq/sdk
    Preparing search index...

    Type Alias ScenarioNote

    Represents a note attached to a scenario in Make.

    Notes are scenario-scoped annotations. A note can float freely on the canvas or be anchored to one or more modules via ScenarioNote.moduleIds. Notes are always addressed through their parent scenario; there is no team- or organization-wide notes collection.

    type ScenarioNote = {
        content: string;
        created: string;
        createdByUser: ScenarioNoteUser;
        id: string;
        isFilterNote: boolean;
        metadata: ScenarioNoteMetadata;
        moduleIds: number[];
        scenarioId: number;
        updated: string | null;
        updatedByUser: Partial<ScenarioNoteUser>;
    }
    Index

    Properties

    content: string

    Content of the note as HTML, sanitized server-side. See ScenarioNotes on the content format

    created: string

    Timestamp when the note was created

    createdByUser: ScenarioNoteUser

    Profile of the user who created the note

    id: string

    Unique identifier of the note. A numeric string, because the API serializes this 64-bit ID as text

    isFilterNote: boolean

    Whether the note documents a filter rather than a module

    Presentation metadata of the note

    moduleIds: number[]

    IDs of the scenario modules the note is anchored to. Empty when the note is not anchored

    scenarioId: number

    ID of the scenario the note belongs to

    updated: string | null

    Timestamp when the note was last updated, or null when never updated

    updatedByUser: Partial<ScenarioNoteUser>

    Profile of the user who last updated the note. An empty object when never updated