uipath-cli
latest
false
- Información general
- Comience ya
- Conceptos
- Using UiPath CLI
- Guías prácticas
- CI/CD recipes
- Referencia de los comandos
- Información general
- Códigos de salida
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Crear proyecto
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migración
- Reference & support
UiPath CLI user guide
Última actualización 7 de may. de 2026
uip codedapp pull downloads project files from a Studio Web project to local disk. Use it to bootstrap local editing of a coded app that was authored in the browser, or to refresh a working copy from the latest server-side state.
Synopsis
uip codedapp pull [options]
uip codedapp pull [options]
Opciones
| Marca | Descripción |
|---|---|
--project-id <id> | WebApp project ID. Reads from project metadata in the working directory if omitted. |
--overwrite | Allow overwriting existing local files. |
--target-dir <dir> | Local directory to write pulled files. |
--verbose | Show detailed progress logs. |
--base-url <url> | UiPath base URL (auth override). |
--org-id <id> | Organization ID (auth override). |
--tenant-id <id> | Tenant ID (auth override). |
--access-token <token> | Access token (auth override). |
Ejemplos
# Pull into ./my-app
uip codedapp pull \
--project-id a1b2c3d4-0000-0000-0000-000000000001 \
--target-dir ./my-app
# Refresh an existing checkout
uip codedapp pull \
--project-id a1b2c3d4-0000-0000-0000-000000000001 \
--target-dir ./my-app \
--overwrite
# Pull into ./my-app
uip codedapp pull \
--project-id a1b2c3d4-0000-0000-0000-000000000001 \
--target-dir ./my-app
# Refresh an existing checkout
uip codedapp pull \
--project-id a1b2c3d4-0000-0000-0000-000000000001 \
--target-dir ./my-app \
--overwrite
Data shape (--output json)
{
"Code": "PullCompleted",
"Data": { "message": "Pull completed successfully." }
}
{
"Code": "PullCompleted",
"Data": { "message": "Pull completed successfully." }
}
Related
- uip codedapp push — ship local edits back once you're done.
- uip codedapp pack — package the working copy for publication.