Hi everyone,
I’m trying to update the list of select options in the column Categories_test in an Airtable table using the API. My request seems to be correctly formatted, but I keep getting an error response from the server. I would appreciate any guidance on what might be wrong.
Here are the details:
PATCH Request:
Endpoint:
PATCH https://api.airtable.com/v0/meta/bases/{baseId}/tables/{tableId}/fields/{fieldId}
Request Body:
{
"type": "multipleSelects",
"options": {
"choices": [
{
"name": "test"
},
{
"name": "blabla"
}
]
}
}
Headers:
{
"Authorization": "Bearer [ANONYMIZED_API_TOKEN]",
"Content-Type": "application/json"
}
Server Response:
{
"error": {
"type": "INVALID_REQUEST_UNKNOWN",
"message": "Invalid request: parameter validation failed. Check your request data."
}
}
What I’ve Tried:
- Verified that baseId, tableId, and fieldId are correct (confirmed via API).
- Confirmed that the Categories_test field is of type multipleSelects (checked via API).
- Tested the request in both Insomnia and make.com.
Has anyone encountered a similar issue? Are there additional requirements when updating multipleSelects fields that I might be missing? Any help would be greatly appreciated!