Hi @Hari
You can get the dependency versions of all processes at the platform level using the Orchestrator API.
Process and Package API: You can use the Orchestrator API to get package and dependency information for each process.
/odata/Releases Endpoint: This endpoint returns a list of process releases, which includes the name and version of the packages used. From here, you can list all processes and the package versions associated with each one.
Specific Package Dependencies: If you need details of the dependencies of each package, you can get this information by querying the /odata/Packages endpoint with the package name. It returns the exact dependencies and their versions.
Query Automation: To optimize, you can develop an automation with UiPath, using activities such as HTTP Request for API calls and storing the information in a table or Excel.
This avoids manual verification and centralizes the information.