ID
Example
{
"title": "Button Label",
"id": "buttonLabel",
"text": {
"default": "Buy Now"
}
}<a class="btn">{{buttonLabel}}</a>Last updated
Was this helpful?
The id is the unique key for a control. Use it to reference values in templates and in conditional logic (like visible and enabled). Keep it stable and unique within the component.
{
"title": "Button Label",
"id": "buttonLabel",
"text": {
"default": "Buy Now"
}
}Template usage:
<a class="btn">{{buttonLabel}}</a>Last updated
Was this helpful?
Was this helpful?

