Hello engineers, I have an airtable node with a field of type select. However when I pass data through this field yet it was not in the options field in, the value cannot be added in Airtable options.
What is the error message (if any)?
ERROR: Invalid input for 'status' [item 0]
'status' expects one of the following values: [Open, In Progress, In Review, Completed] but we got 'Type Cast Trial'
Note
I have enabled Typecast in my airtable node
Below is a screenshot of the node and the error
That looks like Airtable is saying the status field can only contain one of the following values.
Open
In Progress
In Review
Completed
But the node is sending Type Cast Trial it sounds like it might just need to be updated in Airtable or there might be a delay between adding the option and it being available to the API.
To fix this on my workflow, I downloaded the workflow json, change the line related to my Select field from options to string and it works: "type": "options", -> "type": "string",
I don’t know if my workaround makes sense? Maybe n8n has another way to do this?
The option doesn’t exist in Airtable at first, the use case is I want n8n to create a record with a brand new option.
Changing Options > String does the trick, but I don’t know if there is another workaround.