Hi @Josh_Cyk - I have a similar base - similar linking fields and, looking at the API doc for this base, I need my fields object to look like this:
"fields": {
"Company": [
"rec123abcdefrte"
],
"Invoice Items": [
"rec987tyufhHrif",
"rec13579abcdef",
"recxyz456YQWE"
]
}
so, on my invoice items field, adding multiple ids, this is an array of ids, with each id quoted.
I’m not sure I understand your variable "{id (1) (concat)}"
but if this is a quoted string of ids (as opposed to string of quoted ids) then this might be the problem.
Can you log out this variable and see what its value is?
JB
Hi @Josh_Cyk - I have a similar base - similar linking fields and, looking at the API doc for this base, I need my fields object to look like this:
"fields": {
"Company": [
"rec123abcdefrte"
],
"Invoice Items": [
"rec987tyufhHrif",
"rec13579abcdef",
"recxyz456YQWE"
]
}
so, on my invoice items field, adding multiple ids, this is an array of ids, with each id quoted.
I’m not sure I understand your variable "{id (1) (concat)}"
but if this is a quoted string of ids (as opposed to string of quoted ids) then this might be the problem.
Can you log out this variable and see what its value is?
JB
Thanks, @JonathanBowen! This worked. Needed a string of quoted ids. I’m not sure how to add the quotes to each id in Parabola, so I used a formula field in Airtable to concatenate quotes around the record id.