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?: string
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"]}
readonly fields Ui?: { ... }
Default: {} Type options: {"multipleValues":true}
readonly item Id?: string
ID of the item to operate on
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
readonly live?: boolean
Whether 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?: boolean
Whether to return all results or only up to a given limit
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"}
Default: "accessToken"