Skip to content

Latest commit

 

History

History
70 lines (56 loc) · 1.87 KB

File metadata and controls

70 lines (56 loc) · 1.87 KB

Spreadsheet Cloud API: putInsertWorksheetRows

Insert several new rows in the worksheet.

Quick Start

  • Base URL: http://api.aspose.cloud/v3.0
  • Authentication Method: JWT (OAuth2, application) Token URL: https://api.aspose.cloud/connect/token
  • Example

Interface Details

Endpoint

PUT http://api.aspose.cloud/v3.0/cells/{name}/worksheets/{sheetName}/cells/rows/

Function Description

The request parameters of putInsertWorksheetRows API are:

Parameter Name Type Path/Query String/HTTPBody Description
name String Path The file name.
sheetName String Path The worksheet name.
startrow Integer Query The begin row index to be operated.
totalRows Integer Query Number of rows to be operated.
updateReference Boolean Query Indicates if update references in other worksheets.
folder String Query The folder where the file is situated.
storageName String Query The storage name where the file is situated.

Response Description

{
  "Name": "CellsCloudResponse",
  "Type": "Class",
  "IsAbstract": false,
  "Properties": [
    {
      "Name": "Code",
      "Nullable": true,
      "ReadOnly": false,
      "IsInherit": false,
      "DataType": {
        "Identifier": "Integer",
        "Name": "integer"
      }
    },
    {
      "Name": "Status",
      "Nullable": true,
      "ReadOnly": false,
      "IsInherit": false,
      "DataType": {
        "Identifier": "String",
        "Name": "string"
      }
    }
  ]
}

OpenAPI Specification

The OpenAPI Specification defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

[Back to API list]
[Back to README]