One of columns has 'Contact List' type with checked 'Allow multiple contacts per cell' see example.
I tried to add row using smartsheet-csharp-sdk(v2.3). Cell object:
new Cell
{
ColumnId = 111111,
Value = "Test@test.com",
Strict = false
}
and I got the next error:
{
"errorCode": 1235,
"message": "Value is not supported for this column type. Use objectValue instead.",
"refId": "163zew9slvgfq",
"detail": {
"index": 0
}
Then I tried to find how to pass ObjectValue and found only how pass 'Predecessor List', but nothing about multi 'Contact List'.
Question: How to add multi contact list cell using C# SDK ?