This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
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 Automat...
is there a way when creating a record, to pass a string array of names or id's to a multiple select field?i.e. instead of createRecAsync fields: {'MyMultipleSelectField', [{name: string1}, {name: string2}, {name: string3}]}createRecAsync fields: {'My...
Hey @JonathanBowen do you have an example of that handy? Specifically, i’m looking how to execute a POST request from scripting blocks to create records in another base in batches…meaning: i first create an array of 10 records, then execute 1 post re...
Thanks @Alexey_Gusev!
If I copy your syntax it works but whenever I attempt to pass this:
{"0":{"fields":{"Creative_Name":"Audio Produced : PRE+POST – ",
"Class":{"name":"Audio"},"Type":{"name":"Produced"},
"Messaging":{"name":"PRE+POST"}}},
"1":{"f...