Hi all,
It would be useful to be able to specify rows to update or create in a table dynamically, perhaps through specifying an object with column names for the keys and values for the values, for instance:
Update row by Table Id and Row Id with one object specifying the fields:
{
“Salesforce opportunity Id”: “xxxxx”,
“Salesforce user Id 1”: 4,
“Salesforce user Id 2”: 4,
“Salesforce user Id 3”: 4,
}
In this way you could dynamically generate a table with arbitrary column names that are then programmatically filled with data. Currently, I believe this limitation could be worked around by passing around a csv and creating the table from that.
Thanks,
Derek