The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I am trying to create an automation that is triggered when a record within a table created or updated? Is it possible to cover both creates and updates with a single trigger?
Trying to update additional fields of an updated record accordingly.
Getting “undefined” value for recordId. What would be the problem?
let recordId = input.config().recordId;
console.log(recordId);
let rootTable = base.getTable('uretim-kaydi');
let...
It is a script as an action within an automation. I don’t see an option to create an input config variable.
Also, when I tried this, I get the error below:
let config = input.config();
let {recordId} = config.recordId;
console.log(recordId);
ERRO...