Saltar al contenido principal
GET
/
agents
/
history

Endpoint

GET https://gateway.orkeia.ai/agents/history`

Cabeçalhos

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

Ejemplo (cURL)

curl -X GET "https://gateway.orkeia.ai/agents/history" \
  -H "authorization:  <tu_token>"

Respuestas

Respuesta - Éxito

[
  {
    "id": "evt1",
    "agentId": "agent123",
    "action": "created",
    "timestamp": "2024-07-01T12:00:00Z"
  },
    {
    "id": "evt2",
    "agentId": "agent134",
    "action": "created",
    "timestamp": "2024-07-01T12:00:00Z"
  }
]

500 — Solicitud Incorrecta

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

400 — Error del Cliente

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