Hi,
I'm not sure it's the best workaround for this, but I described how I solved the problem HERE.
In short, automation can add option when you update record with the new value. So I did dedicated automation for this, triggered by webhook.
re: Is it possible to run extensions remotely / trigger them to run automatically? How so if it is?
Not at this time I'm afraid
---
re: Can we get the ability to use `updateOptionsAsync` in an automation script? Is there yet another way to achieve what I am trying to do?
Kind of; we can create new options via a POST / PATCH call within an automation script to the same base. This exposes your API key to anyone who has access to the base though, and you also can't set the color of the option either
re: Is it possible to run extensions remotely / trigger them to run automatically? How so if it is?
Not at this time I'm afraid
---
re: Can we get the ability to use `updateOptionsAsync` in an automation script? Is there yet another way to achieve what I am trying to do?
Kind of; we can create new options via a POST / PATCH call within an automation script to the same base. This exposes your API key to anyone who has access to the base though, and you also can't set the color of the option either
Can you give me an example of how I would use a POST/PATCH within an automation script? I am the only one with access to my base and I do not need to set the color of my single select options.
Can you give me an example of how I would use a POST/PATCH within an automation script? I am the only one with access to my base and I do not need to set the color of my single select options.
Hmm this is the JSON I'd send:
{
"fields": {
"Status":"New option"
},
"typecast": true
}
And I'd use it in either a create records or update records request:
https://airtable.com/developers/web/api/create-records
https://airtable.com/developers/web/api/update-record
Sorry, I'm not too sure what you're asking!