EMERGENCY: Airtable Create Record no longer wants to create data in single or multiple choice fields

I have a simple flow for importing Savvycal (Calendly-like) appointments into an Airtable table.

My flow was working fine until yesterday, so I didn’t change anything. Then suddenly, the flow stopped working and returned an error saying that Airtable refused to import data in multiple choice or single choice fields.

I did several tests and after removing the data sent in these specific fields, the flow works again.

This instability in the Airtable database is really annoying, and I’ve been experiencing major blockages for several times now. Please, if the Airtable parts are not stable, please report it.

Last week it was the Update Record piece that wasn’t working on single or multiple choice fields, now it’s the Create Record piece.

Can you please fix the bug urgently?

Please take a look at this problem history:

@abuaboud @kishanprmr can you please help me urgently?

Hello @bastien ,

How are you passing the data in the multiple-choice fields? Is it done dynamically, or are you selecting from dropdowns? Could you provide a screenshot for reference?

Dynamically, like this :

I’m sure the problem is with Activepieces because the flow was working fine yesterday and I didn’t change anything.

Can you provide the Airtable template and let me know the incoming value from the webhook for this field in DM? Also, if it was working fine until yesterday, please share the flow link so we can troubleshoot the issue.

@kishanprmr I’v sent it in DM

Hey, over a week later and still no solution? This bug is costing me a lot of work, please help me!

Hello @bastien , I think I’ve identified the issue. When selecting values for the Niveau and Filière columns, you are mapping the entire object to the field, which is causing the “invalid value of column” error.

Here is the webhook payload data for the Filière column, where you should be mapping the "value" field:

 {
              "id": "field_VXk0w8rH",
              "type": "select",
              "label": "Filière",
              "value": "Générale",
              "options": [
                {
                  "id": "opt_qGFtdsUf",
                  "value": "Générale"
                }
              ]
            },

You should map the “value” field, as shown in the image below.

image

What misled me is that the “value” field doesn’t come up when I do a field search in the mapping pop-up window.
The search engine needs to be improved.