Retrieve collections with pagination.
Returns a paginated list of collections with filtering options.
Args: skip: Number of records to skip (for pagination) limit: Maximum number of records to return status: Filter by collection status (e.g., ‘active’, ‘archived’) visibility: Filter by visibility (‘public’ or ‘private’) search: Search term for name or description tags: Comma-separated list of tags to filter by
Returns: PaginatedResponse with collections and total count
Examples: Get first page: GET /collections?skip=0&limit=20
Get second page: GET /collections?skip=20&limit=20
Filter by status: GET /collections?status=active&limit=50
Search collections: GET /collections?search=documents&limit=20
Filter by tags: GET /collections?tags=important,work&limit=50
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The workspace ID
Number of collections to skip
x >= 0Number of collections to return
1 <= x <= 1000Filter by collection status
Filter by visibility (public/private)
Search collections by name or description
Filter by tags (comma-separated)