Hello Team,
is there a way we can trigger or run the RPA workflow from the postman or using API call.
yes, you can achive this in nodered by creating a endpoint node connected to rpa node
The “official” way is to run an agent that exposes a REST interface and call OpenRPA. What most people do is they spin up a Node-RED instance and use HTTP in/HTTP response with the RPA node. This way, you can control WHO can call the REST endpoint using roles on the Node-RED.
But you always have the option of writing a little code in any of the 11 supported languages and running it as a package on an agent that then exposes a REST endpoint.
We are working hard on adding Function as a Service to OpenCore. Hopefully, a beta version will start “leaking” out within a month. Using that, you don’t need to “start an agent” that consumes memory all the time, but can simply publish a function that only uses CPU/RAM when you call it. And for those reading a long, these function will also be exposed using MCP so they can be used as tools from any LLM.