Skip to main content
GET
/
tools
/
:id
/
history

Endpoint

GET https://gateway.orkeia.ai/tools/{id}/history Authentication
Requires header authorization: <your_token>.

Path Parameters

NameTypeRequiredDescriptionExample
idstringYesUnique identifier of the tool.TOOL_123456

Example (cURL)

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

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "id": "EVT_2",
      "toolId": "TOOL_123456",
      "action": "updated",
      "timestamp": "2024-07-01T13:00:00Z"
    }
  ]
}

500 — Server Error

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

400 — Client Error

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

Fields

FieldTypeDescription
idstringUnique identifier of the history event.
toolIdstringID of the tool related to the event.
actionstringAction performed (e.g., created, updated).
timestampstringDate/time of the event in ISO 8601 format.