Creating Plot Twists
    Preparing search index...

    Type Alias NewLinkWithNotes

    NewLinkWithNotes: NewLink & {
        title?: string;
        notes?: Omit<NewNote, "thread">[];
        schedules?: Omit<NewSchedule, "threadId">[];
        scheduleOccurrences?: NewScheduleOccurrence[];
    }

    A new link with notes to save via integrations.saveLink(). Creates a thread+link pair, with notes attached to the thread.

    Type Declaration

    • Optionaltitle?: string

      Title for the link and its thread container. Must be the real entity title (e.g. issue title, message subject), never a placeholder or ID. This value overwrites the existing title on upsert. Omit to preserve the existing title (e.g. for cancelled events where the title may not be available in the webhook payload).

    • Optionalnotes?: Omit<NewNote, "thread">[]

      Notes to attach to the thread

    • Optionalschedules?: Omit<NewSchedule, "threadId">[]

      Schedules to create for the link

    • OptionalscheduleOccurrences?: NewScheduleOccurrence[]

      Schedule occurrence overrides