ID and process name from Orchestrator

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:

  1. Deserialize JSON → Deserialize JSON
  2. Loop through → For Each
  3. Extract values:

item(“Id”).ToStringitem(“Key”).ToString

@okalinic

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.