confluence_search_generic_content
Search for databases, whiteboards, folders, or embeds in Confluence. Supports pagination with cursors and optional full response.
Instructions
Search for generic content types: databases, whiteboards, folders, or embeds. NOT for pages or blog posts — use confluence_cql_search or confluence_search_content for those. Results are paginated — use the returned cursor to fetch more pages if needed. Output is trimmed by default (drops _links, _expandable, body content, etc.); pass full=true to receive the raw Confluence response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | If true, bypass response trimming and return the raw Confluence API response. | |
| type | Yes | The type of generic content to search for. Must be one of: DATABASES, WHITEBOARDS, FOLDERS, EMBEDS | |
| limit | No | Maximum number of results (default 25, max 250) | |
| title | No | Filter by title (partial match) | |
| cursor | No | Cursor for pagination (from previous response) | |
| spaceKey | No | Filter by space *key* (e.g. 'ENG'), not the numeric space id. CQL's `space=` operator works on keys. |