I have a web service that takes data from an Website form filled out by a client. When they click, the web service starts and retrieves data that is already filled out. I want this web service to trigger a UiPath robot. How can I do that?
We can start Jobs by using the Orchestrator Rest API
It can be explored by using swagger for the first RnDs
https://docs.uipath.com/orchestrator/automation-suite/2023.4/api-guide/api-references
Endpoint: /odata/Jobs/UiPath.Server.Configuration.OData.StartJobs
Example: Start Job
2 Likes
It would be simpler to have the web form create a queue item in a queue, then have a queue trigger start the job.
1 Like
can you expalin more ?
Iām not sure how I could make it more simple. When the user submits the form the form uses the Orchestrator API to create an item in a queue. A queue trigger then starts the job.