Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

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

avatar

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.