Insufficient permissions to create new select option

With the default Airtable modules it is not possible (anymore) to add new selection options for Single select and Multi select fields. This is to prevent your selection fields being populated with unwanted options.

This is due to the “Typecast” option and might be an issue when creating or updating options.

While we wait for the Airtable app to be updated (vote for this feature request) and get and advanced option to enable typecast, there are two workarounds:

  1. Rebuild your Airtable call using the “Make an API Call” module.
  2. Set the typecast option in the Make module code:
  • Copy the Airtable create/update/upsert module (right click > copy)
  • Paste in a text editor (any application that can edit plain text)
  • Search for the “typecast” option (usually somewhere in the first 20 lines)
  • Change “false” > “true”
  • Select all the code and Copy
  • Paste it back in your scenario to get a copy of the original module with typecast set to true.

I usually put this behind an error handler to do some extra checks before creating the extra option.

P.S. If you see this, please also vote for the option to be added to the Make Airtable app (link above).

2 Likes