edit_folder
Modify an existing Joplin folder by updating its title or parent folder using the folder ID. Simplify folder management and organization.
Instructions
Edit/update an existing folder/notebook in Joplin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | Yes | ID of the folder to edit | |
parent_id | No | New parent folder ID | |
title | No | New folder title |
Input Schema (JSON Schema)
{
"properties": {
"folder_id": {
"description": "ID of the folder to edit",
"type": "string"
},
"parent_id": {
"description": "New parent folder ID",
"type": "string"
},
"title": {
"description": "New folder title",
"type": "string"
}
},
"required": [
"folder_id"
],
"type": "object"
}