Skip to main content
GET
/
agents
/
{id}
/
version-control

Endpoint

GET https://gateway.orkeia.ai/agents/{id}/version-control

Headers

authorization:  <your_token>
Content-Type: application/json

Path Parameters

{
  "id": "Agent ID (required)"
}

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/agents/agent123/version-control" \
  -H "authorization:  <your_token>"

Responses

Response - Success

{ "status": "OK",
  "data":[ {
    "id": "hist_001",
    "responsible": "Orkeia dev team",
    "responsibleId": "user_123",
    "action": "Created support agent",
    "type": "success",
    "date": "2025-08-22T18:32:45.000Z",
    "versionControl": "v1.0.0"
  }, {
    "id": "hist_002",
    "responsible": "Orkeia dev team",
    "responsibleId": "user_123",
    "action": "Deleted support agent",
    "type": "success",
    "date": "2025-08-22T18:32:45.000Z",
    "versionControl": "v1.3.0"
  },
],
}

500 — Bad Request

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

400 — Client Error

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