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.

Syntax

tableId(nid)

tableId(string)

Return

string

Examples

tableId(record) To return the ID of a table by a given record.

tableId(this)

Result: A

(if this is the table ID of the current table)

tableId(tableName) To return the ID of a given table.

tableId("Invoices")

Result: B

(if this is the table ID of the Invoices table)

See also

databaseId, which returns the ID of the current database.

Last updated