Skip to main content

Task Catalogs requests

Retrieve Task catalogs in a folder

This request enables you to retrieve all the task catalogs in the classic folders that the user has access to.

GET

{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/TaskCatalogs?$top=3

Request headers

KeyValue
AuthorizationBearer

Response code

200 OK

Response body

{
"@odata.context": "{AutomationCloudURL}/{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
}
]
}

Retrieve Task Catalog details

This request enables you to retrieve task catalog details according to the TaskCatalogId. The TaskCatalogId must be included in the request.

GET

{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/TaskCatalogs(7)

Request headers

KeyValue
AuthorizationBearer

Response code

200 OK

Response body

{
"@odata.context": "{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_/odata/$metadata#TaskCatalogs/$entity",
"Name": "Orchestrator Catalog",
"Description": "da",
"LastModificationTime": "2020-02-05T13:31:09.45Z",
"Id": 7
}

Update Task Catalog

This request enables you to modify task catalog details based on the TaskCatalogId. The TaskCatalogId must be included in the request.

GET

{AutomationCloudURL}/{organizationName}/{tenantName}/orchestrator_

/odata/TaskCatalogs(7)/UiPath.Server.Configuration.OData.UpdateTaskCatalog

Request headers

KeyValue
AuthorizationBearer

Request body

{
"Name": "Expense reports",
"Description": "Expense reports generation"
}

Response code

200 OK