Hi
I’m trying to send a POST request to Airtable with two properties: Name (String) and PostedBy (Lookup field).
I keep getting an error unless I remove PostedBy. A new row is created but it is empty.
My json looks like this:
{
"records": [
{
"fields": {
"Name": "${name}",
"PostedBy": "${user.id}"
}
}
]
}
Any Ideas?
