- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Using UiPath CLI
- Guides pratiques
- CI/CD recipes
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- créer-projet
- 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
- Migration
- Reference & support
UiPath CLI user guide
Manage Orchestrator webhooks — HTTP callbacks fired on platform events (job completion, queue-item failure, and so on). Webhooks are tenant-scoped.
For the cross-resource conventions (auth, key types, output envelope), see the uip resource overview.
Synopsis
uip resource webhooks list [-n <name>] [--enabled | --disabled]
uip resource webhooks get <webhook-key>
uip resource webhooks create --name <n> --url <url> [-d <desc>] [--events <list>] [--secret <s>] [--allow-insecure-ssl]
uip resource webhooks update <webhook-key> [flags as for create]
uip resource webhooks delete <webhook-key>
uip resource webhooks ping <webhook-key>
uip resource webhooks event-types
uip resource webhooks list [-n <name>] [--enabled | --disabled]
uip resource webhooks get <webhook-key>
uip resource webhooks create --name <n> --url <url> [-d <desc>] [--events <list>] [--secret <s>] [--allow-insecure-ssl]
uip resource webhooks update <webhook-key> [flags as for create]
uip resource webhooks delete <webhook-key>
uip resource webhooks ping <webhook-key>
uip resource webhooks event-types
list
List webhooks. Filters: -n, --name, --enabled, --disabled (mutually exclusive).
get
Get webhook details by key, including subscribed events and SSL settings.
create
Create a webhook. Required --name, --url. Optional -d, --description, --events <comma-list> (omit to subscribe to all event types), --secret, --allow-insecure-ssl.
uip resource webhooks create --name JobAlerts \
--url https://hooks.example.com/uipath \
--events "job.completed,job.faulted"
uip resource webhooks create --name JobAlerts \
--url https://hooks.example.com/uipath \
--events "job.completed,job.faulted"
Mettre à jour
Update by key. Providing --events switches the webhook from subscribe-to-all to the given list.
Supprimer (Delete)
Delete a webhook by key.
ping
Send a test ping to the webhook URL to verify connectivity.
event-types
List every event type a webhook can subscribe to. Use the returned names with create --events or update --events.
uip resource webhooks event-types
uip resource webhooks event-types
Voir également
uip resourceoverview — shared conventions for everyuip resourceverb.- How-to: manage Orchestrator assets and queues — webhook creation patterns.