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 admin smtp`, which manages the organization's outbound SMTP email configuration.
uip admin smtp reads, updates, deletes, and tests the organization's outbound SMTP email configuration — the mail server UiPath uses to send notifications, invitations, and alerts.
Synthèse
uip admin smtp get
uip admin smtp update [--host <host>] [--port <port>] [--username <username>] [--password <password>] [--domain <domain>] [--enable-ssl true|false] [--use-default-credentials true|false] [--from-address <email>] [--from-display-name <name>] [--connection-timeout <ms>]
uip admin smtp delete
uip admin smtp test --recipient <email> [same options as update]
uip admin smtp get
uip admin smtp update [--host <host>] [--port <port>] [--username <username>] [--password <password>] [--domain <domain>] [--enable-ssl true|false] [--use-default-credentials true|false] [--from-address <email>] [--from-display-name <name>] [--connection-timeout <ms>]
uip admin smtp delete
uip admin smtp test --recipient <email> [same options as update]
Concepts
- Settings are stored as individual key/value pairs (
Email.Smtp.Host,Email.Smtp.Port, etc.) under the hood, but the CLI presents them as one flat settings object. - The password is write-only.
smtp getnever returns it — the server returns SMTP settings with the password masked, so reading it back and re-sending it on update would silently corrupt the real value.smtp updateonly writes the password when you explicitly pass--password. updatemerges, it doesn't replace. It reads the existing settings, overlays the fields you passed, and writes the union back — because the server requires related keys (host, port, from-address) to be present together in one request. Passing no fields at all fails client-side ("No SMTP fields to update").--portand--connection-timeoutare range-validated client-side — port must be an integer 1–65535; connection timeout must be an integer 1–300000 (milliseconds). An out-of-range value fails before any network call.testcan validate a config without saving it. Pass SMTP options directly totestto try them without persisting; omit them to test the already-saved configuration. If you pass any custom SMTP option but not--password, and--use-default-credentialsisn'ttrue, the command fails client-side — the saved password is encrypted server-side and can't be reused in an ad hoc test. When you do pass partial custom options, they're merged onto the saved config (e.g.--hostalone still uses the savedfrom-address).
uip admin smtp get
Get current SMTP settings for the organization. Password values are never returned.
Exemple
uip admin smtp get
uip admin smtp get
Format des données (--sortie json)
{
"Code": "SmtpSettings",
"Data": {
"host": "smtp.example.com",
"port": "587",
"userName": "noreply@example.com",
"enableSsl": "True",
"fromAddress": "noreply@example.com",
"fromDisplayName": "UiPath Platform"
}
}
{
"Code": "SmtpSettings",
"Data": {
"host": "smtp.example.com",
"port": "587",
"userName": "noreply@example.com",
"enableSsl": "True",
"fromAddress": "noreply@example.com",
"fromDisplayName": "UiPath Platform"
}
}
uip admin smtp update
Update SMTP settings. Only the fields you pass change; everything else is preserved from the existing configuration.
Options
| Long | Valeur (Value) | Description |
|---|---|---|
--host <host> | string | SMTP server hostname. |
--port <port> | integer 1–65535 | SMTP server port. |
--username <username> | string | SMTP authentication username. |
--password <password> | string | SMTP authentication password. Write-only (never read back). |
--domain <domain> | string | SMTP authentication domain. |
--enable-ssl <value> | true|false | Enable SSL/TLS. |
--use-default-credentials <value> | true|false | Use Windows default credentials instead of username/password. |
--from-address <email> | Sender email address. | |
--from-display-name <name> | string | Sender display name. |
--connection-timeout <ms> | integer 1–300000 | Connection timeout in milliseconds. |
At least one option is required.
Exemples
uip admin smtp update --host smtp.example.com --port 587
uip admin smtp update --host smtp.example.com --port 587
uip admin smtp update --host smtp.example.com --port 587 --username user@example.com \
--password secret --from-address noreply@example.com --enable-ssl true
uip admin smtp update --host smtp.example.com --port 587 --username user@example.com \
--password secret --from-address noreply@example.com --enable-ssl true
Format des données (--sortie json)
{ "Code": "SmtpSettingsUpdated", "Data": { "host": "smtp.example.com", "port": "587", "...": "same shape as smtp get" } }
{ "Code": "SmtpSettingsUpdated", "Data": { "host": "smtp.example.com", "port": "587", "...": "same shape as smtp get" } }
uip admin smtp delete
Delete all SMTP settings for the organization — removes the entire email configuration.
Exemple
uip admin smtp delete
uip admin smtp delete
Format des données (--sortie json)
{ "Code": "SmtpSettingsDeleted", "Data": { "Status": "Deleted successfully" } }
{ "Code": "SmtpSettingsDeleted", "Data": { "Status": "Deleted successfully" } }
uip admin smtp test
Send a test email using the current saved settings, or a set of settings passed inline without saving them.
Options
| Long | Valeur (Value) | Requis | Description |
|---|---|---|---|
--recipient <email> | oui | Address to send the test email to. | |
...same as update | non | Optional — pass any subset to test custom settings without saving. --password is required alongside a custom config unless --use-default-credentials true. |
Exemples
# Test the saved configuration
uip admin smtp test --recipient admin@example.com
# Test the saved configuration
uip admin smtp test --recipient admin@example.com
# Test a custom configuration without saving it
uip admin smtp test --recipient admin@example.com --host smtp.example.com --port 587 \
--username user@example.com --password secret
# Test a custom configuration without saving it
uip admin smtp test --recipient admin@example.com --host smtp.example.com --port 587 \
--username user@example.com --password secret
Format des données (--sortie json)
{ "Code": "SmtpTestSent", "Data": { "Recipient": "admin@example.com", "Status": "Test email sent successfully" } }
{ "Code": "SmtpTestSent", "Data": { "Recipient": "admin@example.com", "Status": "Test email sent successfully" } }
Associé
uip admin users— directory users and groups.uip admin robot-accounts/pat/scopes— non-human identities and tokens.uip admin external-apps— OAuth2 client registrations.
Voir également
- Synthèse
- Concepts
- uip admin smtp get
- Exemple
- Format des données (--sortie json)
- uip admin smtp update
- Options
- Exemples
- Format des données (--sortie json)
- uip admin smtp delete
- Exemple
- Format des données (--sortie json)
- uip admin smtp test
- Options
- Exemples
- Format des données (--sortie json)
- Associé
- Voir également