v1

latestOpenAPI 3.0.32026-07-22194221292.5 KB
applications

List all application revisions

get/applications/{applicationName}/revisions

Path parameters

applicationNamestring required

Name of the application

Response

successful operation

createdAtstring

When this revision was created

createdBystring

Who created this revision

idstring

Unique revision identifier

imagestring required

Container image for this revision (mandatory)

memoryinteger

Memory allocation in megabytes. Determines CPU allocation (CPU = memory / 2048).

portinteger

Port the application listens on for this revision (default uses spec-level port or 8080)

snapshotstring

Snapshot ID this revision was forked from (optional, only set when created via fork)

Example response

[
  {
    "envs": [
      {
        "name": "MY_ENV_VAR",
        "secret": true,
        "value": "my-value"
      }
    ],
    "memory": 2048,
    "port": 8080
  }
]