latestOpenAPI 3.0.02026-08-10221235717.8 KB

e21ad140ec3c

public
Image

Lists all the Builds of an Image

DEPRECATED: This endpoint exists for historical compatibility and should not be used. Please use the Artefact API instead.

The response lists all available Image Builds of an Image.

get/orgs/{orgId}/images/{imageId}/builds

Path parameters

orgIdstring required

The organization ID.

imageIdstring required

The Image ID.

Response

Possibly empty list of Builds of Container Images.

added_atstring

The time when the build was added to Humanitec.

branchstring required

The branch name of the branch the build was built on

commitstring required

The commit ID that this build was built from.

imagestring required

The fully qualified Image URL including registry, repository and tag.

tagsstring[] required

The tag that the build was built from.

Example response

[
  {
    "added_at": "2020-06-22T09:37:23.523Z",
    "branch": "master",
    "commit": "884bccaa807ea27cc1997a7492a3b6279fd7bd55",
    "image": "registry.humanitec.io/my-org/my-service:1.2.7"
  }
]