Get Started
API backend
API system
More information

GET api/2.0/settings/storage This function requires authentication

Description

Returns a list of all the portal storages.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/storage
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of storages with the following parameters

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": "some text",
      "Title": "some text",
      "Current": true,
      "IsSet": true
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>some text</Id>
    <Title>some text</Title>
    <Current>True</Current>
    <IsSet>True</IsSet>
  </response>
</result>