hi @peppinob We are talking different things here. What you show is the “board-relation” column type. That column holds the itemIds of the linked items, but it does not hold anything else then that relation. I was talking about the column type “lookup”. This column is a mirrored column that takes the itemIds from a “board-relation” column. It also holds a text value, which is indeed the name of the linked item / column. Let me try to explain:
{
"value": null,
"id": "customer",
"title": "Customer",
"type": "lookup",
"text": "Let's Do IT, ABC Company"
},
{
"value": "{\"linkedPulseIds\":[{\"linkedPulseId\":600690019},{\"linkedPulseId\":600685009}],\"changed_at\":\"2021-02-19T19:16:30.893Z\"}",
"id": "connect_boards0",
"title": "xxx",
"type": "board-relation",
"text": "Consulting Service, 3 x laptop + accesories"
}
The first one is the mirror column, the second one is the connected boards column. In this example the connected boards column has 2 linked items and the mirror column shows the content of the column values (comma separated) for the column specified in the mirror configuration and the linked items (2 in this case).
If you want just the text value as the field for the column “customer” (in the example above the first object) … this can be done.
I am just not sure we are talking the same things here 