clickup_search_docs
Find documents within a specific ClickUp workspace, space, folder, or list by providing the parent type and ID to locate relevant content.
Instructions
Search for docs in a specific parent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_id | Yes | ID of the parent | |
| parent_type | Yes | Type of parent (SPACE, FOLDER, LIST, EVERYTHING, WORKSPACE) |
Input Schema (JSON Schema)
{
"properties": {
"parent_id": {
"description": "ID of the parent",
"type": "string"
},
"parent_type": {
"description": "Type of parent (SPACE, FOLDER, LIST, EVERYTHING, WORKSPACE)",
"type": "string"
}
},
"required": [
"parent_type",
"parent_id"
],
"type": "object"
}