- 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 feedback send`, which files a bug report or improvement suggestion directly from the CLI.
uip feedback sends bug reports and improvement suggestions to the UiPath team without leaving the terminal. It has a single subcommand, send.
Synthèse
uip feedback send --type <bug|improvement> --title <text> (--description <text> | --description-file <path> | stdin) [--priority <priority>] [--email <email>] [--attachment <paths...>] [--slack-thread <url>]
uip feedback send --type <bug|improvement> --title <text> (--description <text> | --description-file <path> | stdin) [--priority <priority>] [--email <email>] [--attachment <paths...>] [--slack-thread <url>]
All uip feedback verbs honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip feedback send
File a bug report or improvement suggestion. Provide the description body through exactly one of --description, --description-file, or piped stdin.
Options
| Drapeau | Description |
|---|---|
--type <type> | Requis. bug ou improvement. |
--title <title> | Required. Issue title / summary. |
--description <text> | Description or steps to reproduce. Single-line safe. Mutually exclusive with --description-file. |
--description-file <path> | Read the description from a file. Use this for large, multi-line markdown bodies — required on Windows PowerShell, where inlining a multi-line --description value gets mangled by the shell. Mutually exclusive with --description. |
--priority <priority> | critical, normal, or minor. Defaults to normal. |
--email <email> | Contact email. Defaults to the email on the active login session, if any. |
--attachment <paths...> | One or more files to attach (space-separated). Maximum 10 files, 10MB each; both limits are validated before the issue is created. |
--slack-thread <url> | Link to a related Slack discussion, included in the ticket. Must be a valid http/https URL. |
If none of --description, --description-file, or piped stdin supplies a body, the command fails with ValidationError. A description longer than roughly 32 KB is rejected client-side before anything is sent.
When stdout is a TTY, send shows an interactive review/edit prompt for the draft (including a chance to attach a Slack thread link) before submitting — pass all relevant flags in a CI context to avoid this prompt hanging the job (see Scripting patterns — suppressing interactive prompts).
Exemples
uip feedback send \
--type bug \
--title "Crash on login" \
--description "Happens every time with --interactive"
uip feedback send \
--type bug \
--title "Crash on login" \
--description "Happens every time with --interactive"
# Large multi-line body — required approach on Windows PowerShell
uip feedback send \
--type bug \
--title "[RPA] Crash on run" \
--description-file ./feedback-body.md
# Large multi-line body — required approach on Windows PowerShell
uip feedback send \
--type bug \
--title "[RPA] Crash on run" \
--description-file ./feedback-body.md
# Non-interactive CI usage
uip feedback send \
--type improvement \
--title "Add --dry-run to uip or jobs start" \
--description-file ./suggestion.md \
--priority minor \
--email ci-bot@example.com
# Non-interactive CI usage
uip feedback send \
--type improvement \
--title "Add --dry-run to uip or jobs start" \
--description-file ./suggestion.md \
--priority minor \
--email ci-bot@example.com
Format des données (--sortie json)
{
"Code": "FeedbackSent",
"Data": {
"IssueKey": "UIP-12345",
"IssueUrl": "https://uipath.atlassian.net/browse/UIP-12345",
"Type": "bug",
"Title": "Crash on login"
}
}
{
"Code": "FeedbackSent",
"Data": {
"IssueKey": "UIP-12345",
"IssueUrl": "https://uipath.atlassian.net/browse/UIP-12345",
"Type": "bug",
"Title": "Crash on login"
}
}
When --slack-thread or --attachment was passed, the response also includes SlackThread and/or AttachmentsUploaded (formatted as "<uploaded>/<total>" — an attachment upload failure is non-fatal and doesn't block the issue from being filed).
Associé
- Scripting patterns — running
uipcommands non-interactively in CI.