# List OCI Artifact tags Lists OCI Artifact Tags. Endpoint: GET /har/api/v1/registry/{registry_ref}/artifact/{artifact}/tags Version: 1.0 Security: x-api-key ## Path parameters: - `registry_ref` (string, required) Reference to the scope in which the registry exists. Format depends on the scope: - Account-level: account_id/registry_name/+ - Organization-level: account_id/org_id/registry_name/+ - Project-level: account_id/org_id/project_id/registry_name/+ The /+ suffix is used internally to route scoped requests. It must be included exactly as shown in the URL. - `artifact` (string, required) Name of the artifact. The value depends on whether the name contains a slash (/): - If the artifact name contains /, append a trailing /+ at the end. - Example: mygroup/myartifact/+ - If the artifact name does not contain /, use the plain name. - Example: myartifact This is used internally to distinguish between namespaced and flat artifact names. ## Query parameters: - `page` (integer) Current page number - `size` (integer) Number of items per page - `search_term` (string) search Term. ## Response 200 fields (application/json): - `data` (object, required) A list of Artifact versions - `data.itemCount` (integer) The total number of items Example: 1 - `data.ociArtifactTags` (array, required) A list of OCI Artifact tags - `data.ociArtifactTags.digest` (string, required) - `data.ociArtifactTags.name` (string, required) - `data.pageCount` (integer) The total number of pages Example: 100 - `data.pageIndex` (integer) The current page - `data.pageSize` (integer) The number of items per page Example: 1 - `status` (string, required) Indicates if the request was successful or not Enum: "SUCCESS", "FAILURE", "ERROR" ## Response 400 fields (application/json): - `code` (string, required) The http error code Example: "404" - `details` (object) Additional details about the error - `message` (string, required) The reason the request failed ## Response 401 fields (application/json): - `code` (string, required) The http error code Example: "404" - `details` (object) Additional details about the error - `message` (string, required) The reason the request failed ## Response 403 fields (application/json): - `code` (string, required) The http error code Example: "404" - `details` (object) Additional details about the error - `message` (string, required) The reason the request failed ## Response 404 fields (application/json): - `code` (string, required) The http error code Example: "404" - `details` (object) Additional details about the error - `message` (string, required) The reason the request failed ## Response 500 fields (application/json): - `code` (string, required) The http error code Example: "404" - `details` (object) Additional details about the error - `message` (string, required) The reason the request failed