APIsChangelog
Log In

Get variable by 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)