I need to fetch the Hubdb Column Name, how to fetch it
Hi @Raghavendra,
if you’re working with a custom module you can get the name like this:
{% for row in hubdb_table_rows( module.hubdbtable_field ) %}
{{row.name}}
{% endfor %}
If you want to have the same HubDB in every instance of the module you can replace it with the HubDB table ID which can be found in the URL if you’re editing the HubDB. The URL looks something like this:
https://app.hubspot.com/hubdb/HUBID/table/HUBDB-TABLE-ID
best,
Anton
