UiPath Documentation
uipath-cli
latest
false
UiPath CLI user guide

uip codedapp deploy

Syntax and options for `uip codedapp deploy`, which deploys or upgrades a published Coded Web App in UiPath.

uip codedapp deploy deploys or upgrades a published app in UiPath. It targets the latest published version by default; pass --version to pin a specific build. Use --folder-key to pick the destination folder when the deployment is folder-scoped.

Synopsis

uip codedapp deploy [options]
uip codedapp deploy [options]

Options

FlagDescription
-n, --name <name>App name.
--display-name <name>Human-readable app title shown in UiPath. Defaults to --name as typed.
--path-name <name>App pathname in the URL (https://<org>.uipath.host/<path-name>).
--client-id <id>OAuth client ID override (non-confidential/public client).
-v, --version <version>Target a specific published version. Defaults to the latest published version.
--tags <tags>Comma-separated categorization labels for the deployed app, e.g. governance,insights.
--base-url <url>UiPath base URL (auth override).
--org-id <id>Organization ID (auth override).
--org-name <name>Organization name (auth override).
--tenant-id <id>Tenant ID (auth override).
--folder-key <key>Folder key to deploy into.
--access-token <token>Access token (auth override).

Examples

# Deploy / upgrade to the latest published version
uip codedapp deploy --name "MyApp"

# Pin a specific version
uip codedapp deploy --name "MyApp" --version "1.0.0"

# Deploy into a folder
uip codedapp deploy --name "MyApp" \
    --folder-key f0f0f0f0-0000-0000-0000-000000000001

# Separate display title, a custom OAuth client, and system tags
uip codedapp deploy --name "my-app" --display-name "My App" \
    --client-id "my-oauth-client-id" --tags governance
# Deploy / upgrade to the latest published version
uip codedapp deploy --name "MyApp"

# Pin a specific version
uip codedapp deploy --name "MyApp" --version "1.0.0"

# Deploy into a folder
uip codedapp deploy --name "MyApp" \
    --folder-key f0f0f0f0-0000-0000-0000-000000000001

# Separate display title, a custom OAuth client, and system tags
uip codedapp deploy --name "my-app" --display-name "My App" \
    --client-id "my-oauth-client-id" --tags governance

Data shape (--output json)

{
  "Code": "DeployCompleted",
  "Data": { "message": "App deployed successfully." }
}
{
  "Code": "DeployCompleted",
  "Data": { "message": "App deployed successfully." }
}

See also

  • Synopsis
  • Options
  • Examples
  • Data shape (--output json)
  • Related
  • See also

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated