I used to have a Orchestrator installed in a sever with a local database. With this configuration I was able to query the database to retrieve information and more easily monitor the process, robots and their logs. For example, I was using the following query to retrieve logs from the Robots:
SELECT
[Id] ,
[TimeStamp] ,
[RobotName] ,
[Message]
FROM
[RPAPROD].[dbo].[Logs]
where
TimeStamp > CURRENT_TIMESTAMP-1
Order by
TimeStamp desc
I understand that I can do API calls, but I can not figure out how to retrieve specific data (like the robot logs or the queues status)
For example, I tried the following query to get license information
https://cloud.uipath.com/[Account Logical Name]/[Tenant Name]/odata/Settings/UiPath.Server.Configuration.OData.GetLicense
Where can I find what type of calls to do in the API to retrieve the information I need?