How do i get all jobs with a specific name from orchestrator in studio without api

I’m trying to get all jobs from orchestrator that has a specific name ex. excel_data_to_datatable process
I need the job name and the status
The project is to get an overview of a specific process how many times it has failed of run successful

Hi @Nathaniel_Martina1 ,

Please check get job activity. It might help you.

https://docs.uipath.com/activities/other/latest/user-guide/get-jobs

Use the Orchestrator HTTP Request activity to make a GET request to the Orchestrator API for jobs.

You will need to provide the API endpoint, which will be in the format https://<orchestrator_url>/odata/Jobs?$filter=contains(ProcessName,‘<process_name>’)&$orderby=StartTime desc&$top=<number_of_jobs_to_retrieve>`