Metadata
Get artifact version metadata
Retrieves the metadata for a single version of the artifact. The version metadata is a subset of the artifact metadata and only includes the metadata that is specific to the version (for example, this doesn't include modifiedOn).
This operation can fail for the following reasons:
- No artifact with this artifactId exists (HTTP error 404)
- No version with this version exists (HTTP error 404)
- A server error occurred (HTTP error 500)
get/groups/{groupId}/artifacts/{artifactId}/versions/{versionExpression}
Response
The artifact version's metadata.
Example response
{
"groupId": "My-Group",
"artifactId": "my-artifact-id",
"version": 1221432,
"artifactType": "PROTOBUF",
"name": "Artifact Name",
"description": "The description of the artifact",
"owner": "user1",
"createdOn": "2019-05-17T12:00:00Z",
"globalId": 183282932983,
"contentId": 12347,
"labels": {
"custom-1": "foo",
"custom-2": "bar"
}
}