Bundle Coordinates

A bundle can be downloaded by using the combination of the bucket name and bundle coordinates, where bundle coordinates are the group, artifact, and version of the bundle.

To download a bundle by its coordinates, a GET request can be made to the following end-point:


/nifi-registry-api/extension-repository/{bucketName}/{groupId}/{artifactId}/{version}/content

The Content-Type of the response is application/octet-stream.

An example of using curl to download my-processors-1.0.0.nar from the Test bucket would be the following:


curl http://localhost:18080/nifi-registry-api/extension-repository/Test/com.test/my-processors/1.0.0/content > my-processors-1.0.0.nar