uipath-cli
latest
false
Guide de l'utilisateur de UiPath CLI
- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Important :
Ce contenu a été traduit à l'aide d'une traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.
Syntax and options for `uip api-workflow init`, which scaffolds a new API Workflow project with boilerplate files.
uip api-workflow init scaffolds a new API Workflow project: project.uiproj, entry-points.json, bindings_v2.json, and a minimal Workflow.json with a single pass-through step that maps declared input defaults, then the caller's actual input, into $input. When run inside a solution directory, the new project is auto-registered in the surrounding solution's .uipx file.
Synthèse
uip api-workflow init <name> [options]
uip api-workflow init <name> [options]
<name>— API Workflow project name. Letters, numbers, spaces, underscores (_), and hyphens (-) only; also used as the target directory name.
Options
| Drapeau | Description |
|---|---|
--force | Initialize even if the target directory is not empty. Writes files without clearing existing contents — it does not delete anything already there. |
--skip-solution-registration | Do not auto-register this project in the surrounding solution. |
Exemples
# Create a new API Workflow project
uip api-workflow init my-api-workflow
# Create a new API Workflow project
uip api-workflow init my-api-workflow
# Initialize into a non-empty directory
uip api-workflow init my-api-workflow --force
# Initialize into a non-empty directory
uip api-workflow init my-api-workflow --force
Format des données (--sortie json)
{
"Code": "ApiWorkflowInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-api-workflow",
"SolutionRegistration": {
"Registered": true
}
}
}
{
"Code": "ApiWorkflowInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-api-workflow",
"SolutionRegistration": {
"Registered": true
}
}
}
SolutionRegistration reflects whether the project was linked into a parent solution's .uipx. When the registration flow needs the user to take a manual step (for example, no parent solution was found), the response adds a NextSteps field with instructions.
Associé
- uip api-workflow build — compile the project this command scaffolds.
- uip api-workflow validate — validate the workflow JSON before packaging.