marketplace
latest
false
- リリース ノート
- 概要
- 基本情報
- Marketplace ベンダー
- Marketplace のお客様
- パブリッシング ガイドライン
- すぐに使えるオートメーションのパブリッシング ガイドライン
- ソリューション アクセラレータの公開ガイドライン
- Integration Service コネクタの公開ガイドライン
- Process Mining アプリ テンプレートのパブリッシュ ガイドライン
- セキュリティと IP 保護
- その他の UiPath コンポーネント
- Node-RED
- セットアップ
- Teams
- Microsoft Teams Scope
- Create Team
- Create Team from Group
- Get Team
- Get Teams
- Channels
- チャンネルを作成
- Delete Channel
- Get Channel
- Get Channels
- Update Channel
- Chats
- Get Chat
- Get Chats
- Get Chat Members
- Messages
- メッセージを取得
- メッセージを取得
- Get Message Replies
- メッセージに返信
- メッセージを送信
- イベント
- イベント/予定を作成
- イベント/予定を削除
- Get Event
- Get Events
- ユーザー
- Get User Presence
- 動作のしくみ
- テクニカル リファレンス
- はじめに
- 概要
- セットアップ
- テクニカル リファレンス
- Azure Form Recognizer Scope
- Activities (アクティビティ)
- Analyze Form
- Analyze Form Async
- Get Analyze Form Result
- Analyze Receipt
- Analyze Receipt Async
- Get Analyze Receipt Result
- Analyze Layout
- Analyze Layout Async
- Get Analyze Layout Result
- Train Model
- Get Models
- モデル キーを取得する
- Get Model Info
- モデルを削除
- コネクタ
- 概要
- 認証 - Cloud Orchestrator
- 認証 - オンプレミスの Orchestrator
- 認証 - On-premise Orchestrator とフォルダー
- ジョブを開始 - All
- ジョブを開始 - Specific
- ジョブを開始 - Jobs Count
- 参照
- How to Create Activities
- 連携の独自開発
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

Marketplace ユーザー ガイド
最終更新日時 2026年4月1日
認証 - On-premise Orchestrator とフォルダー
Before reviewing the example, it's recommended that you first read the How to Authenticate tutorial.
以下に、ユーザーがインスタンスの種類として On-premise Orchestrator を選択し、フォルダーの値を入力したときの認証操作の例を示します。
動作のしくみ
The following steps and image is an example of how the connector works from design time (that is, user inputs) to run time (that is, sending the HTTP request).
- 接続先の接続の種類を選択します。
- この選択により、コネクタが要求を送信する Orchestrator API のエンドポイントが決定します。
- In this example, On-premise is selected; indicating the endpoint to use is
https://{{orchestrator-url}}/api/Account/Authenticate.
- [接続名] を入力します。
- この名前はアプリケーション内で接続を特定するために使用されます。
- A connector can have multiple connections to the same or different Orchestrator tenant. Each connection requires its own connection settings and may include the same or different credentials (that is, Username and Password). Adding multiple connections to the same tenant is useful if you plan to have multiple users that want to manage their own connections.
- [UiPath Orchestrator URL] と [テナント名] に値を入力します。
- [メール アドレス] または [ユーザー名] と [パスワード] のフィールドに値を入力します。
- 完全修飾フォルダー名を入力します。
- [接続] をクリックします。
-
Using the Folder input, the connector configures and sends the following requests to validate the user has access to the folder:
- GET
https://{{orchestrator-url}}/odata/Folders?$filter=FullyQualifiedName eq ‘{{FolderName}}’- Orchestrator API がフォルダー
Idで応答します。
- Orchestrator API がフォルダー
- GET
https://{{orchestrator-url}}/Users/Users_GetCurrentUser- Orchestrator API がユーザー
Idで応答します。
- Orchestrator API がユーザー
- GET
https://{{orchestrator-url}}/Folders/UiPath.Server.Configuration.OData.GetUsersForFolder(key=’{{folder_Id}}’,includeInherited=true)?$filter=Id eq {{user_Id}- Orchestrator API が
odata.count(ユーザーに権限がない場合、この値は 0) およびユーザー情報で応答します。
- Orchestrator API が
- ユーザーの権限を確認した後、コネクタは入力された内容で要求を構成し、
https://{{orchestrator-url}}/api/Account/Authenticate に送信します。
- GET
-
後続のすべての API 要求に使用する
access_tokenで、Orchestrator API が応答します。
-