I’m trying to export data to Airtable with the API. All works OK unless I am trying to export data into a linked Field, then it fails with a 422 error relating to invalid Record ID.
I assume it needs the recordID rather than the name but It works OK with Zapier as long as the name matches, if not it creates a record in the linked table.
If I use PUT (as I saw in another post) I get the error:
At the end of your body you have to include “typecast”: true so it would look like this:
{
“fields”: {
“Linked Field Name”: ["{Parabola Linked Field Name}"],
“AT Non Linked Field Name”: “{Parabola Non Linked Field Name}”
},
“typecast”: true
}
All working now, really appreciate your input Josh.
I had changed Type from Post to Put after reading another possible solution. I changed it back and used the “typecast”:true and, as if by magic, it all works