Get output parameter values through Orchestrator APi services

Hi,
I am able to pass input arguments through API to the bot start the job through odata/Jobs/UiPath.Server.Configuration.OData.StartJobs

Can anyone please help on what API to be used to capture the output arguments upon the bot execution.

You should be able to do a GET request to the jobs input (filter by id or job key) to retrieve the information for a specific job. There will be an OutputArguments value in the json.

Check out the api docs for some examples. They don’t have your specific request but they should have enough examples for you to do what you want.

Can you please let me know the api url name to do this?

https://platform.uipath.com/odata/Jobs
Check the URL I linked above for example that include filtering by id/date/etc…

Thank you @DanielMitchell
I would give a try and let you know

1 Like

Thanks again @DanielMitchell
It worked.

1 Like

Hi,

I am also facing the same situation.
Able to trigger job with Input parameters but not able to send out Out_Parameter, in the response. Always getting Output Arguments as null.

Can you please suggest.

Hi,

StartJob is a post request right, so I don’t think it returns output.
And Outputs args are returned right after the api gets called, and doesn’t wait for job to complete.
Hence the outputs are null.

As a beginner myself in UiPath I am not sure about it.

1 Like

Hi All, I Am working job with RE framework, my input arguments will pick from the queue, I will get the output argument one variable. How can I pass the input argument in power automate and get the output argument from a particular job. Please note I’ve practiced without Refreamwork it’s working fine, reference I took this video. (https://www.youtube.com/watch?v=2ud8K2a4fq8) Now,I wanted to know how we can do the same with Refreamwork please advise…

Please check the below post with the explanation