PUT
/
folders
{
  "id": "ca45f483-db07-41e1-ab9a-1c610614416a",
  "name": "folder1",
  "access": [
    "user1@example.com",
    "ca45f483-db07-41e1-ab9a-1c610614416b"
  ],
  "personal_folder_owner_id": "ca45f483-db07-41e1-ab9a-1c610614416a"
}

Authorizations

Authorization
string
header
required

Authorization header. Learn how to get it.

Body

application/json
name
string
required
access
string[]
required

Response

201
application/json
Successful Response
name
string
required

The name of the folder, it is used like a path

Maximum length: 128
Example:

"folder1"

access
string[]
required

A list containing emails and group ids that have access to the folder

Example:
[
  "user1@example.com",
  "ca45f483-db07-41e1-ab9a-1c610614416b"
]
id
string | null
Example:

"ca45f483-db07-41e1-ab9a-1c610614416a"

personal_folder_owner_id
string | null

The id of the user that owns this folder as their unique personal folder

Example:

"ca45f483-db07-41e1-ab9a-1c610614416a"