interface WebflowV1NodeParameters {
authentication?: "oAuth2" | "accessToken";
collectionId?: string;
fieldsUi?: {
fieldValues: {
fieldId?: string;
fieldValue?: string;
}[];
};
itemId?: string;
limit?: number;
live?: boolean;
operation?: | "create"
| "get"
| "getAll"
| "update"
| "delete";
resource?: "item";
returnAll?: boolean;
siteId?: string;
}Properties§
§§§§§§§§§
readonly authentication?: "oAuth2" | "accessToken"§
readonly collection Id?: stringID of the collection to add an item to. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getCollections","loadOptionsDependsOn":["siteId"]}
readonly fields Ui?: { ... }Default: {} Type options: {"multipleValues":true}
readonly item Id?: stringID of the item to operate on
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
readonly live?: booleanWhether the item should be published on the live site
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"Default: "get"
readonly resource?: "item"Default: "item"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly site Id?: stringID of the site containing the collection whose items to add to. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSites"}
Default: "accessToken"