interface WebflowV2NodeParameters {
collectionId?: string;
fieldsUi?: {
fieldValues: {
fieldId?: string;
fieldValue?: string;
}[];
};
itemId?: string;
limit?: number;
live?: boolean;
operation?: | "create"
| "get"
| "getAll"
| "update"
| "deleteItem";
resource?: "item";
returnAll?: boolean;
siteId?: string;
}
Properties§
Source§readonly fields Ui?: { fieldValues: { fieldId?: string; fieldValue?: string }[] }
readonly fields Ui?: { fieldValues: { fieldId?: string; fieldValue?: string }[] }
Default: {} Type options: {"multipleValues":true}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
Source§readonly site Id?: string
readonly site Id?: string
ID 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"}
ID 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"]}