GET api/2.0/files/folder/{folderId}

Description

Returns the detailed information about a folder with the ID specified in the request.

Parameters
Name Description Type Example
folderId
sent in url
Folder ID number 1234
Example
GET api/2.0/files/folder/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Folder parameters

Example Response
{
  "status": 0,
  "response": {
    "ParentId": 1234,
    "FilesCount": 1234,
    "FoldersCount": 1234,
    "IsShareable": true,
    "IsFavorite": true,
    "New": 1234,
    "Mute": true,
    "Pinned": true,
    "RoomType": "5",
    "Private": true,
    "QuotaLimit": 1234,
    "IsCustomQuota": true,
    "UsedSpace": 1234
  }
}