Create
To create a new folder you need to execute a POST request against the /libraries/:id/folders endpoint.
Two fields are available in the JSON body of the POST request:
name - the name of the folder. Required.
parent_id - the id of the parent folder. Omit this field if the folder is attached to the root of the library and not to a parent folder.
In the response you will find the unique id which identifies the folder.
1. Request (folder created in the root of the library)
Response (200 OK)
2. Request (creates a nested folder in the existing "Birthday Party" folder)
Response (200 OK)
Last updated