Hello,
I’m trying to use getColumnLinkId
.
According to this documentation, getColumnLinkId
expects a table name as its first argument.
However, when I try to pass it a table name, I get this error:
…/seatable-api/lib/base.js:459
var column = columns.find(function (column) {
TypeError: columns.find is not a function
… and when looking at base.js, I see, at line 458:
value: function getColumnLinkId(columns, column_name) {
var column = columns.find(function (column) {
return column.name === column_name;
});
So the first parameter seems to be a column list, not a table name.
What am I missing?