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