Is it possible to know which user triggered/started the job from Orchestrator?

Is it possible to get information about the user who started a process, or who scheduled a process from orchestrator using Orchestrator API? To make it simple, how can I get information about the user who started or scheduled a job from Orchestrator in a report(notepad)?

unfortunately No. There is no API exposed to pull the audit logs but you can get only below infor using get job api.

{
  "@odata.context": "https://platform.uipath.com/odata/$metadata#Jobs",
  "@odata.count": 1,
  "value": [
    {
      "Key": "f53ea0ce-cd5a-4335-8bcd-b7b3d81c911f",
      "StartTime": "2018-01-03T16:20:00.76Z",
      "EndTime": "2018-01-03T16:20:05.54Z",
      "State": "Successful",
      "Source": "Manual",
      "SourceType": "Manual",
      "BatchExecutionKey": "090770c3-0e54-4b14-921d-0e2f1892876e",
      "Info": "Job completed",
      "CreationTime": "2018-01-03T16:19:58.747Z",
      "StartingScheduleId": null,
      "ReleaseName": "Process1_playground",
      "Type": "Unattended",
      "Id": 377921
    }
  ]
}
1 Like

@rrkadari thank you for the reply. :slight_smile:
I got what I wanted. I could pull the audit logs using Orchestrator API. :slight_smile:
Here is the link: Swagger UI

1 Like

Thanks for the link, it is useful :slight_smile:

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