Knowledge Base - Article API

Endpoint

/kb/article/{article_id}

Method

GET

Description

Retrieves details for a specific knowledge base article.

Parameters

  • article_id (required) - The unique identifier of the article. Must be an integer.

Response

          
            {
              "id": 123,
              "title": "Understanding API Authentication",
              "content": "This article explains...",
              "author": "John Doe",
              "date_created": "2023-10-26",
              "last_updated": "2023-10-27"
            }
          
        

Example Request

          
            GET /kb/article/123
          
        

Error Responses

  • 404 - Article not found.
  • 500 - Internal server error.