Skip to main content
GET
/
knowledge-bases
/
history

Endpoint

GET https://gateway.orkeia.ai/knowledge-bases/history Authentication
Requires header authorization: <your_token>.

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/knowledge-bases/history" \
  -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "id": "hist_001",
      "kbId": "KB_123456",
      "responsible": "System",
      "action": "created knowledge base",
      "type": "success",
      "date": "2024-07-01T12:00:00Z",
      "versionControl": "v1.0.0"
    }
  ]
}

500 — Server Error

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}

History Fields

NameTypeDescription
idstringUnique identifier of the history event.
kbIdstringIdentifier of the knowledge base associated with the event.
responsiblestringName of the person responsible for the change.
actionstringRegistered action (e.g., created, updated, deleted).
typestringClassification of the event (success, fail, neutral).
dateDateDate and time of the change.
versionControlstringVersion identifier associated with the event (if applicable).