tableId
To return the ID of a table
With this function, you'll find out the internal identifier of the current table. This ID consists of at least 1 capital letter. It starts with A.
You can use the table ID as an identifier in API calls.
tableId(nid)
tableId(string)
string
tableId(record)
To return the ID of a table by a given record.1
tableId(this)
Result: A
(if this is the table ID of the current table)
tableId(tableName)
To return the ID of a given table.1
tableId("Invoices")
Result: B
(if this is the table ID of the Invoices table)
Last modified 1yr ago