Working with Excel Rows – Aspose.Cells Cloud API

Working with rows on an Excel file

Quick API reference for common row operations:

Operation HTTP Method Endpoint Key Parameters
Get Row GET /cells/{fileName}/worksheets/{sheetName}/rows/{rowIndex} fileName, sheetName, rowIndex
Add Row POST /cells/{fileName}/worksheets/{sheetName}/rows rowIndex, height
Copy Rows POST /cells/{fileName}/worksheets/{sheetName}/rows/copy sourceIndex, destinationIndex, rowCount
Delete Row DELETE /cells/{fileName}/worksheets/{sheetName}/rows/{rowIndex} fileName, sheetName, rowIndex
Hide Rows POST /cells/{fileName}/worksheets/{sheetName}/rows/hide startIndex, endIndex
Unhide Rows POST /cells/{fileName}/worksheets/{sheetName}/rows/unhide startIndex, endIndex
Group Rows POST /cells/{fileName}/worksheets/{sheetName}/rows/group startIndex, endIndex
Ungroup Rows POST /cells/{fileName}/worksheets/{sheetName}/rows/ungroup startIndex, endIndex