I’m creating records via API and everything works well EXCEPT for creating single select options.
I’m passing strings in an array and only pass options, which already exist. Still I get this error back:
Does anyone know why?
When I block run, I get an error when trying to open the app in Airtable: Can‘t connect to your local app, did you block run ?
It works in Safari and I suspect it’s a CORS issue. Does anyone else have the same?
I have an issue with automatically creating records. I want to create a record in a separate table for each linked record in a given table. The automation fails when I add two or more linked records shortly after each other. Please check out this Loo...
I’m looping over some records and want to increment ‘i’ ONLY if both conditions below are met:
let i = 0;
for (let record of taskRecords.records) {
if(id.includes(record.getCellValue('ID Lookup')) && record.getCellValue('Stage').includes(stage)) ...
Hi! Access tokens are valid for 60 minutes, so no need to check every 10 minutes. I'm strictly comparing my stored access token to those 60 minutes and will refresh the token if currentTime > 60 minutes since the token has been issued.W.r.t. refresh ...
Hi @Jeroen_Sarink, I'm happy to write a first version if you share the base with me (or a sample / duplicate base following the same logic).Best,Rupert
Thanks Just posting the script here for reference if anyone else should want to use it.../*
load input in scripting automation via input.config()(input defined on the left side)
let's just grab the record id here to reference the record that got c...
Sure, no problem!So we would need a script automation for this (requires a pro plan). The trigger for the automation is a new form entry (every time a customer added something to the form).The scripting automation could work like this (writing this i...