Get folder details

You can get all information of a folder identified by its folder_uuid This API will also allow you to check the existence of a folder.

GET /v4/folders/{folder_uuid}

API permissions

OBJECTS_FETCH

Try it out

Request

Copy-paste the cURL request in your Terminal or click on the API Explorer tab to see the API in action.

host: 'https://api.filerobot.com/fdocs' path: '/v4/folders/{folder_uuid}' variables: folder_uuid: 55f9a2a6-3cfb-5430-8814-27be3f1a2962 headers: X-Filerobot-Key: fa5fe3303dd34e1da4810915c7c3fd6f theme: clouds-midnight editor_theme: clouds_midnight method: GET render: curl_tab: true

Response

{
  "status": "success",
  "folder": {
    "uuid": "55f9a2a6-3cfb-5430-8814-27be3f1a2962",
    "path": "/api-demo/new-name",
    "name": "new-name",
    "meta": {},
    "visibility": "VISIBILITY_INHERIT",
    "updated_at": "2021-05-04T10:34:30Z",
    "created_at": "2021-05-04T10:12:39Z",
    "count": {
      "files_recursive": 1,
      "files_direct": 1
    },
    "size": {
      "total_recursive_bytes": 126016,
      "total_recursive_pretty": "123.06 KB"
    },
    "public_icon": "https://scaleflex.cloudimg.io/crop/300x300/x/http://www.airstore.io/assets/dir.png"
  }
}