- Einleitung
- Erste Schritte mit UiPath Agents
- Erste Schritte mit UiPath Agents mit LangGraph
- Erstellen eines Low-Code-Agents in Studio Web
- Hinzufügen von Tools zu Ihrem UiPath Agent
- Getting Started with UiPath Maestro Flow
Run the deployed Price Watch Flow in Orchestrator, review the job trace, and clean up the resources created in this tutorial.
Step 6 - Running the Flow with Orchestrator
Follow these steps to start an instance of the deployed Flow as a job, watch it complete, and then verify the output:
-
Use the
Start jobbutton for ourtutorial-maestro-flow-price-watchdeployment. -
Use
Startbutton to start the job - the input values will already be set to the default values ofUSD,EUR, and0.9. -
Verify the output values for
watchResultwhen "✅ Successful" shows the job has completed. -
Open the
Tracetab to view each of the steps and the time each step took to execute.
Congratulations! You've completed your first Maestro Flow by building, testing, deploying, and then running it! Before you close this page, make sure to follow the last step to clean up the resources we deployed in this tutorial.
Step 7 - Cleaning up the resources
The resources that we created for the tutorial-maestro-flow-price-watch deployment that need to be cleaned up are:
- The Automations Process the deployment created
- The deployment
- The published package
- The two folders under
Shared(one for the deployed version, the second created when executing the Flow with Debug)
A deployment into a Shared folder is fully managed from the CLI, and we use CLI commands from the terminal in VS Code to clean up items 1, 3, and 4. To remove the deployment (item 2), we will use Orchestrator in your UiPath Cloud account. To remove all the resources, follow the following steps:
-
Run the command below to uninstall the deployment - this deactivates the deployment, and removes the Automation Process and the folder it was deployed to.
uip solution deploy uninstall tutorial-maestro-flow-price-watch --yesuip solution deploy uninstall tutorial-maestro-flow-price-watch --yesThe result should be similar to:
{ "Result": "Success", "Code": "SolutionDeployUninstall", "Data": { "Status": "SuccessfulUninstall", "DeploymentName": "tutorial-maestro-flow-price-watch", "InstanceId": "abcdef12-3456-7890-abcd-ef1234567890_v7" } }{ "Result": "Success", "Code": "SolutionDeployUninstall", "Data": { "Status": "SuccessfulUninstall", "DeploymentName": "tutorial-maestro-flow-price-watch", "InstanceId": "abcdef12-3456-7890-abcd-ef1234567890_v7" } } -
Run the command below to delete the published package:
uip solution packages delete tutorial-maestro-flow-price-watch 1.0.0 --yesuip solution packages delete tutorial-maestro-flow-price-watch 1.0.0 --yesThe result should be similar to:
{ "Result": "Success", "Code": "SolutionPackagesDelete", "Data": { "PackageName": "tutorial-maestro-flow-price-watch", "PackageVersion": "1.0.0" } }{ "Result": "Success", "Code": "SolutionPackagesDelete", "Data": { "PackageName": "tutorial-maestro-flow-price-watch", "PackageVersion": "1.0.0" } } -
Retrieve the
Keyof the folder you deployed to with:uip or folders list --limit 200 --output-filter "[?contains(Path, 'Debug_tutorial-maestro-flow-price-watch')]"uip or folders list --limit 200 --output-filter "[?contains(Path, 'Debug_tutorial-maestro-flow-price-watch')]"The result should be similar to:
{ "Result": "Success", "Code": "FolderList", "Pagination": { "Returned": 3, "Limit": 200, "Offset": 0, "HasMore": false }, "Data": [ { "Key": "aaaaaaaa-bbbb-cccc-dddd-1234567890ab", "Name": "Debug_tutorial-maestro-flow-price-watch", "Path": "Shared/Debug_tutorial-maestro-flow-price-watch", "Description": "", "Type": "DebugSolution", "ParentKey": "11111111-2222-3333-4444-abcdef123457" } ] }{ "Result": "Success", "Code": "FolderList", "Pagination": { "Returned": 3, "Limit": 200, "Offset": 0, "HasMore": false }, "Data": [ { "Key": "aaaaaaaa-bbbb-cccc-dddd-1234567890ab", "Name": "Debug_tutorial-maestro-flow-price-watch", "Path": "Shared/Debug_tutorial-maestro-flow-price-watch", "Description": "", "Type": "DebugSolution", "ParentKey": "11111111-2222-3333-4444-abcdef123457" } ] } -
Delete the folder using the value from the
Keyfield above (replaceaaaaaaaa-bbbb-cccc-dddd-1234567890abwith your value).uip or folders delete aaaaaaaa-bbbb-cccc-dddd-1234567890ab --yesuip or folders delete aaaaaaaa-bbbb-cccc-dddd-1234567890ab --yesThe response should look similar to:
{ "Result": "Success", "Code": "FolderDelete", "Data": { "Key": "aaaaaaaa-bbbb-cccc-dddd-1234567890ab", "Path": "<your email>'s workspace/Debug_tutorial-maestro-flow-price-watch", "Status": "Deleted successfully" } }{ "Result": "Success", "Code": "FolderDelete", "Data": { "Key": "aaaaaaaa-bbbb-cccc-dddd-1234567890ab", "Path": "<your email>'s workspace/Debug_tutorial-maestro-flow-price-watch", "Status": "Deleted successfully" } } -
In your UiPath Cloud tenant, navigate to Orchestrator, select the
Solutionstab. -
Open the context menu for the inactive
tutorial-maestro-flow-price-watchdeployment and use theDeleteoption to delete it.
Congratulations! You've now completed this tutorial, and cleaned up all the resources created as part of it. Below are links to additional tutorials and content for you to continue building on UiPath.
Wie geht es weiter?
- Getting Started with UiPath Agents - build a low-code agent from the CLI, the component an Agent node drops into a flow.
- Adding Tools to Your UiPath Agent - configure an HTTP request against a public API from the API Workflow side, and compare it with the HTTP Request node in this flow.
- Building a Low-Code Agent in Studio Web - the same agent contract, built on the browser canvas in 20 minutes.
- Getting Started with UiPath Agents using LangGraph - move from configured components to coded ones with the Python software development kit (SDK).
- Flow in VS Code - the full extension reference, including keyboard shortcuts and settings.
- UiPath Community – Foren, Anleitungen und Entwicklerdiskussionen.