Search for artifacts by content
Returns a paginated list of all artifacts with at least one version that matches the posted content.
Query parameters
Parameter that can be set to true to indicate that the server should "canonicalize" the content when searching for matching artifacts. Canonicalization is unique to each artifact type, but typically involves removing any extra whitespace and formatting the content in a consistent manner. Must be used along with the artifactType query parameter.
Indicates the type of artifact represented by the content being used for the search. This is only needed when using the canonical query parameter, so that the server knows how to canonicalize the content prior to searching for matching artifacts.
The number of artifacts to skip before starting to collect the result set. Defaults to 0.
The number of artifacts to return. Defaults to 20.
Sort order, ascending (asc) or descending (desc).
The field to sort by. Can be one of:
- name
- createdOn
Response
On a successful response, returns a result set of artifacts - one for each artifact in the registry that matches the criteria.
Example response
{
"artifacts": [
{
"groupId": "My-Group",
"id": "Procurement-Invoice",
"name": "Artifact Name",
"description": "Description of the artifact",
"labels": [
"current",
"internal"
],
"type": "AVRO",
"state": "ENABLED",
"createdBy": "user1",
"createdOn": "2019-03-22T12:51:19Z"
}
]
}