collection.getVariable(id)
collection.getVariable(id)
Retrieve a variable by its ID.
Syntax
collection.getVariable(id: VariableId): Promise<null | Variable>
Parameters
- ID : string - ID of the variable you'd like to retrieve
Returns
Promise<Variable | null
>
A promise that resolves to a Variable object, or null
if not found
Example
// Get Collection
const collection = await webflow.getDefaultVariableCollection()
// Get variable by ID
const variableById = await collection?.getVariable('id-123')
console.log(variableById)
Designer Ability
Checks for Authorization only
Designer Ability | Locale | Branch | Workflow | Sitemode |
---|---|---|---|---|
canReadVariables | Any | Any | Any | Any |