Orchestrator API - Get processes in a specific folder

Hello,

I am trying to use the Orchestrator api to get processes in a specific folder. I am trying to use the ​/odata​/Processes command and filter on specific folder. But with no success. I only get the tenant feed packages. Does anyone have any suggestion how to get processes instead of the packages and a specific folder.

Best Regards,

Marcus

1 Like

hi @Ninjabullen,

To retrieve processes from a specific folder using the Orchestrator API, you can use the following endpoint:

https://<orchestrator_url>/odata/Processes?$filter=Folder eq '<folder_path>'

Here, replace <orchestrator_url> with the URL of your Orchestrator instance and <folder_path> with the path of the folder you want to retrieve processes from.

For example, if you want to retrieve processes from a folder named “MyFolder” at the root level of your Orchestrator instance, you can use the following endpoint:

https://<orchestrator_url>/odata/Processes?$filter=Folder eq 'MyFolder'

If the folder you want to retrieve processes from is nested inside another folder, you can specify the full path of the folder using the following format:

<parent_folder_path>/<child_folder_path>

For example, if you want to retrieve processes from a folder named “ChildFolder” that is nested inside a folder named “ParentFolder”, you can use the following endpoint:

https://<orchestrator_url>/odata/Processes?$filter=Folder eq 'ParentFolder/ChildFolder'

Note that the Folder property of the processes in Orchestrator API is case-sensitive, so make sure to use the exact case of the folder name when filtering.

2 Likes

Thank you very much. :+1:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.