Get available Docker container images for a project

get/container/images/{projectName}

Returns the available Docker container images for a project.

Request Samples

Response Samples

1{
2 "start": 0,
3 "limit": 50,
4 "count": 2,
5 "items": [
6 {
7 "gitTagName": "1-2026.09-20250522.161540",
8 "status": "VALIDATION_REQUIRED",
9 "dockerRegistryUrl": "https://cr.sas.com",
10 "dockerRepositoryName": "sas-espcr/project55-arm64:1-2026.09-20250522.161540",
11 "projectVersion": 1,
12 "promotionLevel": 3,
13 "description": "Container image for v1.3 with an automatically generated image tag",
14 "espVersion": "2026.09",
15 "gpu": [
16 "nvidia",
17 "openvino"
18 ],
19 "architecture": "arm64"
20 },
21 {
22 "gitTagName": "user_defined_tag",
23 "status": "VALID_IMAGE",
24 "dockerRegistryUrl": "https://cr.sas.com",
25 "dockerRepositoryName": "sas-espcr/project55-x86_64:user_defined_tag",
26 "projectVersion": 1,
27 "promotionLevel": 3,
28 "description": "Container image for v1.3 with a user-provided tag",
29 "espVersion": "2026.09",
30 "gpu": [
31 "nvidia",
32 "openvino"
33 ],
34 "architecture": "x86_64",
35 "registryAvailable": true
36 }
37 ]
38}

Path Parameters

projectName
string
true

The name of the project for which to get images.

Query Parameters

limit
integer<int32>
false

The maximum number of container images to be returned.

>= 1<= 10000
Default:
50
start
integer<int64>
false

The first container creation image to be returned.

>= 0
Default:
0
version
integer<int32>
false

The version of the project for which to get images. If not specified, images for all versions of the project are returned.

Default:
-1

Responses

StatusMeaningDescription
200OK

The container images for the specified project, and optionally, the specified version.

Schema
401Unauthorized

The request is not authenticated.

Schema
403Forbidden

The user did not have the necessary permissions.

Schema
404Not Found

No resource exists at the requested path.

Schema
503Service Unavailable

Functionality for project containers is not enabled.

Schema