orchestrator
latest
false
- 基本情報
- Swagger の定義
- Orchestrator API
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

Orchestrator API ガイド
最終更新日時 2026年4月16日
プロセスのデータ保持ポリシーの要求
指定したプロセスの保持ポリシーを削除する
/odata/ReleaseRetention({key}) エンドポイントに次の DELETE 要求を使用すると、指定したプロセスの既存の保持ポリシーを既定の組み込みポリシーにリセットできます。
注:
By calling the DELETE endpoint for processes that have the default migration policy in place (that is, 120 days + deletion), it replaces it with the built-in retention policy of 30 days +deletion.
API エンドポイント
DELETE {AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/ReleaseRetention({key})
要求ヘッダー
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json' \
--header 'X-UIPATH-OrganizationUnitId: {the_ID_of_the_folder_that_contains_the_process}' \
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json' \
--header 'X-UIPATH-OrganizationUnitId: {the_ID_of_the_folder_that_contains_the_process}' \
パス パラメーター
| パラメーター | データ型 | 説明 |
|---|---|---|
key (必須) | Int64 | 保持ポリシーを既定にリセットするプロセスの ID です。 |
応答
204 Success
指定したプロセス ポリシーを、既定のポリシー (30 日間の保持 + 削除) にリセットします。
要求の例
API 呼び出しの構築に必要な情報をすべて収集したとします。
{key}6789です。これは、特定の保持ポリシーを既定にリセットするプロセスの ID です。- The
X-UIPATH-OrganizationUnitIdrequest header value is202020. This is the ID of the folder that contains the process for which you want to reset the custom retention policy to default. Learn how to identify the folder ID.curl --location --request DELETE '{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/ReleaseRetention(6789)' \ --header 'Authorization: Bearer 1234' \ --header 'Content-Type: application/json' \ --header 'X-UIPATH-OrganizationUnitId: 202020'curl --location --request DELETE '{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/ReleaseRetention(6789)' \ --header 'Authorization: Bearer 1234' \ --header 'Content-Type: application/json' \ --header 'X-UIPATH-OrganizationUnitId: 202020'
呼び出しが成功すると (応答コード 204)、カスタム ポリシーは既定のポリシーにリセットされます。
In the Orchestrator UI, the change is also visible in the Audit details of the corresponding process Update feature action.