How i will connect uiPath apps with the uipath meastro

I am currently working with UiPath Maestro in Automation Cloud and would like to integrate it with UiPath Apps. My goal is to build a form in UiPath Apps where users can enter details such as product name, description, website, upload files, and email address. After the user submits the form, I want the data to trigger a Maestro process, which will call an AI agent and generate the required output. The generated content should then be displayed back in the UiPath App so the user can review, edit, and approve it before the process continues.

Could anyone guide me on the correct way to connect UiPath Apps with Maestro? Are there any official tutorials, documentation, or sample projects that demonstrate this integration? Any help or best practices would be greatly appreciated. Thank you!

Whats making you think you need Maestro here? Is there complex business logic or you just need the agent?

Thanks for your response, Jon.

I’m trying to learn how UiPath Apps and Maestro work together. My idea is that when the process starts in Maestro, it should first open a form for the user to enter the required details. Those details should then be passed to the AI agent, and the process should continue with the agent’s output.

I’m trying to understand whether this is possible with UiPath Apps and Maestro, and what the recommended way to implement this flow would be.

Thats a different flow than you described though.

You originally said

User > Opens App > Triggers Maestro > Triggers Agent> Goes Back to Maetro > Goes back to app.

I was saying why do you want to use Maestro in this scenario.

Its fits now

? Something Triggers Maestro> Creates Human in the Loop task > Triggers Agent > Business process continues with RPA etc thats quite different.

You’re right, Jon. I didn’t explain my flow clearly in the original post.

What I actually want is:
Maestro starts → opens a form for the user to enter details → the submitted data is sent to the AI agent → the process continues based on the agent’s output.

I’m trying to understand the best way to implement this flow, especially how to present the form to the user at the start of the Maestro process and then pass the submitted data to the agent.

Thanks for pointing that out!

Hi @Md_Faiyaz,

You can achieve the solution this way:

  • Start the Maestro process.
  • Maestro process opens up a UiPath App form (Action App) via an Action assigned to the user where the user enters all the details.
  • When the form is submitted, Maestro receives the input and passes it to the AI Agent.
  • The AI Agent generates the output and returns the results to another Action App or an Escalation App.
  • Maestro pauses for human review by presenting the generated content back to the user in UiPath Apps (Action App). The user can edit, approve, or reject the content.
  • Once the user approves, Maestro resumes and ends the process.

Cheers!