List Vault Projects and Knowledge Bases
Lists all Vault projects and knowledge bases in the current workspace with pagination support. This endpoint returns a paginated list of projects that the authenticated user has permission to view.
Documentation Index
Fetch the complete documentation index at: https://developers.harvey.ai/llms.txt
Use this file to discover all available pages before exploring further.
Permissions
RequiresView workspace projects permission.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Page number for pagination (default: 1)
x >= 1Number of items per page (default: 20, max: 100)
1 <= x <= 100Case-insensitive substring match on project name.
256Filter by knowledge base flag. true returns only knowledge base projects, false excludes them, and omitting the parameter returns both.
Inclusive lower bound on project creation time, expressed as a UTC Unix epoch timestamp in seconds. Only projects with created_at >= created_after are returned. Must be strictly less than created_before when both are provided.
Exclusive upper bound on project creation time, expressed as a UTC Unix epoch timestamp in seconds. Only projects with created_at < created_before are returned.
Field to sort the results by. date sorts by the project's last content-update timestamp (the default ordering). name sorts alphabetically by project name.
date, name Sort direction to order results list.
asc, desc Response
Successfully retrieved workspace projects