Get all document IDs
Fetches all document IDs without pagination. Supports filtering by status and tags. Useful for bulk operations.
Authorizations
Your unique Avido API key
Your unique Avido Application ID
Query Parameters
Filter by document type. Defaults to KNOWLEDGE when omitted.
KNOWLEDGE, POLICY "KNOWLEDGE"
Filter by document-level status (DocumentV2.status). When omitted, the API defaults to ACTIVE for library queries and skips the filter for quickstart-scoped queries (so DRAFT KB-Review uploads remain visible). Distinct from status below which filters the document's active version status.
DRAFT, ACTIVE "ACTIVE"
Filter by document version status (filters documents by their active version status). Supports multiple values.
Status of the document. Valid options: DRAFT, REVIEW, APPROVED, ARCHIVED, ACTIVE.
DRAFT, REVIEW, APPROVED, ARCHIVED, ACTIVE "APPROVED"
Filter documents by tag ID
"789e4567-e89b-12d3-a456-426614174000"
Search in document version title and content
"API documentation"
Filter by scrape job ID. Supports multiple values.
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"321e4567-e89b-12d3-a456-426614174000"
Filter by source FileProcessing ID (the row that ingested the doc). Supports multiple values, capped at 100.
100^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"654e7890-e89b-12d3-a456-426614174000"
Filter documents by topic ID
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"789e1234-e89b-12d3-a456-426614174000"
Filter by assignee user ID
"user_123456789"
Response
List of document IDs retrieved successfully
Response containing all document IDs without pagination
Array of all document IDs matching the filter criteria
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$[
"123e4567-e89b-12d3-a456-426614174000",
"223e4567-e89b-12d3-a456-426614174001",
"323e4567-e89b-12d3-a456-426614174002"
]