orchestrator
latest
false
管理 API 触发器
Orchestrator 用户指南
管理 API 触发器
重要提示:
-
租户级别的执行设置适用于 API 触发器。
-
每个租户最多可以创建 1.000 个 API 触发器。
API 触发器页面允许您执行每个触发器的上下文菜单中的多个操作:
复制要在第三方应用程序中使用的 URL。
对于具有
hw-process
缩略名的 API 触发器,URL 将如下所示:https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process
以合适的格式复制缩略名,以便在命令行或现有代码中使用。可用选项包括:
复制为 curl (bash) - 对于具有
hw-process
缩略名的 API 触发器,该触发器将如下所示:
curl '{baseURL_orchestrator}/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process' -X 'POST' -H 'Content-Type: application/json' -H 'Authorization: Bearer ***INSERT_YOUR_TOKEN***'
curl '{baseURL_orchestrator}/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process' -X 'POST' -H 'Content-Type: application/json' -H 'Authorization: Bearer ***INSERT_YOUR_TOKEN***'
hw-process
缩略名的 API 触发器,该触发器将如下所示:
curl "https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process" ^ -X "POST" ^ -H "Content-Type: application/json" ^ -H "Authorization: Bearer ***INSERT_YOUR_TOKEN***"
curl "https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process" ^ -X "POST" ^ -H "Content-Type: application/json" ^ -H "Authorization: Bearer ***INSERT_YOUR_TOKEN***"
hw-process
缩略名的 API 触发器,该触发器将如下所示:
fetch("https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process", { headers: { Authorization: "Bearer ***INSERT_YOUR_TOKEN***", "Content-Type": "application/json" }, "method": "POST" })
fetch("https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process", { headers: { Authorization: "Bearer ***INSERT_YOUR_TOKEN***", "Content-Type": "application/json" }, "method": "POST" })
hw-process
缩略名的 API 触发器,该触发器将如下所示:
$headers = @{ "method"="POST" "Authorization" = "Bearer ***INSERT_YOUR_TOKEN***" } Invoke-WebRequest -UseBasicParsing -Uri "https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process" ` -Headers $headers ` -ContentType "application/json"
$headers = @{ "method"="POST" "Authorization" = "Bearer ***INSERT_YOUR_TOKEN***" } Invoke-WebRequest -UseBasicParsing -Uri "https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/t/6ea73196-ca89-446c-81e1-5279bdd36dc2/hw-process" ` -Headers $headers ` -ContentType "application/json"
您可以使用租户设置的“常规”选项卡上的“API 触发器的 CORS 允许列表”选项,将域添加到传入流量的允许列表。
对于从浏览器(即不是从服务器)向 Orchestrator 发出 HTTP 请求的浏览器应用程序来说,这是必要项。未能将域列入白名单可能会导致 CORS 策略错误,您可以在开发者控制台中看到该错误。
如果要将更多域列入允许列表,请使用逗号或按 Enter 键将它们分开。