interface NotionTriggerNodeParameters {
authentication?: "apiKey" | "oAuth2";
databaseId?: {
mode: "id" | "list" | "url";
value: string;
};
dataSourceId?: { mode: "id"
| "list"; value: string };
event?:
| "pageAddedToDatabase"
| "pagedUpdatedInDatabase";
pollTimes: {
item: { mode: string & {}
| "everyMinute" }[];
};
simple?: boolean;
}
Properties§
§
§
§
§
§
readonly authentication?: "apiKey" | "oAuth2"
readonly database Id?: { ... }
The Notion Database to operate on Default: {"mode":"list","value":""}
readonly data Source Id?: { ... }
The Notion Data Source to operate on Default: {"mode":"list","value":""}
readonly event?: "pageAddedToDatabase" | "pagedUpdatedInDatabase"
Default: "pageAddedToDatabase"
readonly poll Times: { ... }
§readonly simple?: boolean
Whether to return a simplified version of the response instead of the raw data Default: true
Default: "apiKey"