HydraCore
API by router

Admin

List Runtime Images

List registered runtime images.

Defaults to current rows only (the snapshot the resolver will actually pick at provision time). include_superseded=true returns history. Admin-only — runtime_images is platform metadata not gated by tenant scope.

GET
/v1/admin/runtime-images
AuthorizationBearer <token>

In: header

Query Parameters

manifest_id?Manifest Id
provider?Provider
include_superseded?Include Superseded
Defaultfalse

Response Body

curl -X GET "https://loading/v1/admin/runtime-images?manifest_id=string&provider=string&include_superseded=false"
{
  "images": [
    {
      "built_at": "2019-08-24T14:15:22Z",
      "bundle_hash": "string",
      "compatibility_hash": "string",
      "id": "string",
      "manifest_id": "string",
      "provider": "string",
      "registered_at": "2019-08-24T14:15:22Z",
      "registered_by": "string",
      "runtime_version": "string",
      "snapshot_id": "string",
      "superseded_at": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}