maestro
latest
false
- はじめに
- 基本情報
- BPMN を使用したプロセス モデリング
- ケース管理を使用したプロセス モデリング
- Process modeling with Flow
- 基本情報
- 中心となる概念
- Node reference
- Build guides
- ベスト プラクティス
- 参照
- プロセスの実装
- プロセスの操作
- プロセスの監視
- プロセスの最適化
- 参考情報
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Maestro ユーザー ガイド
Invokes a UiPath Studio Web API workflow and returns its output.
When to use API Workflow vs HTTP Request
Use the API Workflow node when the logic you need to call is built in Studio Web and published as an API workflow — for example, structured data processing or multi-step integrations authored by your team. Use the HTTP Request node when you are calling any external Representational State Transfer (REST) endpoint outside the UiPath Platform.
構成
| フィールド | Required | 説明 |
|---|---|---|
| API ワークフロー | はい | The Studio Web API workflow to invoke. Select from the list of published API workflows in your organization. |
| 入力 | いいえ | Key-value pairs mapped to the API workflow's input parameters. Supports variable references. |
| Timeout | いいえ | Maximum time to wait for the workflow to complete. |
Output variables
| 変数 | 説明 |
|---|---|
output | The response returned by the API workflow, according to its output schema. |
error | Error details when the call fails. Use it with error handling to branch on failures. |
例
Reference the API workflow's output downstream with an expression:
$vars.apiWorkflow1.output
$vars.apiWorkflow1.output
To use a single field from the output, append the field name defined by the API workflow's output schema — for example, $vars.apiWorkflow1.output.<field>.
一般的な問題
| 問題 | 解決方法 |
|---|---|
| API workflow not listed in the dropdown | Ensure the workflow is published in Studio Web and you have permission to invoke it. |
| Timeout error | Increase the Timeout value or optimize the Studio Web workflow for faster execution. |
| Input type mismatch | Check that the variable types you are passing match the API workflow's declared input parameter types. |