Interface NotionTriggerNodeParameters

Source
interface NotionTriggerNodeParameters {
    authentication?: "apiKey" | "oAuth2";
    databaseId?: {
        mode: "id" | "list" | "url";
        value: string;
    };
    event?: | "pageAddedToDatabase"
    | "pagedUpdatedInDatabase";
    pollTimes: {
        item: { mode: string & {}
        | "everyMinute" }[];
    };
    simple?: boolean;
}

Properties§

§readonly authentication?: "apiKey" | "oAuth2"

Default: "apiKey"

§readonly databaseId?: { ... }

The Notion Database to operate on Default: {"mode":"list","value":""}

§readonly event?: "pageAddedToDatabase" | "pagedUpdatedInDatabase"

Default: "pageAddedToDatabase"

§readonly pollTimes: { ... }
§readonly simple?: boolean

Whether to return a simplified version of the response instead of the raw data Default: true