Skip to main content
Skip table of contents

Create folder

Requirements

  • Authentication token

How to create a folder

JS
POST /folders?token=:authenticationToken
  • Creates new folder

  • You can choose parental folder by specifying its folder ID

Example

Request

JS
POST /folders?token=ADFFQBYXP2NVGR6PAP3KOR27FETP6
{
  "name": "My folder",
  "parentFolderId": null, //null or leave out to create in root, otherwise specify parent folder ID
  "isShared": true   //Shared or private folder, you cannot create shared folder inside private parent and vice-versa
}

Explanation on shared folders can be found in our Help in Shared Folders section.

Response

JS
{
  "id": "02a9cce1-e63d-47e0-b721-952df1992c45"
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.