Metadata
Get artifact metadata
Gets the metadata for an artifact in the registry, based on the latest version. If the latest version of the artifact is marked as DISABLED, the next available non-disabled version will be used. The returned metadata includes both generated (read-only) and editable metadata (such as name and description).
This operation can fail for the following reasons:
- No artifact with this artifactId exists or all versions are DISABLED (HTTP error 404)
- A server error occurred (HTTP error 500)
get/groups/{groupId}/artifacts/{artifactId}
Response
The artifact's metadata.
Example response
{
"groupId": "My-Group",
"artifactId": "Procurement-Invoice",
"name": "Artifact Name",
"description": "Description of the artifact",
"artifactType": "AVRO",
"owner": "user1",
"createdOn": "2019-03-22T12:51:19Z",
"modifiedBy": "user2",
"modifiedOn": "2019-07-19T15:09:00Z",
"labels": {
"custom-1": "foo",
"custom-2": "bar"
}
}