Skip to main content
GET
/
api
/
knowledge-base
/
{documentation_id}
Get Document
curl --request GET \
  --url https://api.example.com/api/knowledge-base/{documentation_id}
{
  "documentation_id": "doc_123",
  "client_id": "org_1",
  "name": "Product Manual",
  "type": "file",
  "status": "synced",
  "s3_key": "docs/...",
  "created_at": "2024-01-01T00:00:00Z"
}
Get details of a specific knowledge base document.
documentation_id
string
required
The unique identifier of the document.

Response

Returns the full document object.
{
  "documentation_id": "doc_123",
  "client_id": "org_1",
  "name": "Product Manual",
  "type": "file",
  "status": "synced",
  "s3_key": "docs/...",
  "created_at": "2024-01-01T00:00:00Z"
}