orchestrator
latest
false
流程数据保留策略请求
Orchestrator API 指南
流程数据保留策略请求
通过使用以下对
/odata/ReleaseRetention({key})
端点的 DELETE 请求,您可以将指定流程的现有保留策略重置为默认的内置策略。
注意:通过为具有默认迁移策略(即 120 天后删除)的流程调用 DELETE 端点,它会将策略替换为“30 天后删除”的内置保留策略。
删除
https://govcloud.uipath.us/{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}' \
假设您收集了构建 API 调用所需的所有信息。
{key}
为:6789
。这是要将特定保留策略重置为默认值的流程 ID。-
curl --location --request DELETE 'https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/ReleaseRetention(6789)' \ --header 'Authorization: Bearer 1234' \ --header 'Content-Type: application/json' \ --header 'X-UIPATH-OrganizationUnitId: 202020'
curl --location --request DELETE 'https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/ReleaseRetention(6789)' \ --header 'Authorization: Bearer 1234' \ --header 'Content-Type: application/json' \ --header 'X-UIPATH-OrganizationUnitId: 202020'成功的调用(响应代码 204)会将自定义策略重置为默认策略。
在 Orchestrator 用户界面中,更改也会显示在相应流程“更新”功能操作的审核详细信息中。