如何更新Smartsheet API 2.0

时间:2015-08-14 20:13:54

标签: smartsheet-api smartsheet-java-sdk-v2

我最近编写了一个程序,使用API​​ 1.1自动更新工作表,并使用

smartsheet.rows().updateCells(rowId, cells);

更新工作表中的一行单元格。在2.0版本中,rows()已被弃用,但我仍然无法找到此行的2.0等效值。

1 个答案:

答案 0 :(得分:0)

updateCells()已被updateRows()取代,可以使用rowResources()访问。详细示例代码可在此处获取:http://smartsheet-platform.github.io/api-docs/#update-cell(s)

示例代码:

new_array.push(a);
new_array.push(b);

return new_array;