List knowledge base items
Retrieve all Q&A items in the knowledge base for the current tenant.
AuthorizationBearer <token>
In: header
Query Parameters
search?string
Search by question or answer content
access_level?string
Filter by access level
Value in
"public" | "restricted" | "internal" | "requires_nda"
tags?string
Filter by tags (comma-separated)
Response Body
fetch("https://app.orbiqhq.com/api/v1/knowledge-base?search=string&access_level=public&tags=compliance%2Csecurity%2Cgdpr")
{
"knowledgeBase": [
{
"id": "kb-123",
"question": "What is our data retention policy?",
"answer": "We retain customer data for 7 years as required by law.",
"answer_md": "We retain customer data for **7 years** as required by law.",
"access_level": "public",
"tags": [
"gdpr",
"data-retention",
"legal"
]
}
]
}
Empty
Empty
How is this guide?