/folder/create/{bucketId}POSTbucketId (required): The ID of the parent folder where the new folder will be created. Example: a1b2c3d4-e5f6-7890-1234-567890abcdef{
"name": "New Folder Name"
}name (required, string): The name of the new folder.POST /folder/create/a1b2c3d4-e5f6-7890-1234-567890abcdef
Content-Type: application/json
{
"name": "Project Documents"
}a1b2c3d4-e5f6-7890-1234-567890abcdef.201 Created: Folder successfully created. The response body may include the ID of the newly created folder.400 Bad Request: Invalid request body (e.g., missing name field, name too long).404 Not Found: Parent folder not found.409 Conflict: A folder with the same name already exists in the specified parent folder.500 Internal Server Error: Server error.