This triggers a command to my UIPath Assistant which then runs the Job successfully. I am unable to find the right endpoint in swagger documentation of processes where I could trigger this job/process from an API call:
Additionally from uiPath postman docs I found to trigger a UIPath Job the body should be something like this:
For obtaining bearer token triggering the following endpoint:
Uri = https://cloud.uipath.com/identity_/connect/token
// with the following body:
{ grant_type: 'client_credentials',
client_id: 'f14b5289-c60f-494c-8399-fe204b87058c',
client_secret: 'iqmk99~~iqLQuEWh',
scope: 'OR.Tasks OR.BackgroundTasks OR.Execution OR.Jobs OR.Queues' }
Hi @spidey ,
To communicate via API, you must know the methods in:
Then if you want to open the swagger, access the link below changing “yourOrgId” and “tenantId” for yours. https://cloud.uipath.com/{yourOrgId}/{tenantId}/orchestrator_/swagger/index.html
In this solution, I don’t see any Job Id which can be supplied. Additionally this acts upon an authentication layer which is also something I am not getting correctly.