是否可以使用 smartsheet api 在单个工作表中复制和粘贴行?我正在使用python。
当我尝试以下操作时(使用相同的工作表 ID)
response = smartsheet_client.Sheets.copy_rows(
<MySheetID>,
smartsheet.models.CopyOrMoveRowDirective({
'row_ids': [<MyRowID>],
'to': smartsheet.models.CopyOrMoveRowDestination({
'sheet_id': <MySheetID>
})
})
)
我收到以下错误“无法在同一工作表中复制或移动行”。