Retrieves all the jobs executions

GET {{baseUrl}}/jobs?pageNumber=<integer>&pageSize=<integer>&filter=<string>

Retrieves all the job executions within a tenant, sorted by creationDate descendant order, up to 10.000 items, paged, maximum 100 items per request if no paging parameters are specified. The service purges all jobs older than 90 days that have one of the final statuses (e.g. STOPPED, FAILED, SUCCEEDED).

Request Params

KeyDatatypeRequiredDescription
pageNumberstringSpecifies the requested page index
pageSizestringSpecifies the number of elements in a page
filterstringComplex and flexible filter that can filter by modelId, message, status and creationDate. <br /> All the top fields used in the filter are ANDed, but the searched values can use AND and OR operands, including comparison operators where the values allow. All fields are optional.<br /> The expected format follows:<br /> ?filter={
"message": {
&quot;contains&quot;: &quot;Error&quot;

}, "status": { "or": { {"eq" : "STOPPED"}, {"eq" : "FAILED"} } }, "creationDate": { {"after": "2018-06-23T20:09:00"} } } |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;jobs&quot;:[{&quot;id&quot;:&quot;545cc745-a8e7-6b26-6541-aa690dbf2efa&quot;,&quot;modelId&quot;:&quot;951b3240-7857-11e8-adc0-fa7ae01bbebc&quot;,&quot;configurationId&quot;:&quot;ce30e624-4468-4185-8433-f183b419b0ec&quot;,&quot;environmentId&quot;:&quot;urn:uuid:5af0de1e-6488-c278-3149-8ec063511561&quot;,&quot;maxExecutionTime&quot;:3600,&quot;message&quot;:&quot;Job failed due to lack of input data&quot;,&quot;status&quot;:&quot;SUCCEEDED&quot;,&quot;creationDate&quot;:&quot;2017-10-01T12:00:00.001Z&quot;,&quot;createdBy&quot;:&quot;jobmgr&quot;,&quot;inputFolderId&quot;:&quot;17f9d94e-8417-11e8-adc0-fa7ae01bbebc&quot;,&quot;outputFolderId&quot;:&quot;0cf21f02-8417-11e8-adc0-fa7ae01bbebc&quot;},{&quot;id&quot;:&quot;ac96cf37-b6f3-b46e-c499-f4ddf9d757c7&quot;,&quot;modelId&quot;:&quot;951b3240-7857-11e8-adc0-fa7ae01bbebc&quot;,&quot;configurationId&quot;:&quot;ce30e624-4468-4185-8433-f183b419b0ec&quot;,&quot;environmentId&quot;:&quot;f8203c16-7b3f-567a-e789-2b752f64e866&quot;,&quot;maxExecutionTime&quot;:3600,&quot;message&quot;:&quot;Job failed due to lack of input data&quot;,&quot;status&quot;:&quot;RUNNING&quot;,&quot;creationDate&quot;:&quot;2017-10-01T12:00:00.001Z&quot;,&quot;createdBy&quot;:&quot;jobmgr&quot;,&quot;inputFolderId&quot;:&quot;17f9d94e-8417-11e8-adc0-fa7ae01bbebc&quot;,&quot;outputFolderId&quot;:&quot;0cf21f02-8417-11e8-adc0-fa7ae01bbebc&quot;}],&quot;page&quot;:{&quot;number&quot;:20038418,&quot;size&quot;:-51040239,&quot;totalPages&quot;:58166927,&quot;totalElements&quot;:40173056}}