Saltar al contenido principal
GET
/
tools
/
history

Endpoint

GET https://gateway.orkeia.ai/tools/history Autenticación
Requiere el encabezado authorization: <tu_token>.

Ejemplo (cURL)

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

Respuestas

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "id": "EVT_1",
      "toolId": "TOOL_123456",
      "action": "created",
      "timestamp": "2024-07-01T12:00:00Z"
    }
  ]
}

500 — Error del Servidor

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

400 — Error del Cliente

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

Campos

CampoTipoDescripción
idstringIdentificador único del evento de historial.
toolIdstringID de la herramienta relacionada con el evento.
actionstringAcción realizada (ej.: created, updated).
timestampstringFecha/hora del evento en formato ISO 8601.