@archastro/sdk
    Preparing search index...

    Interface RunJournalPage

    A forward-paginated journal entry page for an automation or routine run.

    interface RunJournalPage {
        after_cursor?: string;
        before_cursor?: string;
        data: WorkflowJournalEntry[];
        has_more: boolean;
        journal?: WorkflowJournal;
    }
    Index

    Properties

    after_cursor?: string

    Opaque cursor for the next entry page. null when this is the final page.

    before_cursor?: string

    Always null; journal pagination is forward-only.

    Journal entries ordered by ascending sequence. Empty when the run has no journal.

    has_more: boolean

    Whether additional entries exist after this page.

    journal?: WorkflowJournal

    Durable execution summary. null when this run has no journal, which is valid for script-backed, preview, or legacy runs.