Skip to content

Latest commit

 

History

History
73 lines (58 loc) · 1.58 KB

File metadata and controls

73 lines (58 loc) · 1.58 KB

Spreadsheet Cloud API: getDiscUsage

Quick Start

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

Interface Details

Endpoint

GET http://api.aspose.cloud/v4.0/cells/storage/disc

Function Description

The request parameters of getDiscUsage API are:

Parameter Name Type Path/Query String/HTTPBody Description
storageName String Query

Response Description

{
  "Name": "DiscUsage",
  "Description": [
    "Class for disc space information."
  ],
  "Type": "Class",
  "IsAbstract": false,
  "Properties": [
    {
      "Name": "UsedSize",
      "Description": [
        "Application used disc space."
      ],
      "Nullable": true,
      "ReadOnly": false,
      "IsInherit": false,
      "DataType": {
        "Identifier": "Long",
        "Name": "long"
      }
    },
    {
      "Name": "TotalSize",
      "Description": [
        "Total disc space."
      ],
      "Nullable": true,
      "ReadOnly": false,
      "IsInherit": false,
      "DataType": {
        "Identifier": "Long",
        "Name": "long"
      }
    }
  ]
}

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]