Jun 09, 2022 06:35 PM
for (let d in daylist) {
await currentTable.createRecordAsync({"Actual Date": daylist[d],
"Assignee": [{id: assigneeID}]})
};
Is there any reason why the above snippet works in Scripting Blocks and not in the Automation Script?
(assigneeID is a input.config record id from automation trigger)
Err message is:
Error: Field “flduSGLFu8QyJ6n9l” cannot accept the provided value at main on line 22
Jun 09, 2022 08:41 PM
Hi Matteo, that looks fine actually. Could I get the output of console.log(assigneeID)
by any chance please?
Jun 10, 2022 08:26 AM
lol, i knew it must’ve been something silly. Thank you @Adam_TheTimeSavingCo. it was indeed rendering as an object. Fixed.