List Registry Images
GET
/registry/images
const url = 'https://api.mengi.cloud/registry/images';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.mengi.cloud/registry/imagesList repositories (images) in the user’s Harbor registry project.
Returns an empty list if the user has no registry credentials.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Response List Registry Images Registry Images Get
Array<object>
RegistryRepositoryResponseA repository in the user’s Harbor project.
object
name
required
Name
string
full_name
required
Full Name
string
artifact_count
required
Artifact Count
integer
pull_count
required
Pull Count
integer
Example generated
[ { "name": "example", "full_name": "example", "artifact_count": 1, "pull_count": 1 }]