Hello.
Does anyone know how can I get ID and process name from Orchestrator?
Is there any known action for that?
Hi @okalinic
Use Orchestrator HTTP Request activity:
Method: GET
Endpoint:
/odata/Processes
This will return all processes with details like:
Id
Key (Process Name)
Description
Then:
- Deserialize JSON → Deserialize JSON
- Loop through → For Each
- Extract values:
item(“Id”).ToStringitem(“Key”).ToString
Check the below thread
Of which process? The currently running one?
If so there are ways of doing that with custom activities. UiPath also improved their own activity which gets job details but I cant remember if that has these yet as I use my own with more information.
Yes, the currently running one…
This should cover what you need then I think.