Designer API
Control the Webflow Designer
variable.remove()
Delete and remove variable from collection.
1variable.remove(): Promise<boolean>
Promise<boolean>
boolean
A Promise that resolves to a boolean value
1// Get Collection2const collection = await webflow.getDefaultVariableCollection()34// Get All Variables5const variables = await collection.getAllVaraiables67// Remove first variable8const variable = variables[0]9await variable.remove()
Try this example