uipath-cli
latest
false
UiPath CLI user guide
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
Syntax and options for `uip solution delete`, which deletes a Studio Web solution by its ID.
uip solution delete deletes a solution from Studio Web by its solution ID. The ID is emitted by uip solution upload and by flow debug in their output.
This does not uninstall a deployed solution from Orchestrator — use deploy uninstall for that.
Synopsis
uip solution delete <solution-id> -y
uip solution delete <solution-id> -y
Arguments
| Name | Required | Purpose |
|---|---|---|
<solution-id> | yes | The Studio Web solution ID (UUID). |
Options
| Short | Long | Value | Default | Description |
|---|---|---|---|---|
-y | --yes | flag | off | Required. Confirms this irreversible operation — the CLI never prompts. |
Example
uip solution delete a1b2c3d4-0000-0000-0000-000000000001 --yes
uip solution delete a1b2c3d4-0000-0000-0000-000000000001 --yes
Data shape (--output json)
{
"Code": "SolutionDelete",
"Data": {
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001"
}
}
{
"Code": "SolutionDelete",
"Data": {
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001"
}
}
Exit codes
See Exit codes for the shared contract. The command exits 1 if -y, --yes is omitted.
Related commands
uip solution list— find a solution's ID.uip solution upload— the command that creates the solution and emits its ID.uip solution deploy uninstall— remove a deployment from Orchestrator instead.
See also
- Global options and Exit codes — contracts shared by every verb.