Secrets object
Reference write-only shop secrets from Liquid without exposing raw values.
{{ secrets.api_token }}{% action "http" %}
{
"method": "post",
"url": "https://api.example.com/orders",
"headers": {
"Authorization": {{ "Bearer " | append: secrets.api_token | json }}
}
}
{% endaction %}{{ options.api_token__secret_required }}Last updated
Was this helpful?