UiPath Documentation
orchestrator
2.2510
true

Orchestrator API ガイド

最終更新日時 2026年5月5日

プロセスの要求

名前に基づいてプロセスを取得する

GET

https://{yourDomain}/{organizationName}/{tenantName}/orchestrator_/odata/Releases?$filter=%20Name%20eq%20'all_activities_DocEnv'

要求ヘッダー

キー値 (Value)
認可Bearer

応答コード

200 OK

応答本文

{
  "@odata.context": "https://{yourDomain}/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#Releases",
  "@odata.count": 1,
  "value": [
    {
      "Key": "01b7cf62-98e0-4a69-9a65-be7514643229",
      "ProcessKey": "all_activities",
      "ProcessVersion": "1.0.6666.26728",
      "IsLatestVersion": false,
      "IsProcessDeleted": false,
      "Description": null,
      "Name": "all_activities_DocEnv",
      "EnvironmentId": 7,
      "EnvironmentName": "DocEnv",
      "InputArguments": null,
      "Id": 6,
      "Arguments": null
    }
  ]
}
{
  "@odata.context": "https://{yourDomain}/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#Releases",
  "@odata.count": 1,
  "value": [
    {
      "Key": "01b7cf62-98e0-4a69-9a65-be7514643229",
      "ProcessKey": "all_activities",
      "ProcessVersion": "1.0.6666.26728",
      "IsLatestVersion": false,
      "IsProcessDeleted": false,
      "Description": null,
      "Name": "all_activities_DocEnv",
      "EnvironmentId": 7,
      "EnvironmentName": "DocEnv",
      "InputArguments": null,
      "Id": 6,
      "Arguments": null
    }
  ]
}

特定のプロセスの入力パラメーターの値を変更する

/odata/Releases(Id) エンドポイントに対する次の PATCH 要求を使用すると、プロセス レベルで特定の入力パラメーターの値を追加または変更できます。ジョブの開始時にこれらの値を追加する場合は、「 ジョブの要求」トピックをご覧ください。

注:

Please note that a maximum of 10,000 characters is accepted for the entire length of the JSON representation of input parameters, including argument names, all the escaped characters, spaces, brackets, and arguments values.

PATCH

https://{yourDomain}/{organizationName}/{tenantName}/orchestrator_/odata/Releases(55)

要求ヘッダー

キー値 (Value)
認可Bearer

要求本文

{
  "Arguments": {
    "Input": "{\"age\":27,\"trueOrFalse\":false,\"stringNew\":\"testing\"}"
  }
}
{
  "Arguments": {
    "Input": "{\"age\":27,\"trueOrFalse\":false,\"stringNew\":\"testing\"}"
  }
}

応答コード

200 OK

このページは役に立ちましたか?

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得