Fetch Registry Details

Shows details of a specified registry.

GET/v1.3/registry

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

registryId

Mandatory

string

ID/UUID of the registry you want to fetch the details for.

SampleSample

API request

    curl -X GET
"<qualys_base_url>/csapi/v1.3/registry/1ad23456-789f-0a12-3456-78bd901a2e34" --header "Authorization: <token>"
    

Response

    {
    "data": [
        {
            "registryUuid": "1ad23456-789f-0a12-3456-78bd901a2e34",
            "registryUri": "https://123456789012.dkr.ecr.us-gov-west-1.amazonaws.com",
            "registryName": "AWS_REGISTRY",
            "registryType": "AWS",
            "repoCount": 1,
            "totalImages": 1,
            "totalScannedImages": 1,
            "totalVulnerableImages": 0,
            "lastVmScanDate": "1642527390097",
            "scheduleStatusList": {
                "Finished": 1
            },
            "created": "1642527260574",
            "updated": "1642527260574",
            "dockerHubOrg": null,
            "providerType": "AWS",
            "awsAccountId": "123456789012",
            "awsRegion": "us-gov-west-1",
            "gcpProjectId": null,
            "acrConnectorId": null
        }
    ],
    "count": 1
}