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

Orchestrator API Guide
最終更新日時 2024年11月20日
This request enables you to retrieve all the task catalogs in the classic folders that the user has access to.
GET
https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/TaskCatalogs?$top=3
Request headers
Key |
Value |
---|---|
Authorization |
Bearer |
Response code
200 OK
Response body
{
"@odata.context": "https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#TaskCatalogs",
"@odata.count": 3,
"value": [
{
"Name": "Greatness",
"Description": null,
"LastModificationTime": "2019-10-30T16:45:57.533Z",
"Id": 7
},
{
"Name": "Orchestrator",
"Description": "Mother",
"LastModificationTime": "2019-10-30T16:57:44.1Z",
"Id": 12
},
{
"Name": "Credentials",
"Description": null,
"LastModificationTime": null,
"Id": 20
}
]
}
{
"@odata.context": "https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#TaskCatalogs",
"@odata.count": 3,
"value": [
{
"Name": "Greatness",
"Description": null,
"LastModificationTime": "2019-10-30T16:45:57.533Z",
"Id": 7
},
{
"Name": "Orchestrator",
"Description": "Mother",
"LastModificationTime": "2019-10-30T16:57:44.1Z",
"Id": 12
},
{
"Name": "Credentials",
"Description": null,
"LastModificationTime": null,
"Id": 20
}
]
}
This request enables you to retrieve task catalog details according to the
TaskCatalogId
. The TaskCatalogId
must be included in the request.
GET
https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/TaskCatalogs(7)
Request headers
Key |
Value |
---|---|
Authorization |
Bearer |
Response code
200 OK
Response body
{
"@odata.context": "https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#TaskCatalogs/$entity",
"Name": "Orchestrator Catalog",
"Description": "da",
"LastModificationTime": "2020-02-05T13:31:09.45Z",
"Id": 7
}
{
"@odata.context": "https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#TaskCatalogs/$entity",
"Name": "Orchestrator Catalog",
"Description": "da",
"LastModificationTime": "2020-02-05T13:31:09.45Z",
"Id": 7
}
This request enables you to modify task catalog details based on the
TaskCatalogId
. The TaskCatalogId
must be included in the request.
GET
https://govcloud.uipath.us/{organizationName}/{tenantName}/orchestrator_/odata/TaskCatalogs(7)/UiPath.Server.Configuration.OData.UpdateTaskCatalog
Request headers
Key |
Value |
---|---|
Authorization |
Bearer |
Request body
{
"Name": "Expense reports",
"Description": "Expense reports generation"
}
{
"Name": "Expense reports",
"Description": "Expense reports generation"
}
Response code
200 OK