{ "opencollection": "1.0.0", "info": { "name": "ClickUp Comments Authorization Folders API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Folders", "type": "folder" }, "items": [ { "info": { "name": "Get folders", "type": "http" }, "http": { "method": "GET", "url": "https://api.clickup.com/api/v2/space/:space_id/folder", "params": [ { "name": "space_id", "value": "", "type": "path", "description": "The unique identifier of the Space." }, { "name": "archived", "value": "", "type": "query", "description": "Include archived Folders in the response." } ] }, "docs": "Retrieves all Folders within a specified Space. Optionally includes archived Folders in the response." }, { "info": { "name": "Create a folder", "type": "http" }, "http": { "method": "POST", "url": "https://api.clickup.com/api/v2/space/:space_id/folder", "params": [ { "name": "space_id", "value": "", "type": "path", "description": "The unique identifier of the Space." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Folder within a specified Space." }, { "info": { "name": "Get a folder", "type": "http" }, "http": { "method": "GET", "url": "https://api.clickup.com/api/v2/folder/:folder_id", "params": [ { "name": "folder_id", "value": "", "type": "path", "description": "The unique identifier of the Folder." } ] }, "docs": "Retrieves details of a specific Folder, including its Lists and configuration." }, { "info": { "name": "Update a folder", "type": "http" }, "http": { "method": "PUT", "url": "https://api.clickup.com/api/v2/folder/:folder_id", "params": [ { "name": "folder_id", "value": "", "type": "path", "description": "The unique identifier of the Folder." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the properties of an existing Folder." }, { "info": { "name": "Delete a folder", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clickup.com/api/v2/folder/:folder_id", "params": [ { "name": "folder_id", "value": "", "type": "path", "description": "The unique identifier of the Folder." } ] }, "docs": "Permanently deletes a Folder and all of its contents including Lists and Tasks. This action cannot be undone." } ] } ], "bundled": true }