uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Syntax and options for `uip is webhooks`, which retrieves the webhook URL for a connector trigger that uses webhook event mode.
uip is webhooks manages webhook configuration for connector triggers that fire via a registered webhook URL instead of polling. Not every trigger uses webhook event mode — check eventMode on uip is triggers describe first; this command is only useful when eventMode is webhooks.
概要
uip is webhooks config <connector-key> --connection-id <id> --element-instance-id <id> [options]
uip is webhooks config <connector-key> --connection-id <id> --element-instance-id <id> [options]
動詞
| 動詞 | 目的 |
|---|---|
config | Get the webhook URL for a connector trigger, for one connection and element instance. |
uip is webhooks config
Get the webhook URL to register with the external service so a webhook-mode trigger can fire.
引数
| 名前 | Required | 目的 |
|---|---|---|
<connector-key> | ○ | コネクタ キー (例: uipath-salesforce-slack |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --connection-id | id | — | Required. Connection UUID. Find it with uip is connections list. |
| — | --element-instance-id | id | — | Required. Numeric element instance ID. Find it in the ElementInstanceId field from uip is connections list --output json. |
例
uip is webhooks config uipath-salesforce-slack \
--connection-id "28e2de45-24d9-4365-9a66-ae122055b634" \
--element-instance-id 333846
uip is webhooks config uipath-salesforce-slack \
--connection-id "28e2de45-24d9-4365-9a66-ae122055b634" \
--element-instance-id 333846
データシェイプ(--output json)
{
"Code": "WebhookConfig",
"Data": {
"WebhookUrl": "https://cloud.uipath.com/elements_/scaleunit_/.../v1/webhooks/connectors/uipath-salesforce-slack/events/TM3APD0SH",
"ConnectorKey": "uipath-salesforce-slack",
"ConnectionId": "28e2de45-24d9-4365-9a66-ae122055b634",
"ElementInstanceId": 333846
}
}
{
"Code": "WebhookConfig",
"Data": {
"WebhookUrl": "https://cloud.uipath.com/elements_/scaleunit_/.../v1/webhooks/connectors/uipath-salesforce-slack/events/TM3APD0SH",
"ConnectorKey": "uipath-salesforce-slack",
"ConnectionId": "28e2de45-24d9-4365-9a66-ae122055b634",
"ElementInstanceId": 333846
}
}
The response also carries a Hint reminding you that the trigger will not fire until WebhookUrl is registered in the external service's own app settings — this command only reads the URL, it does not register it anywhere.
Failure behavior
--element-instance-idthat doesn't parse as a number:Failure, checked client-side before any network call, withInstructionspointing at theElementInstanceIdfield onconnections list.
関連
uip is triggers—describe'seventModetells you whether a trigger needs a webhook at all.uip is connections— source of--connection-idand--element-instance-id.