API upsert, lookup field

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

I will answer the question myself like this it can help others.
I change the option disableparsing to false and now it is working perfectly

2 Likes