Folders let you group server entries into a tree-structured sidebar. You can nest folders inside other folders usingDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/gnmyt/Nexterm/llms.txt
Use this file to discover all available pages before exploring further.
parentId, and assign folders to an organization to share them across team members.
All endpoints require authentication via Authorization: Bearer YOUR_TOKEN.
GET /api/folder/list
Returns all folders belonging to the authenticated user, including folders shared through organizations.Response
Returns an array of folder objects.Unique folder identifier.
Display name of the folder.
ID of the parent folder, or
null if this is a top-level folder.ID of the organization this folder belongs to, or
null for personal folders.PUT /api/folder
Creates a new folder.Request body
Display name for the folder. Between 3 and 50 characters.
ID of the parent folder. Omit or pass
null to create a top-level folder.ID of the organization to assign this folder to. Omit or pass
null for a personal folder.Response
ID of the newly created folder.
Confirmation message.
PATCH /api/folder/:folderId
Updates an existing folder. At least one field must be provided.Path parameters
Unique identifier of the folder to update.
Request body
At least one of the following fields is required.New display name. Between 3 and 50 characters.
Move the folder to a different parent. Pass
null to promote to the top level.Reassign to a different organization, or
null to make personal.Response
Confirmation message.
DELETE /api/folder/:folderId
Permanently deletes a folder. Any entries inside the folder may be moved to a default location.Path parameters
Unique identifier of the folder to delete.
Response
Confirmation message.