Hello,
I am inserting data into a table using the upsert API.
everything works fine but :
{
"rows": [
{
"cells": [
{
"column": "user",
"value": "alex-test"
},
{
"column": "name",
"value": "alex"
},
{
"column": "fistname",
"value": "alex"
}
]
}
],
"keyColumns": [
"user",
"name"
]
}
the cell user refer to a lookup table. I have the exact same name in my tables, written the same way… but even if the column is defined as lookup it’s not recognizing the field as a link.
Thanks
Alex