Get jobs list from Workflow using RestAPI

Hello!

I have question, but am not sure if i understand Connect RestAPI properly. Am I able to somehow get job list from workflow that i currently running using RestAPI calls?

I want to write web application (some kind of dashboard) that will do some stuff like: run job, display current status, statistics with time, dates, maby some charts with processed jobs. I know that i can communicate with workflow using HTTP Server Input, but i am wondering that new feature Rest API that is provided enable that kind of staff such as get information about current jobs. If it is possible how can i get that?

I was already trying to call some requests that are given in planetpress-connect-rest-api-cookbook.pdf file, such as:

http://localhost:9340/rest/serverengine/entity/jobs

or

http://localhost:9340/rest/serverengine/entity/jobsets

And i get response but there is no data insideā€¦

I am new in that stuff, so forgive me if I am missing something obvious.

Well that call will only return items that have gone through the Job Creation operation, which is usually performed right before the Output operation. Perhaps what you actually want is the list of Content Sets (i.e. items that have been merged with the data but that have not yet been prepared for Output). Check out the corresponding REST calls in the API:

[/rest/serverengine/entity/contentsets](http://localhost:9340/rest/serverengine/entity/contentsets)