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.
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:
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:
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.