Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Can I get a simple complete rest client code with spring to get the nifi processor info ?

avatar
New Member

I am new to nifi and want to learn it.

1 ACCEPTED SOLUTION

avatar

If you compile NiFi you can retrieve a swagger definition from:

./nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/target/swagger-ui/swagger.json

You could then combine this with your preferred language codegen to produce a full Rest API client.

You can also use the one I maintain in Python at https://github.com/Chaffelson/nipyapi

I have already written wrapper functions to retrieve processor information.

View solution in original post

1 REPLY 1

avatar

If you compile NiFi you can retrieve a swagger definition from:

./nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/target/swagger-ui/swagger.json

You could then combine this with your preferred language codegen to produce a full Rest API client.

You can also use the one I maintain in Python at https://github.com/Chaffelson/nipyapi

I have already written wrapper functions to retrieve processor information.