API Version 1.2.3

Knowledge Base API Documentation

Introduction

This API provides access to the Knowledge Base articles. It allows you to search for articles based on keywords and retrieve the full content and metadata.

Endpoints

Search Articles

fetch('/api/knowledgebase/search?q=keyword')
  .then(response => response.json())
  .then(data => {
    // Process the search results
    console.log(data);
  })
  .catch(error => {
    console.error('Error:', error);
  });
        
        
Get Article by ID

fetch('/api/knowledgebase/article/123')
  .then(response => response.json())
  .then(data => {
    // Process the article data
    console.log(data);
  })
  .catch(error => {
    console.error('Error:', error);
  });
        
        

Data Model