Page 1 of 1

How to get job status/result from SOURCE via REST API

Posted: Mon Apr 08, 2024 1:05 pm
by veks
Hi,
I need to make a REST API call using SOURCE file name, but I can't find that option. Only by job-id.
Also, is it possible to get via REST API a time and percentage of when will some job-id or source/filename be finished?
Any way to do it?
Thanks!

Re: How to get job status/result from SOURCE via REST API

Posted: Tue Apr 09, 2024 12:43 pm
by emcodem
Hi veks,

no you need a jobid to ask job status because source file name and similar is not something "unique".
What you can do is to get a list of running jobs:
http://localhost:65445/api/v2/jobs/

...and of course filter the stuff in your code by the condition of your choice.
Let me know if you need help with that.