I'm trying to programmatically create a NiFi flow using the NiFi api. I'm creating a remote process group in an inner flow.
The RPG request payload requires the target uri of the remote process group. Is there a way to get that uri programmatically via the api?
Thanks in advance
NiFi Rest API docs are here:
Specifically, a
GETon/remote-process-groups/{id}returns a RemoteProcessGroupEntity which contains the RPG info including URI.If you are using Python, consider NiPyAPI for programmatically interacting with the NiFi API.