Skip to main content
GET
/
tools
/
:id
/
version-control

Endpoint

GET https://gateway.orkeia.ai/tools/{id}/version-control 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/version-control"   -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    { "version": 1, "timestamp": "2024-07-01T12:00:00Z" },
    { "version": 2, "timestamp": "2024-07-10T09:30:00Z" }
  ]
}

500 — Server Error

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

400 — Client Error

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

Fields

FieldTypeDescription
versionnumberVersion number of the tool.
timestampstringDate/time of version creation (ISO 8601).