- 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
Syntax and options for `uip maestro case cases get` and `uip maestro case stages get`, which read the case-definition and stage structure of a local case management JSON file.
uip maestro case cases reads the root metadata of a local case management definition file (name, case identifier, whether the case app is enabled). uip maestro case stages reads a stage/exception-stage/trigger node inside that same file — the phases a case moves through. See uip maestro case for the file format and the rest of the subsystem.
Synthèse
uip maestro case cases get <file>
uip maestro case stages get <file> <stage-id>
uip maestro case cases get <file>
uip maestro case stages get <file> <stage-id>
uip maestro case cases get
Show root metadata from an existing case management JSON file. Read-only, no options beyond the file argument.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<file> | oui | Path to the case management JSON file to read. |
Exemple
uip maestro case cases get invoice-review.json
uip maestro case cases get invoice-review.json
Format des données (--sortie json)
{
"Code": "CaseRetrieved",
"Data": {
"File": "invoice-review.json",
"Id": "root",
"Name": "Invoice Review",
"CaseIdentifier": "Invoice Review",
"CaseIdentifierType": "constant",
"CaseAppEnabled": false,
"Version": "20.0.0",
"PublishVersion": 2,
"Description": null
}
}
{
"Code": "CaseRetrieved",
"Data": {
"File": "invoice-review.json",
"Id": "root",
"Name": "Invoice Review",
"CaseIdentifier": "Invoice Review",
"CaseIdentifierType": "constant",
"CaseAppEnabled": false,
"Version": "20.0.0",
"PublishVersion": 2,
"Description": null
}
}
PublishVersion reflects how many times this definition has been published; absent/null if it never has.
uip maestro case stages get
Print a stage (or exception stage, or trigger) node plus every edge connected to it. Read-only.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<file> | oui | Path to the case management JSON file. |
<stage-id> | oui | ID of the stage node to retrieve. |
Exemple
uip maestro case stages get case.json Stage_a1b2c3d4
uip maestro case stages get case.json Stage_a1b2c3d4
Format des données (--sortie json)
{
"Code": "StageFound",
"Data": {
"Stage": {
"id": "Stage_a1b2c3d4",
"type": "case-management:Stage",
"data": { "label": "Review" }
},
"ConnectedEdges": []
}
}
{
"Code": "StageFound",
"Data": {
"Stage": {
"id": "Stage_a1b2c3d4",
"type": "case-management:Stage",
"data": { "label": "Review" }
},
"ConnectedEdges": []
}
}
Stage is the raw node object as stored on disk (shape varies by type). ConnectedEdges lists every edge in the file whose source or target is this stage ID — see uip maestro case triggers for the edge/connection commands.
To add, relabel, move, or remove a stage, edit caseplan.json's node array directly, then run uip maestro case validate <file>. See the uipath-maestro-case skill (references/plugins/) for the exact stage/exception-stage/trigger JSON shapes, including the auto-generated Stage_<random> ID convention and left-to-right canvas positioning.
Associé
uip maestro case— subsystem overview, file format,init/pack/debug/validate/spec.uip maestro case triggers— edges connecting stages, and case-level triggers.uip maestro case tasks— tasks that live inside a stage.