Update a Folder under another Folder or a project#
📣 this endpoint Update a Folder under another Folder and a project . In this PUT request the project ID and folder ID have to be provided in the URL. in the payload you have to provide folder name ,folder ID and type .✳ list of URL parameters
project_id = 36 character in length
folder_id = 36 character in length
📢 Info message : Here URL is contructed like PUT/projects/<project_id>/folders/<folder_id>
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
Body Params application/json
Example
{// "name": "Updated Folder","parent_folder_id":"","type":"root"// if root and parent id in null/not provided than moved to project root directory}
Request Code Samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request PUT 'http://localhost:8080/v1/projects/ee767f3a-35c7-4ffa-978b-33db5a686c01/folders/f070f690-399b-41d3-bf15-b1524170b622' \
--header'Content-Type: application/json' \
--data-raw'{
// "name": "Updated Folder",
"parent_folder_id": "",
"type": "root" // if root and parent id in null/not provided than moved to project root directory
}'